We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84facb7 commit 48a73a2Copy full SHA for 48a73a2
quantum/quantum_teleportation.py
@@ -57,7 +57,7 @@ def quantum_teleportation(
57
quantum_circuit.measure([2], [0]) # measure the qubit.
58
59
# Simulate the circuit using qasm simulator
60
- backend = Aer.get_backend("qasm_simulator")
+ backend = Aer.get_backend("aer_simulator")
61
job = execute(quantum_circuit, backend, shots=1000)
62
63
return job.result().get_counts(quantum_circuit)
0 commit comments