qiskit.pulse.InstructionScheduleMap.qubits_with_instruction¶
- InstructionScheduleMap.qubits_with_instruction(instruction)[ソース]¶
Return a list of the qubits for which the given instruction is defined. Single qubit instructions return a flat list, and multiqubit instructions return a list of ordered tuples.
- パラメータ
instruction (
Union
[str
,Instruction
]) – The name of the circuit instruction.- 戻り値の型
List
[Union
[int
,Tuple
[int
]]]- 戻り値
Qubit indices which have the given instruction defined. This is a list of tuples if the instruction has an arity greater than 1, or a flat list of ints otherwise.
- 例外
PulseError – If the instruction is not found.