Does IBMQ real devices support reset gate in runtime? Because I'm facing the error :

130 Views Asked by At

Failed - TranspilerError: "Unknown operation type for DAGOpNode(op=Instruction(name='reset', num_qubits=1, num_clbits=0, params=[]), qargs=(Qubit(QuantumRegister(7, 'q'), 0),), cargs=()).

I need a device which supports reset gate when ran using qiskit runtime

1

There are 1 best solutions below

0
On

You can list all the backends supporting reset with the following code:

from qiskit_ibm_provider import IBMProvider
provider = IBMProvider()
for backend in provider.backends(simulator=False):
    if 'reset' in supported_instructions:
        print(backend.name, 'supports reset')
    else:
        print(backend.name, 'DOES NOT supports reset')