Snapshot¶
-
class
Snapshot
(label, snapshot_type='statevector', name=None)[source]¶ Bases:
qiskit.pulse.instructions.instruction.Instruction
An instruction targeted for simulators, to capture a moment in the simulation.
Create new snapshot.
- Parameters
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 tolabel
. This parameter is only for display purposes and is not taken into account during comparison.
- Raises
PulseError – If snapshot label is invalid.
Methods
Return a new
Schedule
withschedule
inserted at the maximum time over all channels shared betweenself
andschedule
.Modify and return self with parameters assigned according to the input.
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 itself as already single 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
-
channel
¶ Return the
Channel
that this instruction is scheduled on; trivially, aSnapshotChannel
.- Return type
SnapshotChannel
-
channels
¶ Returns the channels that this schedule uses.
- Return type
Tuple
[SnapshotChannel
]
-
duration
¶ Duration of this instruction.
- Return type
int
-
id
¶ Unique identifier for this instruction.
- Return type
int
-
instructions
¶ Iterable for getting instructions from Schedule tree.
- Return type
Tuple
[Tuple
[int
,Instruction
]]
-
label
¶ Label of snapshot.
- Return type
str
-
name
¶ Name of this instruction.
- Return type
str
-
operands
¶ Return instruction operands.
- Return type
Tuple
-
parameters
¶ Parameters which determine the instruction behavior.
- Return type
Set
-
start_time
¶ Relative begin time of this instruction.
- Return type
int
-
stop_time
¶ Relative end time of this instruction.
- Return type
int
-
type
¶ Type of snapshot.
- Return type
str