We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Without this change, the following error occurs when using a live backend with the example from the README:
qiskit.transpiler.exceptions.TranspilerError: 'Number of qubits greater than device.'
This is due to https://github.com/Qiskit/qiskit/blob/main/qiskit/compiler/transpiler.py#L485 not using the direct backend.coupling_map as it would if RigettiQCSBackend were based on BackendV2
backend.coupling_map
RigettiQCSBackend
BackendV2
A workaround for now is to call execute explicitly with the coupling_map argument like the following, as described in #43
execute
coupling_map
job = execute(circuit, backend, shots=10, coupling_map=backend.coupling_map)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Without this change, the following error occurs when using a live backend with the example from the README:
This is due to https://github.com/Qiskit/qiskit/blob/main/qiskit/compiler/transpiler.py#L485 not using the direct
backend.coupling_map
as it would ifRigettiQCSBackend
were based onBackendV2
A workaround for now is to call
execute
explicitly with thecoupling_map
argument like the following, as described in #43The text was updated successfully, but these errors were encountered: