-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
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
GroverOperator doesn't work properly in 'ibmq_qasm_simulator' #339
Comments
Thanks @KetpuntoG! We should definitely get this fixed. Is it blocking any work you are doing now? |
Fixes so the error is now:
So still an error, but an error that informs the user how to not get the error. |
It is not blocking me @trbromley |
|
albi3ro
added a commit
to PennyLaneAI/pennylane
that referenced
this issue
Oct 13, 2023
The default to `GroverOperator` for work wires was `None`. Unfortunately this was being interpreted as `work_wires = Wires([None,])`. This PR makes it so that `work_wires=None` is interpreted as `work_wires = Wires([])`. Fixes PennyLaneAI/pennylane-qiskit#339 --------- Co-authored-by: Matthew Silverman <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When running the Grover operator in the simulator we get the following error:
In
default.qubit
it works correctly.Tested with version 0.32
The text was updated successfully, but these errors were encountered: