Replies: 1 comment
-
Hi @gzquse, I am able to run 2,000,000 shots on A100 using the following test file using v0.8.0. import cudaq
@cudaq.kernel
def kernel():
q = cudaq.qvector(32)
x(q[0])
mz(q)
print(cudaq.sample(kernel, shots_count=2000000)) That produces: $ python3 test.py
{ 10000000000000000000000000000000:2000000 } |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I ran the circuit with 32 qubits on A100 40GG. I found only circuits occupy the memory instead of shots
Beta Was this translation helpful? Give feedback.
All reactions