qiskit.pulse.InstructionScheduleMap.qubits_with_instruction¶
- InstructionScheduleMap.qubits_with_instruction(instruction)[Quellcode]¶
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.
- Parameter
instruction (Union[str, Instruction]) – The name of the circuit instruction.
- Rückgabe
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.
- Verursacht
PulseError – If the instruction is not found.
- Rückgabetyp
List[Union[int, Tuple[int]]]