OpenQASM 3.0 Playground
Run
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Bell State OPENQASM 3.0; gate h q { U(pi/2.0, 0, pi) q; } gate cx c, t { ctrl @ U(pi, 0, pi) c, t; } qubit[2] q; reset q; h q[0]; cx q[0], q[1]; measure q;
Quantum States
Run your OpenQASM code to see quantum states here
Any unitary operation requires exponential resources with respect to the number of qubits.
This playground supports up to 10 qubits. If you want to lift this limitation, please self-host.
There are several other limitations. For more details, please refer to
the issues
on GitHub.