-
Qiskit has a very convenient method Statevector.evolve() that allows applying a single gate to a statevector. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Hi @hthayko, We don't have |
Beta Was this translation helpful? Give feedback.
-
Thanks @ymagchi, I noticed the Namely, to achieve the same thing as Statevector.evolve() I need to:
Is there a way to achieve 1..3 in gpu with cusvaer or other cuquantum methods? |
Beta Was this translation helpful? Give feedback.
-
Thanks for sharing the targeting problem. If the circuit fits into single GPU, it may be possible to split the simulation into its common section and post-processing:
Will the above approach work in your case? |
Beta Was this translation helpful? Give feedback.
Thanks for sharing the targeting problem.
Current cusvaer doesn't have the functionality to return the state vector directly to GPU.
If the circuit fits into single GPU, it may be possible to split the simulation into its common section and post-processing:
cuquantum.custatevec.apply_matrix
to apply one gate, which can be computed on device. (cuquantum.custatevec.apply_matrix for reference)Will the above approach work in your case?