-
Notifications
You must be signed in to change notification settings - Fork 1
/
osc_qasm.py
281 lines (237 loc) · 12.3 KB
/
osc_qasm.py
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
# OSC-Qasm
# A simple OSC Python interface for executing Qasm code.
# Or a simple way to connect creative programming environments like Max (The QAC Toolkit) and Pd with real quantum hardware, using the OSC protocol.
#
# Omar Costa Hamido / Paulo Vitor Itaboraí (2021 - 2022)
# https://github.com/iccmr-quantum/OSC-Qasm
#
from pythonosc import dispatcher, osc_server, udp_client
from qiskit import *
from qiskit.test.mock import *
from qiskit.tools import job_monitor
import argparse
import sys
import eel
import socket
import asyncio
class FileLikeOutputOSC(object):
''' This class emulates a File-Like object
with a "write()" method that can be used
by print() and qiskit.tools.job_monitor()
as an alternative output (replacing sys.stdout)
to send messages through the OSC-Qasm client
usage: print("foo", file=FileLikeOutputOSC())
'''
def __init__(self):
pass
def write(self, text):
if text != f'\n' and text != "": # Skips end='\n'|'' argument messages
print(text) # uiprint back to console
# Send message body back to Max on info channel
client.send_message("/info", text[12:])
class FileLikeErrorOSC(object):
''' This class emulates a File-Like object
with a "write()" method that can be used
to pipe Qiskit error messages through
the OSC-Qasm client
usage: sys.stderr = FileLikeErrorOSC()
'''
def __init__(self):
self.older="" # stderr 'memory'
def write(self, text):
if text != f'\n' and text != "": # Skips end='\n'|'' argument messages
print(text) # uiprint back to console
if text == ERR_SEP and self.older != ERR_SEP and self.older != "": # There is a line like ERR_SEP both at the begining and end of a qiskit error log!
# uiprint the last entry before the ending ERR_SEP
client.send_message("/error", "error in OSC-Qasm server: \n(...) "+self.older+"switch to console to learn more")
elif "KeyboardInterrupt" in text:
# When closing the program with Ctrl+c, There is a 'KeyboardInterrupt' error message.
client.send_message("/info", "OSC-Qasm Server has Stopped.")
self.older=text # Update memory
def run_circuit(qc, shots, backend_name):
uiprint("Running circuit on {}...".format(backend_name))
client.send_message("/info", "Running circuit on {}...".format(backend_name) )
flosc = FileLikeOutputOSC() # Use this only for job_monitor output
if backend_name != 'qasm_simulator':
if backend_name in ('FakeAlmaden', 'FakeArmonk', 'FakeAthens', 'FakeBelem', 'FakeBoeblingen', 'FakeBogota', 'FakeBrooklyn', 'FakeBurlington', 'FakeCambridge', 'FakeCambridgeAlternativeBasis', 'FakeCasablanca', 'FakeEssex', 'FakeGuadalupe', 'FakeJakarta', 'FakeJohannesburg', 'FakeLagos', 'FakeLima', 'FakeLondon', 'FakeManhattan', 'FakeManila', 'FakeMelbourne', 'FakeMontreal', 'FakeMumbai', 'FakeOurense', 'FakeParis', 'FakePoughkeepsie', 'FakeQuito', 'FakeRochester', 'FakeRome', 'FakeRueschlikon', 'FakeSantiago', 'FakeSingapore', 'FakeSydney', 'FakeTenerife', 'FakeTokyo', 'FakeToronto', 'FakeValencia', 'FakeVigo', 'FakeYorktown'):
backend_name+='()'
backend = eval(backend_name) # this is definitely a security hazard... use at your own risk!
# a very interesting alternative is to use: backend = globals()[backend_name]
available_qubits = backend.configuration().n_qubits
requested_qubits = qc.num_qubits
if requested_qubits > available_qubits: # verify if the qubit count is compatible with the selected backend
client.send_message("/error", "The circuit submitted is requesting {} qubits but the {} backend selected only has {} available qubits.".format(requested_qubits,backend_name[:-2],available_qubits) )
uiprint('The circuit submitted is requesting {} qubits but the {} backend selected only has {} available qubits.'.format(requested_qubits,backend_name[:-2],available_qubits))
sys.exit()
job = execute(qc, shots=shots, backend=backend)
pass
else: #we then must be naming a realdevice
if not provider: #for which we definitely need credentials! D:
client.send_message("/error", "You need to start OSC-Qasm server with the following arguments: --token (--hub, --group, --project).")
uiprint('You need to start OSC-Qasm server with the following arguments: --token (--hub, --group, --project).')
sys.exit()
backend = provider.get_backend(backend_name)
job = execute(qc, shots=shots, backend=backend)
job_monitor(job, output=flosc, line_discipline="") # 'flosc' (FileLikeOutputOSC) reroutes the output from stdout to the OSC client
else:
backend = Aer.get_backend('qasm_simulator')
job = execute(qc, shots=shots, backend=backend)
uiprint("Done!") # not working
return job.result().get_counts()
def parse_qasm(*args):
global qc
qc=QuantumCircuit().from_qasm_str(args[1])
if len(args)>2:
shots = args[2]
pass
else:
shots=1024
if len(args)>3:
backend_name = args[3]
else:
backend_name='qasm_simulator'
counts = run_circuit(qc, shots, backend_name)
uiprint("Sending result counts back to Client")
client.send_message("/info", "Retrieving results from OSC-Qasm..." )
# list comprehension that converts a Dict into an
# interleaved string list: [key1, value1, key2, value2...]
sorted_counts = {}
for key in sorted(counts):
#uiprint ("%s: %s" % (key, counts[key]) )
sorted_counts[key]=counts[key]
counts_list = [str(x) for z in zip(sorted_counts.keys(), sorted_counts.values()) for x in z]
# and then into a string
counts_list = " ".join(counts_list)
client.send_message("/counts", counts_list)
# Mapping the OSC Server callback function
callback = dispatcher.Dispatcher()
callback.map("/QuTune", parse_qasm)
def CLI(UDP_IP, RECEIVE_PORT, SEND_PORT, TOKEN, HUB, GROUP, PROJECT, REMOTE):
global client, provider, ERR_SEP
ERR_SEP = '----------------------------------------' # For FileLikeErrorOSC() class
provider=None
local_ip="127.0.0.1"
if TOKEN:
IBMQ.enable_account(TOKEN, 'https://auth.quantum-computing.ibm.com/api', HUB, GROUP, PROJECT)
provider=IBMQ.get_provider(hub=HUB, group=GROUP, project=PROJECT)
pass
if UDP_IP=="localhost":
UDP_IP="127.0.0.1"
pass
# find local IP address
if REMOTE == None:
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(("8.8.8.8", 80))#this throws an error if machine is not connected to any network
local_ip = s.getsockname()[0]#this prints 0.0.0.0 if machine is not connected to any network
pass
elif REMOTE != False:
local_ip = REMOTE
pass
#OSC server and client
server = osc_server.ThreadingOSCUDPServer((local_ip, RECEIVE_PORT), callback)
client = udp_client.SimpleUDPClient(UDP_IP, SEND_PORT)
client.send_message("/info", "OSC-Qasm is now running")
uiprint("Server Receiving on {} port {}".format(server.server_address[0], server.server_address[1]))
uiprint("Server Sending back on {} port {}".format(client._address, client._port))
server.serve_forever()
async def server_process(args):
global client, provider, ERR_SEP
ERR_SEP = '----------------------------------------' # For FileLikeErrorOSC() class
provider=None
local_ip="127.0.0.1"
#OSC server and client
#parsing arguments from GUI
wUDP_IP = args[0]
wRECEIVE_PORT = int(args[1])
wSEND_PORT = int(args[2])
wTOKEN = args[3]
wHUB = args[4]
wGROUP = args[5]
wPROJECT = args[6]
wREMOTE = args[7]
if wTOKEN != "false":
IBMQ.enable_account(wTOKEN, 'https://auth.quantum-computing.ibm.com/api', wHUB, wGROUP, wPROJECT)
provider=IBMQ.get_provider(hub=wHUB, group=wGROUP, project=wPROJECT)
pass
if wUDP_IP=="localhost":
wUDP_IP="127.0.0.1"
pass
# find local IP address
if wREMOTE == "None":
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(("8.8.8.8", 80))#this throws an error if machine is not connected to any network
local_ip = s.getsockname()[0]#this prints 0.0.0.0 if machine is not connected to any network
pass
elif wREMOTE != "false":
local_ip = wREMOTE
pass
server = osc_server.AsyncIOOSCUDPServer((local_ip, wRECEIVE_PORT), callback, asyncio.get_event_loop())
transport, protocol = await server.create_serve_endpoint()
client = udp_client.SimpleUDPClient(wUDP_IP, wSEND_PORT)
client.send_message("/info", "OSC-Qasm is now running")
uiprint("Server Receiving on {} port {}".format(server._server_address[0], server._server_address[1]))
uiprint("Server Sending back on {} port {}".format(client._address, client._port))
while server_on:
eel.sleep(0.333)
await asyncio.sleep(0.333)
transport.close()
uiprint("Server has stopped now.")
client.send_message("/info", "OSC-Qasm Server has Stopped.")
def GUI():
@eel.expose
def pythonPrint(message):
print("received",message)
@eel.expose
def start(*args):
global server_on
server_on = True
asyncio.run(server_process(args))
@eel.expose
def stop():
global server_on
server_on = False
eel.start('index.html', cmdline_args=['-incognito'],size=(840,480),block=True)
if __name__ == '__main__':
global HEADLESS
p = argparse.ArgumentParser()
p.add_argument('receive_port', type=int, nargs='?', default=1416, help='The port where the OSC-Qasm Server will listen for incoming messages. Default port is 1416')
p.add_argument('send_port', type=int, nargs='?', default=1417, help='The port that OSC-Qasm will use to send messages back to the Client (the client\'s listening port). Default port is 1417')
p.add_argument('ip', nargs='?', default='127.0.0.1', help='The IP address to where the retrieved results will be sent to (Where the Client is located). Default IP is 127.0.0.1 (localhost)')
p.add_argument('--token', help='If you want to run circuits on real quantum hardware, you need to provide your IBMQ token (see https://quantum-computing.ibm.com/account)')
p.add_argument('--hub', help='If you want to run circuits on real quantum hardware, you need to provide your IBMQ Hub')
p.add_argument('--group', help='If you want to run circuits on real quantum hardware, you need to provide your IBMQ Group')
p.add_argument('--project', help='If you want to run circuits on real quantum hardware, you need to provide your IBMQ Project')
p.add_argument('--remote', nargs='?', default=False, help='Declare this as a remote server. In this case, OSC-Qasm will be listenning to messages coming into the network adapter address. If there is a specific network adapter IP you want to listen in, add it as an argument here')
p.add_argument('--headless', nargs='?', type=bool, const=True, default=False, help='Run OSC-Qasm in headless mode. This is useful if you don\'t want to launch the GUI and only work in the terminal.')
args = p.parse_args()
# Route sys.stderr to OSC
flerr = FileLikeErrorOSC()
sys.stderr = flerr
if args.token:
if not args.hub or not args.group or not args.project:
if not args.hub and not args.group and not args.project:
args.hub='ibm-q'
args.group='open'
args.project='main'
pass
else:
raise ValueError('You need to specify both --hub, --group, and --project arguments.')
args.hub=None
args.group=None
args.project=None
HEADLESS = args.headless
if not HEADLESS:
eel.init('GUI')
def uiprint(*message):
if HEADLESS:
print(*message)
else:
eel.print(*message)
uiprint('================================================')
uiprint(' OSC_QASM by OCH & Itaborala @ QuTune (v2.1.2) ')
uiprint(' https://iccmr-quantum.github.io ')
uiprint('================================================')
if HEADLESS:
CLI(args.ip, args.receive_port, args.send_port, args.token, args.hub, args.group, args.project, args.remote)
else:
GUI()