https://github.com/epiqc/ScaffCC
Tip revision: 66a79944ee4cd116b27bc1a69137276885461db8 authored by Andrew Litteken on 28 September 2021, 15:30:02 UTC
Merge pull request #49 from AndrewLitteken/master
Merge pull request #49 from AndrewLitteken/master
Tip revision: 66a7994
all_gates.qasmh
-------QASM Generation Pass:
module ToffoliImpl_Q_Q_Q(qbit control1, qbit control2, qbit target){
H ( target );
T ( control1 );
T ( control2 );
T ( target );
CNOT ( control2 , control1 );
CNOT ( target , control2 );
CNOT ( control1 , target );
Tdag ( control2 );
T ( target );
CNOT ( control1 , control2 );
Tdag ( control1 );
Tdag ( control2 );
CNOT ( target , control2 );
CNOT ( control1 , target );
CNOT ( control2 , control1 );
H ( target );
}
module main(){
qbit q[3];
cbit c[1];
X ( q[0] );
Y ( q[0] );
Z ( q[0] );
H ( q[0] );
T ( q[0] );
S ( q[0] );
Tdag ( q[0] );
Sdag ( q[0] );
Rx ( q[0] , 3.141590e+00 );
Ry ( q[0] , 3.141590e+00 );
Rz ( q[0] , 3.141590e+00 );
PrepX ( q[0] , 0 );
PrepZ ( q[0] , 0 );
c[0] = MeasX ( q[0] );
c[0] = MeasZ ( q[0] );
CNOT ( q[0] , q[1] );
ToffoliImpl_Q_Q_Q ( q[0] , q[1] , q[2] );
Fredkin ( q[0] , q[1] , q[2] );
}
--------End of QASM generation
