-1

我正在为 Quantum Teleportation 编写代码,但我不知道如何解决此错误“没有后端符合条件”

这是一个代码:

circuit.measure(2,2)
simulator = Aer.get_backend('gasm_simulator')
result = execute(circuit, backend = simulator, shots = 1024).result()
counts = result.get_counts()
plot_histogram(counts)

有人可以帮我解决这个问题吗?谢谢!

4

2 回答 2

1

后端应该是'qasm_simulator'. 它是一个使用 OpenQASM 的模拟器,它是一种量子汇编语言

于 2020-02-12T16:40:36.383 回答
0

这只是你写的 Aer.get_backend('gasm_simulator') 的一个错字,它应该是调用 Quantum 装配模拟器的 'qasm_simulator',你可以找到支持的模拟器列表以及如何通过运行来调用它们命令 Aer.backends()

于 2020-08-15T23:47:27.487 回答