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.