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
For ionq qpu, I used the following code block
simulator = myprovider.get_backend('ionq.qpu') retrieved =simulator.retrieve_job("myid")
But similar code block does not work with Honeywell
simulator = provider.get_backend("honeywell.hqs-lt-s2") retrieved =simulator.retrieve_job("myid")
It results in the following error message
AttributeError: 'HoneywellQPUBackend' object has no attribute 'retrieve_job'
The text was updated successfully, but these errors were encountered:
With the changes in #278 , the method retrieve_job() is now part of the base implementation and is available to all providers.
retrieve_job()
Sorry, something went wrong.
No branches or pull requests
For ionq qpu, I used the following code block
But similar code block does not work with Honeywell
It results in the following error message
The text was updated successfully, but these errors were encountered: