circuit
Quantum circuit wrapper around stim.Circuit with non-Clifford gate support.
Circuit
Circuit(stim_program_text: str = '')
Quantum circuit as a thin wrapper around stim.Circuit.
Circuits are constructed like stim circuits:
>>> circuit = Circuit('''
... H 0
... T 0
... CNOT 0 1
... M 0 1
... ''')
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
stim_program_text | str | Stim program text to parse. If empty, creates an empty circuit. | '' |
Source code in src/tsim/circuit.py
35 36 37 38 39 40 41 42 43 | |
is_clifford property
is_clifford: bool
Check if the circuit is a Clifford circuit.
A circuit is a Clifford circuit if it only contains Clifford gates (i.e. half-pi multiples of the rotation angles).
Returns:
| Type | Description |
|---|---|
bool | True if the circuit is a Clifford circuit, otherwise False. |
num_detectors property
num_detectors: int
Counts the number of bits produced when sampling the circuit's detectors.
num_measurements property
num_measurements: int
Counts the number of bits produced when sampling the circuit's measurements.
num_observables property
num_observables: int
Counts the number of bits produced when sampling the circuit's logical observables.
This is one more than the largest observable index given to OBSERVABLE_INCLUDE.
num_qubits property
num_qubits: int
Counts the number of qubits used when simulating the circuit.
This is always one more than the largest qubit index used by the circuit.
num_ticks property
num_ticks: int
Counts the number of TICK instructions executed when running the circuit.
TICKs in loops are counted once per iteration.
Returns:
| Type | Description |
|---|---|
int | The number of ticks executed by the circuit. |
stim_circuit property
stim_circuit: Circuit
Return the underlying stim circuit.
Parametric rotation instructions whose angles are all half-π multiples are expanded into their equivalent Clifford gates.
__add__
__add__(other: Circuit | Circuit) -> Circuit
Return a new circuit with another circuit appended.
Source code in src/tsim/circuit.py
112 113 114 115 116 | |
__eq__
__eq__(other: object) -> bool
Check equality with another circuit.
Source code in src/tsim/circuit.py
98 99 100 101 102 | |
__getitem__
__getitem__(index_or_slice: int) -> stim.CircuitInstruction
__getitem__(index_or_slice: slice) -> Circuit
__getitem__(index_or_slice: object) -> object
Return copies of instructions from the circuit.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
index_or_slice | object | An integer index picking out an instruction to return, or a slice picking out a range of instructions to return as a circuit. | required |
Returns:
| Type | Description |
|---|---|
object | If the index was an integer, then an instruction from the circuit. |
object | If the index was a slice, then a circuit made up of the instructions in that |
object | slice. |
Source code in src/tsim/circuit.py
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 | |
__iadd__
__iadd__(other: Circuit | Circuit) -> Circuit
Append another circuit to this circuit in-place.
Source code in src/tsim/circuit.py
104 105 106 107 108 109 110 | |
__imul__
__imul__(repetitions: int) -> Circuit
Repeat this circuit in-place.
Source code in src/tsim/circuit.py
118 119 120 121 122 | |
__len__
__len__() -> int
Return the number of instructions in the circuit.
Source code in src/tsim/circuit.py
94 95 96 | |
__mul__
__mul__(repetitions: int) -> Circuit
Return a new circuit repeated the given number of times.
Source code in src/tsim/circuit.py
124 125 126 | |
__repr__
__repr__() -> str
Return a string representation that can recreate the circuit.
Source code in src/tsim/circuit.py
86 87 88 | |
__rmul__
__rmul__(repetitions: int) -> Circuit
Return a new circuit repeated the given number of times.
Source code in src/tsim/circuit.py
128 129 130 | |
__str__
__str__() -> str
Return the circuit as program text.
Source code in src/tsim/circuit.py
90 91 92 | |
append_from_stim_program_text
append_from_stim_program_text(
stim_program_text: str,
) -> None
Append operations described by a STIM format program into the circuit.
Supports the same shorthand syntax as the constructor.
Source code in src/tsim/circuit.py
60 61 62 63 64 65 66 67 68 | |
approx_equals
approx_equals(other: object, *, atol: float) -> bool
Check if a circuit is approximately equal to another circuit.
Two circuits are approximately equal if they are equal up to slight perturbations of instruction arguments such as probabilities. For example, X_ERROR(0.100) 0 is approximately equal to X_ERROR(0.099) within an absolute tolerance of 0.002. All other details of the circuits (such as the ordering of instructions and targets) must be exactly the same.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
other | object | The circuit, or other object, to compare to this one. | required |
atol | float | The absolute error tolerance. The maximum amount each probability may have been perturbed by. | required |
Returns:
| Type | Description |
|---|---|
bool | True if the given object is a circuit approximately equal up to the |
bool | receiving circuit up to the given tolerance, otherwise False. |
Source code in src/tsim/circuit.py
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 | |
cast_to_stim
cast_to_stim() -> stim.Circuit
Return self with type cast to stim.Circuit. This is useful for passing the circuit to functions that expect a stim.Circuit.
Source code in src/tsim/circuit.py
652 653 654 | |
compile_detector_sampler
compile_detector_sampler(*, seed: int | None = None)
Compile circuit into a detector sampler.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
seed | int | None | Random seed for the sampler. If None, a random seed will be generated. | None |
Returns:
| Type | Description |
|---|---|
| A CompiledDetectorSampler that can be used to sample detectors and observables. |
Source code in src/tsim/circuit.py
638 639 640 641 642 643 644 645 646 647 648 649 650 | |
compile_m2d_converter
compile_m2d_converter(
*, skip_reference_sample: bool = False
) -> stim.CompiledMeasurementsToDetectionEventsConverter
Create a measurement-to-detection-event converter for the given circuit.
The converter can efficiently compute detection events and observable flips from raw measurement data.
The converter uses a noiseless reference sample, collected from the circuit using stim's Tableau simulator during initialization of the converter, as a baseline for determining what the expected value of a detector is.
Note that the expected behavior of gauge detectors (detectors that are not actually deterministic under noiseless execution) can vary depending on the reference sample. Stim mitigates this by always generating the same reference sample for a given circuit.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
skip_reference_sample | bool | Defaults to False. When set to True, the reference sample used by the converter is initialized to all-zeroes instead of being collected from the circuit. This should only be used if it's known that the all-zeroes sample is actually a possible result from the circuit (under noiseless execution). | False |
Returns:
| Type | Description |
|---|---|
CompiledMeasurementsToDetectionEventsConverter | An initialized stim.CompiledMeasurementsToDetectionEventsConverter. |
Source code in src/tsim/circuit.py
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 | |
compile_sampler
compile_sampler(*, seed: int | None = None)
Compile circuit into a measurement sampler.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
seed | int | None | Random seed for the sampler. If None, a random seed will be generated. | None |
Returns:
| Type | Description |
|---|---|
| A CompiledMeasurementSampler that can be used to sample measurements. |
Source code in src/tsim/circuit.py
624 625 626 627 628 629 630 631 632 633 634 635 636 | |
copy
copy() -> Circuit
Create a copy of this circuit.
Source code in src/tsim/circuit.py
358 359 360 | |
detector_error_model
detector_error_model(
*,
decompose_errors: bool = False,
flatten_loops: bool = False,
allow_gauge_detectors: bool = False,
approximate_disjoint_errors: bool = False,
ignore_decomposition_failures: bool = False,
block_decomposition_from_introducing_remnant_edges: bool = False
) -> stim.DetectorErrorModel
Return a stim.DetectorErrorModel describing the error processes in the circuit.
Unlike the stim.Circuit.detector_error_model() method, this method allows for non-deterministic observables when allow_gauge_detectors is set to true.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
decompose_errors | bool | Defaults to false. When set to true, the error analysis attempts to decompose the components of composite error mechanisms (such as depolarization errors) into simpler errors, and suggest this decomposition via This is not supported by tsim and setting it to true will raise an error. The argument is present for compatibility with stim. | False |
flatten_loops | bool | Defaults to false. When set to true, the output will not contain any Irrelevant unless allow_gauge_detectors=False. | False |
allow_gauge_detectors | bool | Defaults to false. When set to false, the error analysis verifies that detectors in the circuit are actually deterministic under noiseless execution of the circuit. Note that, unlike in stim, logical observables are also allowed to be non-deterministic. | False |
approximate_disjoint_errors | bool | Defaults to false. When set to false, composite error mechanisms with disjoint components (such as This argument can also be set to a probability between 0 and 1, setting a threshold below which the approximation is acceptable. Any error mechanisms that have a component probability above the threshold will cause an exception to be thrown. | False |
ignore_decomposition_failures | bool | Defaults to False. When this is set to True, circuit errors that fail to decompose into graphlike detector error model errors no longer cause the conversion process to abort. Instead, the undecomposed error is inserted into the output. Whatever tool the detector error model is then given to is responsible for dealing with the undecomposed errors (e.g. a tool may choose to simply ignore them). Irrelevant unless decompose_errors=True. | False |
block_decomposition_from_introducing_remnant_edges | bool | Defaults to False. Requires that both A B and C D be present elsewhere in the detector error model in order to decompose A B C D into A B ^ C D. Normally, only one of A B or C D needs to appear to allow this decomposition. Remnant edges can be a useful feature for ensuring decomposition succeeds, but they can also reduce the effective code distance by giving the decoder single edges that actually represent multiple errors in the circuit (resulting in the decoder making misinformed choices when decoding). Irrelevant unless decompose_errors=True. | False |
Source code in src/tsim/circuit.py
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 | |
diagram
diagram(
type: Literal[
"pyzx",
"pyzx-dets",
"pyzx-meas",
"timeline-svg",
"timeslice-svg",
] = "timeline-svg",
tick: int | range | None = None,
filter_coords: Iterable[Iterable[float] | DemTarget] = (
(),
),
rows: int | None = None,
height: float | None = None,
width: float | None = None,
**kwargs: Any
) -> Any
Return a diagram of the circuit, from a variety of options.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
type | Literal['pyzx', 'pyzx-dets', 'pyzx-meas', 'timeline-svg', 'timeslice-svg'] | The type of diagram. Available types are: "pyzx": A pyzx SVG of the ZX diagram of the circuit. "pyzx-dets": A pyzx SVG of the ZX diagram that is used to compute probabilities of detectors and observables. "pyzx-meas": A pyzx SVG of the ZX diagram that is used to compute probabilities of measurements. "timeline-svg": An SVG image of the operations applied by the circuit over time. Includes annotations showing the measurement record index that each measurement writes to, and the measurements used by detectors. "timeslice-svg": An SVG image of the operations applied between two TICK instructions in the circuit, with the operations laid out in 2d. | 'timeline-svg' |
tick | int | range | None | Required for time slice diagrams. Specifies which TICK instruction, or range of TICK instructions, to slice at. Note that the first TICK instruction in the circuit corresponds tick=1. The value tick=0 refers to the very start of the circuit. Passing Passing | None |
rows | int | None | In diagrams that have multiple separate pieces, such as timeslice diagrams and detslice diagrams, this controls how many rows of pieces there will be. If not specified, a number of rows that creates a roughly square layout will be chosen. | None |
filter_coords | Iterable[Iterable[float] | DemTarget] | A list of things to include in the diagram. Different effects depending on the diagram. For detslice diagrams, the filter defaults to showing all detectors and no observables. When specified, each list entry can be a collection of floats (detectors whose coordinates start with the same numbers will be included), a stim.DemTarget (specifying a detector or observable to include), a string like "D5" or "L0" specifying a detector or observable to include. | ((),) |
height | float | None | Optional height for the rendered diagram. | None |
width | float | None | Optional width for the rendered diagram. | None |
**kwargs | Any | Additional keyword arguments passed to the underlying diagram renderer. | {} |
Returns:
| Type | Description |
|---|---|
Any | An object whose |
Any | writing the diagram to a file works correctly. The returned |
Any | object may also define methods such as |
Any | ipython notebooks recognize it can be shown using a specialized |
Any | viewer instead of as raw text. |
Source code in src/tsim/circuit.py
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 | |
from_file classmethod
from_file(filename: str) -> Circuit
Create a Circuit from a file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
filename | str | The filename to read the circuit from. | required |
Returns:
| Type | Description |
|---|---|
Circuit | A new Circuit instance. |
Source code in src/tsim/circuit.py
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | |
from_stim_program classmethod
from_stim_program(stim_circuit: Circuit) -> Circuit
Create a Circuit from a stim.Circuit object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
stim_circuit | Circuit | The stim circuit to wrap. | required |
Returns:
| Type | Description |
|---|---|
Circuit | A new Circuit instance. |
Source code in src/tsim/circuit.py
45 46 47 48 49 50 51 52 53 54 55 56 57 58 | |
get_graph
get_graph() -> BaseGraph
Construct the ZX graph.
Source code in src/tsim/circuit.py
592 593 594 595 | |
get_sampling_graph
get_sampling_graph(
sample_detectors: bool = False,
) -> BaseGraph
Get a ZX graph that can be used to compute probabilities.
This graph will be constructed as follows:
- Double the ZX-diagram by composing it with its adjoint.
- Connect all rec[i] vertices to their corresponding adjoint rec[i] vertices.
- Add outputs: (a) When sampling measurements (i.e.
sample_detectorsis False), add output nodes for each measurement. Detectors and observables are removed since they are ignored when sampling measurements. (b) When sampling detectors and observables (i.e.sample_detectorsis True), add output nodes for each detector and observable. Only one set of detector and observable nodes is kept, i.e., detectors and observables are not composed with their adjoints.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sample_detectors | bool | If True, sample detectors and observables instead of measurements. | False |
Returns:
| Type | Description |
|---|---|
BaseGraph | A ZX graph for sampling. |
Source code in src/tsim/circuit.py
597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 | |
inverse
inverse() -> Circuit
Return the inverse of the circuit.
Source code in src/tsim/circuit.py
656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 | |
pop
pop(index: int = -1) -> stim.CircuitInstruction
Pops an operation from the end of the circuit, or at the given index.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
index | int | Defaults to -1 (end of circuit). The index to pop from. | -1 |
Returns:
| Type | Description |
|---|---|
CircuitInstruction | The popped instruction. |
Raises:
| Type | Description |
|---|---|
IndexError | The given index is outside the bounds of the circuit. |
Source code in src/tsim/circuit.py
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 | |
tcount
tcount() -> int
Count the number of T gates in the circuit.
Source code in src/tsim/circuit.py
587 588 589 590 | |
to_matrix
to_matrix() -> Any
Convert circuit to matrix representation.
Source code in src/tsim/circuit.py
580 581 582 583 584 585 | |
to_tensor
to_tensor() -> Any
Convert circuit to tensor representation.
Source code in src/tsim/circuit.py
573 574 575 576 577 578 | |
without_annotations
without_annotations() -> Circuit
Return a copy of the circuit with all annotations removed.
Source code in src/tsim/circuit.py
366 367 368 369 370 371 372 373 374 | |
without_noise
without_noise() -> Circuit
Return a copy of the circuit with all noise removed.
Source code in src/tsim/circuit.py
362 363 364 | |