QProgram Qblox
Qblox extensions for QProgram, a Python DSL for pulse-level quantum experiments.
The core DSL knows nothing about any instrument. This package teaches it about the Qblox cluster.
It adds six operations that the portable language does not cover, a capability profile that says
what QCM and QRM sequencers accept, and .qp serialization for everything it adds. Importing the
package is the whole activation step.
Installation
pip install qprogram-qblox
The core qprogram package installs with it.
A first program
Calibrate the acquisition rotation angle of a readout bus: sweep the angle, discriminate the qubit state at each point, and average the outcome.
import math
import qprogram as qp
from qprogram.buses import BusSchema
from qprogram.waveforms import IQDrag, IQPair, Square
from qprogram_qblox import QProgram # qprogram.QProgram with a typed .qblox namespace
schema = BusSchema.transmon()
q = schema.q
program = QProgram(label="rotation_calibration", schema=schema)
angle = program.variable("angle", units="rad")
with program.average(shots=1000):
with program.sweep(angle).from_linspace(0.0, math.pi, 21):
program.qblox.set_acquisition_rotation(q[0].readout, angle)
program.play(q[0].drive, "pi_pulse")
program.sync()
m0 = program.qblox.acquire(q[0].readout, "weights", fields=(qp.MeasurementField.STATE,))
# Bind calibrated waveforms at the very end; the program itself only names them.
resolved = program.with_waveforms(
{
"pi_pulse": IQDrag(amplitude=0.5, duration=40, sigma=8, beta=0.1),
"weights": IQPair(Square(1.0, 2000), Square(1.0, 2000)),
}
)
result = qp.simulate(resolved)
population = result.get(m0, field=qp.MeasurementField.STATE)
print(population.dims, population.shape) # ('angle',) (21,)
qp.simulate is the reference software executor that ships with the core package. It runs the
qblox operations generically: qblox.acquire produces measurement records, the rest have no
effect on the simulated outcome. A Qblox platform is a drop-in for the same call and lowers each
operation onto real sequencers.
What you get
- Six operations under
program.qblox.acquirereads a bus without playing a readout pulse.set_markersandset_triggerdrive the digital outputs,wait_triggerwaits on a digital input.set_acquisition_thresholdandset_acquisition_rotationconfigure thresholded acquisition, and take effect off the sequencer as slow-control parameter writes at execution time. - Typed or dynamic access.
qprogram_qblox.QProgramhas.qbloxtyped for autocomplete,QbloxMixincomposes with other vendor mixins, and the plainqprogram.QProgramgets the same namespace at runtime once this package is imported. - A capability profile.
QBLOX_DEFAULT_V1declares the operations, waveforms, measurement fields, and limits of a qblox-driven bus, plus the two constraints the hardware imposes: an arbitrary-valued sweep cannot drive a wait duration, and sweeping anIQDragsigma forces its loop to iterate host-side. - Round-tripping
.qpfiles. Every operation serializes asqblox.<name> <args>and reloads to a structurally equal program. Files carryrequire qblox 0.1, which the parser checks against the installed version. - Auto-activation on load.
qprogram.load("file.qp")imports this package on demand when the file requires theqbloxvendor, so a reader never has to know which extensions a file uses.
Documentation
Full documentation, including the operation reference, the capability profile, and the generated API reference, lives at https://qilimanjaro-tech.github.io/qprogram-qblox/.
Development
The project uses uv.
git clone https://github.com/qilimanjaro-tech/qprogram-qblox
cd qprogram-qblox
uv sync --group dev # create .venv and install the package plus dev tools
uv run pytest # run the test suite
uv run ruff check . # lint
uv run ruff format . # format
uv run ty check # type-check
uv run --group docs zensical serve # preview the documentation
License
Apache License 2.0 - see LICENSE.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file qprogram_qblox-0.1.0.tar.gz.
File metadata
- Download URL: qprogram_qblox-0.1.0.tar.gz
- Upload date:
- Size: 65.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7985cfab92a0f340d91b6129192f1290894e91118d33649d4bec9d1194810c2b
|
|
| MD5 |
1324500b36bbd71e96ed7ac875062b20
|
|
| BLAKE2b-256 |
7084e2154dde796cb41cd761fbc6a98f84113423b8d5fb282ae272cdf95f764f
|
File details
Details for the file qprogram_qblox-0.1.0-py3-none-any.whl.
File metadata
- Download URL: qprogram_qblox-0.1.0-py3-none-any.whl
- Upload date:
- Size: 22.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70e3ae28cb6877c5f2652a633a9554459d12c84129930545eca75c149dedcbba
|
|
| MD5 |
c45b7ffc8575c6f3131636cf83484ec5
|
|
| BLAKE2b-256 |
72d17b01a09ce2da9c1908d616d35c4cfbb6dcb385bd310248300e9ef4f26524
|