qibolab
qibolab copied to clipboard
Quantum hardware module and drivers for Qibo.
Emulator
Checklist: - [ ] Reviewers confirm new code works as expected. - [ ] Tests are passing. - [ ] Coverage does not decrease. - [ ] Documentation is updated....
To speed up the execution of independent experiments, the qubits could be reset to the ground state without waiting this to happen naturally after the relaxation time (which is an...
_Originally posted by @alecandido in https://github.com/qiboteam/qibolab/pull/896#pullrequestreview-2045976529_
Required by https://github.com/qiboteam/qibocal/pull/832 This PR "corrects" the `average` property of `AveragedIntegratedResults` by returning the object itself without performing the average again. I've also added the property `phase_std` which is useful...
It would be useful for calibration purposes to perform the unwrapping of the phase. I remember that we talked about this already some time ago. If you agree I believe...
@stavros11 @alecandido This contains the concepts that I showed during the meeting earlier this week. According to my estimation this does not require too much changes in the drivers, since...
Use more extensively Pydantic in to (de)serialize the runcard content. The overall goal is to replace most of `serialize.py` to use just Pydantic, without manual rules for parsing (i.e. delegate...
`Coupler` is already a subset of `Qubit`, with exactly the same required attributes (i.e. the `name`). Since `Qubit` is being simplified in #885, and it will be even further, they...
My current intention was to start from the `Pulse`s, and propagate Pydantic to the other classes involved in `serialize.py`, to eventually drop the custom functions, manipulating the various objects. While...