Simulating noisy cirq circuits #3066
-
|
Is there a way to use the cuda-q framework to directly simulate noisy cirq circuits or to translate noisy cirq circuits into cudaq kernels? If I wanted to simulate a noisy cirq circuit using the cuquantum 'NetworkState' using the tensor network simulator. Would I need to: -sample a trajectory for a noisy circuit or would the NetowrkState.sample() handle the trajectories. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
In general, I don't think that there is a way to directly simulate a noisy Cirq circuit with CUDA-Q. Cirq noisy simulation can be translated to CUDA-Q using the For example, This Cirq snippet from its doc: can be translated to CUDA-Q as: Regarding the second question about Cirq - |
Beta Was this translation helpful? Give feedback.
In general, I don't think that there is a way to directly simulate a noisy Cirq circuit with CUDA-Q.
Cirq noisy simulation can be translated to CUDA-Q using the
apply_noisemethod (see the doc here)For example,
This Cirq snippet from its doc:
can be translated to CUDA-Q as:
Regarding the second question about Cirq -
NetworkStateinteroperability, I'd recommend that you post it to …