Skip to content
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

qiskit-aer-gpu is not working #130

Open
vijaysunny opened this issue Mar 21, 2023 · 1 comment
Open

qiskit-aer-gpu is not working #130

vijaysunny opened this issue Mar 21, 2023 · 1 comment

Comments

@vijaysunny
Copy link

#code
from qiskit import *
from qiskit.circuit.library import *
from qiskit_aer import *

sim = AerSimulator(method='statevector', device='GPU')

qubits = 5
depth=2
shots = 5

circuit = QuantumVolume(qubits, depth, seed=0)
circuit.measure_all()
result = execute(circuit,sim,shots=shots,seed_simulator=123).result()

print("{0} qubits Quantum Volume, Simulation Time = {1} sec".format(qubits,result.to_dict()['results'][0]['time_taken']))
counts = result.get_counts()
print(counts)
#output
RuntimeError: Simulation device "GPU" is not supported on this system
i have installed required packages and also i have nstalled cuda

@YangD5014
Copy link

YangD5014 commented Apr 13, 2023

I am also focusing on this issue, have you ever installed qiskit_aer_gpu ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants