-
Updated
Feb 1, 2020 - HTML
qubits
Here are 30 public repositories matching this topic...
-
Updated
Aug 27, 2019 - Python
Good example is teleportation circuit:
QASM:
OPENQASM 2.0;
include "qelib1.inc";
qreg q[3];
creg c0[1];
creg c1[1];
rx (pi/4) q[0];
h q[1];
cx q[1], q[2];
cx q[0], q[1];
h q[0];
measure q[1] -> c1[0];
if(c1==1) x q[2];
measure q[0] -> c0[0];
if(c0==1) z q[2];When exported to Cirq, code currently looks like this:
import cirq
import numpy as np
q = We need to create a Q.History documentation page that is similar in nature to the existing Q class documentation pages. See Q-ComplexNumber.html as an example.
-
Updated
May 21, 2020 - C++
-
Updated
Apr 2, 2018 - Python
-
Updated
May 8, 2019 - Julia
-
Updated
Mar 21, 2019 - C++
-
Updated
Oct 25, 2019 - Python
-
Updated
Nov 4, 2019 - Rust
-
Updated
Aug 14, 2018 - JavaScript
-
Updated
Apr 5, 2020 - JavaScript
-
Updated
Jan 2, 2020 - C
-
Updated
Apr 5, 2020 - Java
-
Updated
Feb 23, 2020 - Python
Right now the use of environment variables to enable CYTHON and OPENMP support is a bit burdensome, streamlining this would be a nice addition.
-
Updated
Jun 19, 2019
-
Updated
Mar 23, 2020 - Java
-
Updated
Mar 2, 2017 - JavaScript
-
Updated
Nov 7, 2019 - Python
-
Updated
Jun 2, 2019 - HTML
-
Updated
Jul 30, 2019
-
Updated
Apr 30, 2020 - JavaScript
Me needs supports.
Read more in FUNDING.TXT.
Milestones:
Step 1: 0.3 BTC
Step 2 1.1 BTC
Step 3 2.5 BTC
Step 4 finish it.
-
Updated
Feb 9, 2020 - C#
-
Updated
Apr 9, 2019 - C#
-
Updated
Apr 8, 2020 - Jupyter Notebook
Improve this page
Add a description, image, and links to the qubits topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the qubits topic, visit your repo's landing page and select "manage topics."


README.md says (example "Pure python quantum computing machinery"):
If you do so, the last line always output:
Because measurement destroyed the state. IMHO, it should be get_noop in