-
Notifications
You must be signed in to change notification settings - Fork 361
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
Unavailability of Probabilities in result after successfull simulation #2183
Comments
Hey @Suraj1409 Are you able to share your code here? If not everything, at least the part where you define your circuit and where you run the backend |
from qiskit import * number_of_qubit = 33 def single_oracle(qc, q): def diffusion_operator(qc, q): def grover(qc, q, target): q = QuantumRegister(number_of_qubit) backend = Aer.get_backend('aer_simulator_statevector_gpu') job_cu = backend.run(qc, shots=3000,cuStateVec_enable=True) result_cu = job_cu.result() print("CuStateVec Output : ") |
Thx @Suraj1409 so when you run |
Nothing gets print, even i tried to print job_cu.result() all parameters get printed but not probabilities |
Informations
Qiskit = 1.0.2
Qiskit-aer = 0.14.1
Qiskit-aer-gpu = 0.14.1
What is the current behavior?
I have Nvidia A100 GPU with 80GB memory, and I am trying to simulate 33 qubit circuit (statevector simulation) with single precision which will take around 64 GB memory, but when I run the circuit it didnt produce probabilities in the result, but the status of simulation is completed and time taken is 0.0025 sec
Need a guide for it
The text was updated successfully, but these errors were encountered: