Delay¶
-
class
Delay
(duration, channel, name=None)[source]¶ Bases:
qiskit.pulse.instructions.instruction.Instruction
A blocking instruction with no other effect. The delay is used for aligning and scheduling other instructions.
Example
To schedule an instruction at time = 10, on a channel assigned to the variable
channel
, the following could be used:sched = Schedule(name="Delay instruction example") sched += Delay(10, channel) sched += Gaussian(duration, amp, sigma, channel)
The
channel
will output no signal from time=0 up until time=10.Create a new delay instruction.
No other instruction may be scheduled within a
Delay
.- Parameters
duration (
Union
[int
,ParameterExpression
]) – Length of time of the delay in terms of dt.channel (
Channel
) – The channel that will have the delay.name (
Optional
[str
]) – Name of the delay for display purposes.
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.- Return type
Channel
-
channels
¶ Returns the channels that this schedule uses.
- Return type
Tuple
[Channel
]
-
duration
¶ Duration of this instruction.
- Return type
Union
[int
,ParameterExpression
]
-
id
¶ Unique identifier for this instruction.
- Return type
int
-
instructions
¶ Iterable for getting instructions from Schedule tree.
- Return type
Tuple
[Tuple
[int
,Instruction
]]
-
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