QuantumProgram
class QuantumProgram(shots, items=None, noise_maps=None, meas_level='classified', passthrough_data=None)
Bases: object
A quantum runtime executable.
A quantum program consists of a list of ordered elements, each of which contains a single circuit and an array of associated parameter values. Executing a quantum program will sample the outcome of each circuit for the specified number of shots for each set of circuit arguments provided.
Parameters
-
shots (int) – The number of shots for each circuit execution.
-
items (Iterable[QuantumProgramItem] | None) – Items that comprise the program.
-
noise_maps (dict[str, PauliLindbladMap] | None) – Noise maps to use with samplex items.
-
meas_level (Literal['classified', 'kerneled', 'avg_kerneled', 'both']) –
The level at which to return all classical register measurement results. This value sets the return type of all classical registers in all quantum program items and determines whether the raw complex data from low-level measurement devices is discriminated into bits or not. The supported values are
-
”classified”: Classical register data is returned as boolean arrays with the
intrinsic shape
(num_shots, creg_size). -
”kerneled”: Classical register data is returned as a complex array with the
intrinsic shape
(num_shots, creg_size), where each entry represents an IQ data point (resulting from kerneling the measurement trace) in arbitrary units. -
”avg_kerneled”: Classical register data is returned as a complex array with the
intrinsic shape
(creg_size,), where data is equivalent to “kerneled” except additionally averaged over shots.
passthrough_data: Arbitrary nested data passed through execution without modification.
-
-
passthrough_data (DataTree | None)
Methods
append_circuit_item
append_circuit_item(circuit, *, circuit_arguments=None, chunk_size=None)
Append a new CircuitItem to this program.
Parameters
- circuit (QuantumCircuit) – The circuit of this item.
- circuit_arguments (ndarray | None) – A real-valued array of parameter values for the circuit. The last axis is intrinsic with size equal to the number of circuit parameters. Leading axes are extrinsic and define the sweep grid.
- chunk_size (int | None) – The maximum number of bound circuits in each shot loop execution, or
Noneto use a server-side heuristic to optimize speed. When not executing in a session, the server-side heuristic is always used and this value is ignored.
Return type
None
append_samplex_item
append_samplex_item(circuit, *, samplex, samplex_arguments=None, shape=None, chunk_size=None)
Append a new SamplexItem to this program.
Parameters
- circuit (QuantumCircuit) – The circuit of this item.
- samplex (Samplex) – A samplex to draw random parameters for the circuit.
- samplex_arguments (dict[str, Any] | None) – A map from argument names to argument values for the samplex. Each argument array has intrinsic axes determined by its type (e.g.,
parameter_valueshas intrinsic shape(n,)fornparameters). The extrinsic shapes of all arguments are broadcasted together. - shape (tuple[int, ...] | None) – A shape that the item’s extrinsic shape must be broadcastable to. Axes where
shapeexceeds the shape implicit insamplex_argumentsenumerate independent randomizations. - chunk_size (int | None) – The maximum number of bound circuits in each shot loop execution, or
Noneto use a server-side heuristic to optimize speed. When not executing in a session, the server-side heuristic is always used and this value is ignored.
Return type
None