Snapshot¶
- class Snapshot(label, snapshot_type='statevector', name=None)[source]¶
Bases:
Instruction
An instruction targeted for simulators, to capture a moment in the simulation.
Create new snapshot.
- প্যারামিটার
label (str) -- Snapshot label which is used to identify the snapshot in the output.
snapshot_type (str) -- Type of snapshot, e.g., “state” (take a snapshot of the quantum state). The types of snapshots offered are defined by the simulator used.
name (Optional[str]) -- Snapshot name which defaults to
label
. This parameter is only for display purposes and is not taken into account during comparison.
Methods
Return a new
Schedule
withschedule
inserted at the maximum time over all channels shared betweenself
andschedule
.Return duration of the supplied channels in this Instruction.
Return minimum start time for supplied channels.
Return maximum start time for supplied channels.
Plot the instruction.
Return a new
Schedule
withschedule
inserted withinself
atstart_time
.Return True iff the instruction is parameterized.
Return a new schedule shifted forward by time.
Attributes
- channels¶
Returns the channels that this schedule uses.
- duration¶
Duration of this instruction.
- id¶
Unique identifier for this instruction.
- instructions¶
Iterable for getting instructions from Schedule tree.
- label¶
Label of snapshot.
- name¶
Name of this instruction.
- operands¶
Return instruction operands.
- parameters¶
Parameters which determine the instruction behavior.
- start_time¶
Relative begin time of this instruction.
- stop_time¶
Relative end time of this instruction.
- type¶
Type of snapshot.