qiskit.pulse.channels¶
This module defines Pulse Channels. Channels include:
transmit channels, which should subclass
PulseChannel
receive channels, such as
AcquireChannel
non-signal “channels” such as
SnapshotChannel
,MemorySlot
andRegisterChannel
.
Novel channel types can often utilize the ControlChannel
, but if this is not sufficient, new
channel types can be created. Then, they must be supported in the PulseQobj schema and the
assembler.
Classes
|
Acquire channels are used to collect data. |
|
Base class of channels. |
|
Control channels provide supplementary control over the qubit to the drive channel. |
|
Drive channels transmit signals to qubits which enact gate operations. |
|
Measure channels transmit measurement stimulus pulses for readout. |
|
Memory slot channels represent classical memory storage. |
|
Base class of transmit Channels. |
|
Classical resister slot channels represent classical registers (low-latency classical memory). |
|
Snapshot channels are used to specify instructions for simulators. |
-
class
AcquireChannel
(index)[source]¶ Acquire channels are used to collect data.
Channel class.
- Parameters
index (
int
) – Index of channel.
-
assign
(parameter, value)¶ Return a new channel with the input Parameter assigned to value.
- Parameters
parameter (
Parameter
) – A parameter in this expression whose value will be updated.value (
Union
[ParameterExpression
,float
]) – The new value to bind to.
- Return type
- Returns
A new channel with updated parameters.
- Raises
PulseError – If the parameter is not present in the channel.
-
property
index
¶ Return the index of this channel. The index is a label for a control signal line typically mapped trivially to a qubit index. For instance,
DriveChannel(0)
labels the signal line driving the qubit labeled with index 0.- Return type
Union
[int
,ParameterExpression
]
-
is_parameterized
()¶ Return True iff the channel is parameterized.
- Return type
bool
-
property
name
¶ Return the shorthand alias for this channel, which is based on its type and index.
- Return type
str
-
property
parameters
¶ Parameters which determine the channel index.
- Return type
Set
-
class
Channel
(index)[source]¶ Base class of channels. Channels provide a Qiskit-side label for typical quantum control hardware signal channels. The final label -> physical channel mapping is the responsibility of the hardware backend. For instance,
DriveChannel(0)
holds instructions which the backend should map to the signal line driving gate operations on the qubit labeled (indexed) 0.When serialized channels are identified by their serialized name
<prefix><index>
. The type of the channel is interpreted from the prefix, and the index often (but not always) maps to the qubit index. All concrete channel classes must have aprefix
class attribute (and instances of that class have an index attribute). Base classes which haveprefix
set toNone
are prevented from being instantiated.To implement a new channel inherit from
Channel
and provide a unique string identifier for theprefix
class attribute.Channel class.
- Parameters
index (
int
) – Index of channel.
-
assign
(parameter, value)[source]¶ Return a new channel with the input Parameter assigned to value.
- Parameters
parameter (
Parameter
) – A parameter in this expression whose value will be updated.value (
Union
[ParameterExpression
,float
]) – The new value to bind to.
- Return type
- Returns
A new channel with updated parameters.
- Raises
PulseError – If the parameter is not present in the channel.
-
property
index
¶ Return the index of this channel. The index is a label for a control signal line typically mapped trivially to a qubit index. For instance,
DriveChannel(0)
labels the signal line driving the qubit labeled with index 0.- Return type
Union
[int
,ParameterExpression
]
-
property
name
¶ Return the shorthand alias for this channel, which is based on its type and index.
- Return type
str
-
property
parameters
¶ Parameters which determine the channel index.
- Return type
Set
-
prefix
= None¶ A shorthand string prefix for characterizing the channel type.
-
class
ControlChannel
(index)[source]¶ Control channels provide supplementary control over the qubit to the drive channel. These are often associated with multi-qubit gate operations. They may not map trivially to a particular qubit index.
Channel class.
- Parameters
index (
int
) – Index of channel.
-
assign
(parameter, value)¶ Return a new channel with the input Parameter assigned to value.
- Parameters
parameter (
Parameter
) – A parameter in this expression whose value will be updated.value (
Union
[ParameterExpression
,float
]) – The new value to bind to.
- Return type
- Returns
A new channel with updated parameters.
- Raises
PulseError – If the parameter is not present in the channel.
-
property
index
¶ Return the index of this channel. The index is a label for a control signal line typically mapped trivially to a qubit index. For instance,
DriveChannel(0)
labels the signal line driving the qubit labeled with index 0.- Return type
Union
[int
,ParameterExpression
]
-
is_parameterized
()¶ Return True iff the channel is parameterized.
- Return type
bool
-
property
name
¶ Return the shorthand alias for this channel, which is based on its type and index.
- Return type
str
-
property
parameters
¶ Parameters which determine the channel index.
- Return type
Set
-
class
DriveChannel
(index)[source]¶ Drive channels transmit signals to qubits which enact gate operations.
Channel class.
- Parameters
index (
int
) – Index of channel.
-
assign
(parameter, value)¶ Return a new channel with the input Parameter assigned to value.
- Parameters
parameter (
Parameter
) – A parameter in this expression whose value will be updated.value (
Union
[ParameterExpression
,float
]) – The new value to bind to.
- Return type
- Returns
A new channel with updated parameters.
- Raises
PulseError – If the parameter is not present in the channel.
-
property
index
¶ Return the index of this channel. The index is a label for a control signal line typically mapped trivially to a qubit index. For instance,
DriveChannel(0)
labels the signal line driving the qubit labeled with index 0.- Return type
Union
[int
,ParameterExpression
]
-
is_parameterized
()¶ Return True iff the channel is parameterized.
- Return type
bool
-
property
name
¶ Return the shorthand alias for this channel, which is based on its type and index.
- Return type
str
-
property
parameters
¶ Parameters which determine the channel index.
- Return type
Set
-
class
MeasureChannel
(index)[source]¶ Measure channels transmit measurement stimulus pulses for readout.
Channel class.
- Parameters
index (
int
) – Index of channel.
-
assign
(parameter, value)¶ Return a new channel with the input Parameter assigned to value.
- Parameters
parameter (
Parameter
) – A parameter in this expression whose value will be updated.value (
Union
[ParameterExpression
,float
]) – The new value to bind to.
- Return type
- Returns
A new channel with updated parameters.
- Raises
PulseError – If the parameter is not present in the channel.
-
property
index
¶ Return the index of this channel. The index is a label for a control signal line typically mapped trivially to a qubit index. For instance,
DriveChannel(0)
labels the signal line driving the qubit labeled with index 0.- Return type
Union
[int
,ParameterExpression
]
-
is_parameterized
()¶ Return True iff the channel is parameterized.
- Return type
bool
-
property
name
¶ Return the shorthand alias for this channel, which is based on its type and index.
- Return type
str
-
property
parameters
¶ Parameters which determine the channel index.
- Return type
Set
-
class
MemorySlot
(index)[source]¶ Memory slot channels represent classical memory storage.
Channel class.
- Parameters
index (
int
) – Index of channel.
-
assign
(parameter, value)¶ Return a new channel with the input Parameter assigned to value.
- Parameters
parameter (
Parameter
) – A parameter in this expression whose value will be updated.value (
Union
[ParameterExpression
,float
]) – The new value to bind to.
- Return type
- Returns
A new channel with updated parameters.
- Raises
PulseError – If the parameter is not present in the channel.
-
property
index
¶ Return the index of this channel. The index is a label for a control signal line typically mapped trivially to a qubit index. For instance,
DriveChannel(0)
labels the signal line driving the qubit labeled with index 0.- Return type
Union
[int
,ParameterExpression
]
-
is_parameterized
()¶ Return True iff the channel is parameterized.
- Return type
bool
-
property
name
¶ Return the shorthand alias for this channel, which is based on its type and index.
- Return type
str
-
property
parameters
¶ Parameters which determine the channel index.
- Return type
Set
-
class
PulseChannel
(index)[source]¶ Base class of transmit Channels. Pulses can be played on these channels.
Channel class.
- Parameters
index (
int
) – Index of channel.
-
assign
(parameter, value)¶ Return a new channel with the input Parameter assigned to value.
- Parameters
parameter (
Parameter
) – A parameter in this expression whose value will be updated.value (
Union
[ParameterExpression
,float
]) – The new value to bind to.
- Return type
- Returns
A new channel with updated parameters.
- Raises
PulseError – If the parameter is not present in the channel.
-
property
index
¶ Return the index of this channel. The index is a label for a control signal line typically mapped trivially to a qubit index. For instance,
DriveChannel(0)
labels the signal line driving the qubit labeled with index 0.- Return type
Union
[int
,ParameterExpression
]
-
is_parameterized
()¶ Return True iff the channel is parameterized.
- Return type
bool
-
property
name
¶ Return the shorthand alias for this channel, which is based on its type and index.
- Return type
str
-
property
parameters
¶ Parameters which determine the channel index.
- Return type
Set
-
class
RegisterSlot
(index)[source]¶ Classical resister slot channels represent classical registers (low-latency classical memory).
Channel class.
- Parameters
index (
int
) – Index of channel.
-
assign
(parameter, value)¶ Return a new channel with the input Parameter assigned to value.
- Parameters
parameter (
Parameter
) – A parameter in this expression whose value will be updated.value (
Union
[ParameterExpression
,float
]) – The new value to bind to.
- Return type
- Returns
A new channel with updated parameters.
- Raises
PulseError – If the parameter is not present in the channel.
-
property
index
¶ Return the index of this channel. The index is a label for a control signal line typically mapped trivially to a qubit index. For instance,
DriveChannel(0)
labels the signal line driving the qubit labeled with index 0.- Return type
Union
[int
,ParameterExpression
]
-
is_parameterized
()¶ Return True iff the channel is parameterized.
- Return type
bool
-
property
name
¶ Return the shorthand alias for this channel, which is based on its type and index.
- Return type
str
-
property
parameters
¶ Parameters which determine the channel index.
- Return type
Set
-
class
SnapshotChannel
(*args, **kwargs)[source]¶ Snapshot channels are used to specify instructions for simulators.
Create new snapshot channel.
-
assign
(parameter, value)¶ Return a new channel with the input Parameter assigned to value.
- Parameters
parameter (
Parameter
) – A parameter in this expression whose value will be updated.value (
Union
[ParameterExpression
,float
]) – The new value to bind to.
- Return type
- Returns
A new channel with updated parameters.
- Raises
PulseError – If the parameter is not present in the channel.
-
property
index
¶ Return the index of this channel. The index is a label for a control signal line typically mapped trivially to a qubit index. For instance,
DriveChannel(0)
labels the signal line driving the qubit labeled with index 0.- Return type
Union
[int
,ParameterExpression
]
-
is_parameterized
()¶ Return True iff the channel is parameterized.
- Return type
bool
-
property
name
¶ Return the shorthand alias for this channel, which is based on its type and index.
- Return type
str
-
property
parameters
¶ Parameters which determine the channel index.
- Return type
Set
-