-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdump_qasm.hpp
67 lines (60 loc) · 1.71 KB
/
dump_qasm.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include <vector>
#include <string>
#include <sstream>
#include <fstream>
#include <iostream>
#include "../include/nwq_util.hpp"
using namespace NWQSim;
using namespace std;
vector<string> qasm_strs;
static bool qasm_opened = false;
void push_qasmstr(string filename, string op, IdxType target, IdxType ctrl = -1, IdxType has_param = 0, ValType param = 0, IdxType n_qubits = 0)
{
stringstream ss;
if (op == "measure")
{
ofstream outFile;
if (!qasm_strs.empty())
{
//cout << "-------" << endl;
//for (auto s : qasm_strs)
//{
//cout << s << endl;
//}
//cout << "-------" << endl;
if (!qasm_opened)
{
qasm_opened = true;
outFile.open(filename);
outFile << "OPENQASM 2.0;" << endl
<< "include \"qelib1.inc\";" << endl
<< "qreg q[" << n_qubits << "];" << endl
<< "creg c[" << n_qubits << "];" << endl;
}
else outFile.open(filename, ios_base::app);
for (auto s : qasm_strs)
{
outFile << s << endl;
}
qasm_strs.clear();
}
else
{
outFile.open(filename, ios_base::app);
}
outFile << "measure "
<< "q[" << target << "] -> c[" << target << "];" << endl;
outFile.close();
}
else
{
ss << op;
if (has_param != 0)
ss << "(" << param << ")";
ss << " ";
if (ctrl != -1)
ss << "q[" << ctrl << "],";
ss << "q[" << target << "];";
qasm_strs.push_back(ss.str());
}
}