Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

active_reset_cycles option #146

Merged
merged 3 commits into from
Nov 14, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/iqm/iqm_client/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,11 @@ class RunRequest(BaseModel):
"""Which method of MOVE gate validation to use for circuit compilation."""
move_gate_frame_tracking_mode: MoveGateFrameTrackingMode = Field(MoveGateFrameTrackingMode.FULL)
"""Which method of MOVE gate frame tracking to use for circuit compilation."""

active_reset_cycles: Optional[int] = Field(None)
"""Number of active ``reset`` operations inserted at the beginning of each circuit for each active qubit.
``None`` means active reset is not used but instead reset is done by waiting (relaxation). Integer values smaller
than 1 result in neither active nor reset by wait being used, in which case any reset operations must be explicitly
added in the circuit."""

CircuitMeasurementResults = dict[str, list[list[int]]]
"""Measurement results from a single circuit. For each measurement operation in the circuit,
Expand Down
Loading