Skip to content

Commit

Permalink
Release 0.22.0 (#630)
Browse files Browse the repository at this point in the history
* new release

* version for new releases

* updating config
  • Loading branch information
jjmartinezQT authored Nov 27, 2023
1 parent 45cf5bb commit 7e00be6
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 63 deletions.
74 changes: 74 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,79 @@
# CHANGELOG

## 0.22.0 (2023-11-27)

### New features since last release

- Added real time results saving capability.
[#598](https://github.com/qilimanjaro-tech/qililab/pull/598)

- Raise an error if a user requests to run a circuit that is longer than `repetition_duration`
[#621](https://github.com/qilimanjaro-tech/qililab/pull/621)

- Add parameter to the SLURM magic method to configure the time limit of a job.
[#608](https://github.com/qilimanjaro-tech/qililab/pull/608)

- Add magic method to run python code as slurm jobs from Jupyter Notebooks.
[#600](https://github.com/qilimanjaro-tech/qililab/pull/600)

- Implemented `QuantumMachinesCompiler` class to compile QPrograms to QUA programs.
[#563](https://github.com/qilimanjaro-tech/qililab/pull/563)

- Implemented `platform.execute_qprogram()` method to execute a qprogram on Qblox hardware.
[#563](https://github.com/qilimanjaro-tech/qililab/pull/563)

- Added the two main classes need for automatic-calibration, `CalibrationController` and `CalibrationNode`
[#554](https://github.com/qilimanjaro-tech/qililab/pull/554)

- Added the driver for Quantum Machines Manager and a new QuantumMachinesResult class to handle Quantum Machines instruments.
[#568](https://github.com/qilimanjaro-tech/qililab/pull/568)

- Implemented the `QuantumMachinesMeasurementResult` class to store data acquired from a single instrument.
[#596](https://github.com/qilimanjaro-tech/qililab/pull/596)

### Improvements

- Improved the UX for circuit transpilation by unifying the native gate and pulse transpiler under one `CircuitTranspiler` class, which has 3 methods:

- `circuit_to_native`: transpiles a qibo circuit to native gates (Drag, CZ, Wait, M) and optionally RZ if optimize=False (optimize=True by default)
- `circuit_to_pulses`: transpiles a native gate circuit to a `PulseSchedule`
- `transpile_circuit`: runs both of the methods above sequentially
`Wait` gate moved from the `utils` module to `circuit_transpilation_native_gates`
[#575](https://github.com/qilimanjaro-tech/qililab/pull/575)

- Added `infinite_loop()` method to QProgram.
[#563](https://github.com/qilimanjaro-tech/qililab/pull/563)

- Added `measure()` method to QProgram.
[#563](https://github.com/qilimanjaro-tech/qililab/pull/563)

- Various improvements in the compilation flow of `QbloxCompiler`.
[#563](https://github.com/qilimanjaro-tech/qililab/pull/563)

- Updated `qm-qua` library to latest `1.1.5.1`.
[#596](https://github.com/qilimanjaro-tech/qililab/pull/596)

### Breaking changes

- Changed `resolution` parameter of waveforms' `envelope()` method to integer.
[#563](https://github.com/qilimanjaro-tech/qililab/pull/563)

- Changed the way variables work within a QProgram. Variables are now instantiated based on the physical domain they affect.
[#563](https://github.com/qilimanjaro-tech/qililab/pull/563)

### Deprecations / Removals

- Removed the park gate since it is no longer needed
[#575](https://github.com/qilimanjaro-tech/qililab/pull/575)

### Bug fixes

- Fixed [bug #626](https://github.com/qilimanjaro-tech/qililab/issues/626), where a regression bug was introduced by adding empty schedules to all flux buses, not only the ones with an AWG registered instrument, as it was intended originally.
[#628](https://github.com/qilimanjaro-tech/qililab/pull/628)

- Fixed [bug #579](https://github.com/qilimanjaro-tech/qililab/issues/579), were now all `yaml.dumps` are done with [ruamel](https://yaml.readthedocs.io/en/latest/#changelog), for not losing decimals precisons, and also following the previous bug due to the elimination of `ruamel.yaml.round_trip_dump`, the version of ruamel in qililab got fixed, and imports where rewritten for more clarity
[#577](https://github.com/qilimanjaro-tech/qililab/pull/578)

## 0.21.1 (2023-10-31)

### New features since last release
Expand Down
62 changes: 0 additions & 62 deletions docs/releases/changelog-dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,74 +2,12 @@

### New features since last release

- Added real time results saving capability.
[#598](https://github.com/qilimanjaro-tech/qililab/pull/598)

- Raise an error if a user requests to run a circuit that is longer than `repetition_duration`
[#621](https://github.com/qilimanjaro-tech/qililab/pull/621)

- Add parameter to the SLURM magic method to configure the time limit of a job.
[#608](https://github.com/qilimanjaro-tech/qililab/pull/608)

- Add magic method to run python code as slurm jobs from Jupyter Notebooks.
[#600](https://github.com/qilimanjaro-tech/qililab/pull/600)

- Implemented `QuantumMachinesCompiler` class to compile QPrograms to QUA programs.
[#563](https://github.com/qilimanjaro-tech/qililab/pull/563)

- Implemented `platform.execute_qprogram()` method to execute a qprogram on Qblox hardware.
[#563](https://github.com/qilimanjaro-tech/qililab/pull/563)

- Added the two main classes need for automatic-calibration, `CalibrationController` and `CalibrationNode`
[#554](https://github.com/qilimanjaro-tech/qililab/pull/554)

- Added the driver for Quantum Machines Manager and a new QuantumMachinesResult class to handle Quantum Machines instruments.
[#568](https://github.com/qilimanjaro-tech/qililab/pull/568)

- Implemented the `QuantumMachinesMeasurementResult` class to store data acquired from a single instrument.
[#596](https://github.com/qilimanjaro-tech/qililab/pull/596)

### Improvements

- Improved the UX for circuit transpilation by unifying the native gate and pulse transpiler under one `CircuitTranspiler` class, which has 3 methods:

- `circuit_to_native`: transpiles a qibo circuit to native gates (Drag, CZ, Wait, M) and optionally RZ if optimize=False (optimize=True by default)
- `circuit_to_pulses`: transpiles a native gate circuit to a `PulseSchedule`
- `transpile_circuit`: runs both of the methods above sequentially
`Wait` gate moved from the `utils` module to `circuit_transpilation_native_gates`
[#575](https://github.com/qilimanjaro-tech/qililab/pull/575)

- Added `infinite_loop()` method to QProgram.
[#563](https://github.com/qilimanjaro-tech/qililab/pull/563)

- Added `measure()` method to QProgram.
[#563](https://github.com/qilimanjaro-tech/qililab/pull/563)

- Various improvements in the compilation flow of `QbloxCompiler`.
[#563](https://github.com/qilimanjaro-tech/qililab/pull/563)

- Updated `qm-qua` library to latest `1.1.5.1`.
[#596](https://github.com/qilimanjaro-tech/qililab/pull/596)

### Breaking changes

- Changed `resolution` parameter of waveforms' `envelope()` method to integer.
[#563](https://github.com/qilimanjaro-tech/qililab/pull/563)

- Changed the way variables work within a QProgram. Variables are now instantiated based on the physical domain they affect.
[#563](https://github.com/qilimanjaro-tech/qililab/pull/563)

### Deprecations / Removals

- Removed the park gate since it is no longer needed
[#575](https://github.com/qilimanjaro-tech/qililab/pull/575)

### Documentation

### Bug fixes

- Fixed [bug #626](https://github.com/qilimanjaro-tech/qililab/issues/626), where a regression bug was introduced by adding empty schedules to all flux buses, not only the ones with an AWG registered instrument, as it was intended originally.
[#628](https://github.com/qilimanjaro-tech/qililab/pull/628)

- Fixed [bug #579](https://github.com/qilimanjaro-tech/qililab/issues/579), were now all `yaml.dumps` are done with [ruamel](https://yaml.readthedocs.io/en/latest/#changelog), for not losing decimals precisons, and also following the previous bug due to the elimination of `ruamel.yaml.round_trip_dump`, the version of ruamel in qililab got fixed, and imports where rewritten for more clarity
[#577](https://github.com/qilimanjaro-tech/qililab/pull/578)
2 changes: 1 addition & 1 deletion src/qililab/config/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# limitations under the License.

"""Version number (major.minor.patch[-label])"""
__version__ = "0.21.1"
__version__ = "0.22.0"

0 comments on commit 7e00be6

Please sign in to comment.