qubic.run
AbstractCircuitRunner implementation which runs locally on the ZCU216. Used by soc_rpc_server to load and run circuits. Can also be used locally, if user environment is on the ZCU216.
CircuitRunner
Bases: AbstractCircuitRunner
Class for taking a program in binary/ASM form and running it on the FPGA. Currently, this class is meant to be run on the QubiC FPGA PS + pynq system. It will load and configure the specified PL bitfile, and can then be used to configure PL memory and registers, and read back data from experiments.
Attributes:
Name | Type | Description |
---|---|---|
_pl_driver |
PLInterface
|
used for low level access to memory and registers |
loaded_channels |
list
|
channels with a program currently loaded |
Source code in qubic/run.py
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 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 |
|
load_and_run(rawasm, n_total_shots, reads_per_shot=1)
Load circuit described by rawasm "binary", then run for n_total_shots.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rawasm |
dict
|
|
required |
n_total_shots |
int
|
number of shots to run. Program is restarted from the beginning for each new shot |
required |
reads_per_shot |
int
|
number of values per shot per channel to read back from accbuf. If dict, indexed by str(channel_number) (same indices as raw_asm_list). If int, assumed to be the same across channels. Unless multiple circuits were rastered pre-compilation or there is mid-circuit measurement involved this is typically 1 |
1
|
Returns:
Name | Type | Description |
---|---|---|
dict |
Complex IQ shots for each accbuf in chanlist; each array has
shape |
Source code in qubic/run.py
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
|
load_and_run_acq(raw_asm_prog, n_total_shots=1, nsamples=8192, acq_chans={'0': 0, '1': 1}, trig_delay=0, decimator=0, return_acc=False, from_server=False)
Load the program given by raw_asm_prog
and acquire raw (or downconverted) adc traces.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
raw_asm_prog |
Dict
|
ASM binary to run. See load_circuit for details. |
required |
n_total_shots |
int
|
number of shots to run. Program is restarted from the beginning for each new shot |
1
|
nsamples |
int
|
number of samples to read from the acq buffer |
8192
|
acq_chans |
Dict[str, int]
|
current channel mapping is:
|
{'0': 0, '1': 1}
|
trig_delay |
float
|
time to delay acquisition, relative to circuit start. NOTE: this value, when converted to units of clock cycles, is a 16-bit value. So, it maxes out at CLK_PERIOD(2*16) = 131.072e-6 |
0
|
decimator |
int
|
decimation interval when sampling. e.g. 0 means full sample rate, 1 means capture every other sample, 2 means capture every third sample, etc |
0
|
return_acc |
bool
|
if True, return a single acc (integrated + accumulated readout) value per shot, on each loaded channel. Default is False. |
False
|
from_server |
bool
|
set to true if calling over RPC. If True, pack returned acq arrays into byte objects |
False
|
Returns:
Type | Description |
---|---|
tuple | Dict
|
|
Source code in qubic/run.py
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 |
|
load_circuit(rawasm, zero=True, load_commands=True, load_freqs=True, load_envs=True)
Load circuit described by rawasm "binary", which is the output of the final distributed proc assembler stage. Loads command memory, env memory and freq buffer memory, according to specified input parameters. Before circuit is loaded, if zero=True, all channels are zeroed out using zero_command_buf()
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rawasm |
dict
|
keys are channels to load. For each channel, there should be:
|
required |
zero |
bool
|
if True, (default), zero out all cmd buffers before loading circuit |
True
|
load_commands |
bool
|
if True, (default), load command buffers |
True
|
load_freqs |
bool
|
if True, (default), load freq buffers |
True
|
load_envs |
bool
|
if True, (default), load env buffers |
True
|
Source code in qubic/run.py
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 |
|
load_command_buf(core_key, cmd_buf)
Load cmd_buf into the command buffer of core core_key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
core_key |
str
|
str index of core mem to load |
required |
cmd_buf |
bytes | Binary
|
|
required |
Source code in qubic/run.py
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
|
load_env_buf(chan_type, core_key, env_buf)
Load envelope buffer into specified chan_type (qdrv, rdrv, rdlo) and core_key
Parameters:
Name | Type | Description | Default |
---|---|---|---|
chan_type |
str
|
'qdrv', 'rdrv', or 'rdlo' |
required |
core_key |
str
|
str index of core mem to load |
required |
env_buf |
bytes | Binary
|
|
required |
Source code in qubic/run.py
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
|
load_freq_buf(chan_type, core_key, freq_buf)
Load frequency buffer into specified chan_type (qdrv, rdrv, rdlo) and core_key
Parameters:
Name | Type | Description | Default |
---|---|---|---|
chan_type |
str
|
'qdrv', 'rdrv', or 'rdlo' |
required |
core_key |
str
|
str index of core mem to load |
required |
freq_buf |
bytes | Binary
|
|
required |
Source code in qubic/run.py
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 |
|
run_circuit(n_total_shots, reads_per_shot=1, timeout_per_shot=8, from_server=False)
Run the currently loaded program and acquire integrated IQ shots. Program is
run n_total_shots
times, in batches of size shots_per_run
(i.e. shots_per_run
runs of the program
are executed in logic before each readback/restart cycle). The current gateware
is limited to ~1000 reads in its IQ buffer, which generally means
shots_per_run = 1000//reads_per_shot
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n_total_shots |
int
|
number of shots to run. Program is restarted from the beginning for each new shot |
required |
reads_per_shot |
int
|
number of values per shot per channel to read back from accbuf. If |
1
|
timeout_per_shot |
float
|
job will time out if time to take a single shot exceeds this value in seconds (this likely means the job is hanging due to timing issues in the program or gateware) |
8
|
from_server |
bool
|
set to true if calling over RPC. If |
False
|
Returns:
Name | Type | Description |
---|---|---|
dict |
Complex IQ shots for each accbuf in |
Source code in qubic/run.py
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 |
|
run_circuit_acq(n_total_shots=1, nsamples=8192, acq_chans={'0': 0, '1': 1}, trig_delay=0, decimator=0, return_acc=False, from_server=False)
Run the currently loaded program and acquire raw (or downconverted) adc traces.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n_total_shots |
int
|
number of shots to run. Program is restarted from the beginning for each new shot |
1
|
nsamples |
int
|
number of samples to read from the acq buffer |
8192
|
acq_chans |
Dict[str, int]
|
current channel mapping is:
|
{'0': 0, '1': 1}
|
trig_delay |
float
|
time to delay acquisition, relative to circuit start. NOTE: this value, when converted to units of clock cycles, is a 16-bit value. So, it maxes out at CLK_PERIOD(2*16) = 131.072e-6 |
0
|
decimator |
int
|
decimation interval when sampling. e.g. 0 means full sample rate, 1 means capture every other sample, 2 means capture every third sample, etc |
0
|
return_acc |
bool
|
if True, return a single acc (integrated + accumulated readout) value per shot, on each loaded channel. Default is False. |
False
|
from_server |
bool
|
set to true if calling over RPC. If True, pack returned acq arrays into byte objects |
False
|
Returns:
Type | Description |
---|---|
tuple | Dict
|
|
Source code in qubic/run.py
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 |
|
run_circuit_batch(raw_asm_list, n_total_shots, reads_per_shot=1, timeout_per_shot=8, reload_cmd=True, reload_freq=True, reload_env=True, zero_between_reload=True, from_server=False)
Runs a batch of circuits given by a list of raw_asm "binaries". Each circuit is run n_total_shots
times. reads_per_shot
and n_total_shots
are passed directly into run_circuit
, and must
be the same for all circuits in the batch. The parameters reload_cmd
, reload_freq
, reload_env
, and
zero_between_reload
control which of these fields is rewritten circuit-to-circuit (everything is
rewritten initially). Leave these all at True
(default) for maximum safety, to ensure that QubiC
is in a clean state before each run. Depending on the circuits, some of these can be turned off
to save time.
TODO: consider throwing some version of all the args here into a BatchedCircuitRun or somesuch object
Parameters:
Name | Type | Description | Default |
---|---|---|---|
raw_asm_list |
List[Dict]
|
list of raw_asm binaries to run |
required |
n_total_shots |
int
|
number of shots per circuit |
required |
reads_per_shot |
int
|
number of values per shot per channel to read back from accbuf. If dict, indexed by str(channel_number) (same indices as raw_asm_list). If int, assumed to be the same across channels. Unless multiple circuits were rastered pre-compilation or there is mid-circuit measurement involved this is typically 1 |
1
|
timeout_per_shot |
float
|
job will time out if time to take a single shot exceeds this value in seconds (this likely means the job is hanging due to timing issues in the program or gateware) |
8
|
reload_cmd |
bool
|
if True, reload command buffer between circuits |
True
|
reload_freq |
bool
|
if True, reload freq buffer between circuits |
True
|
reload_env |
bool
|
if True, reload env buffer between circuits |
True
|
from_server |
bool
|
set to true if calling over RPC. If True, pack returned s11 arrays into byte objects |
False
|
Returns:
Name | Type | Description |
---|---|---|
dict |
Complex IQ shots for each accbuf in chanlist; each array has
shape |
Source code in qubic/run.py
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 282 |
|
zero_command_buf(core_keys=None)
Loads command memory with dummy asm program: reset phase, output done signal, then idle. This is useful/necessary if a new program is loaded on a subset of cores such that the previous program is not completely overwritten (e.g. you are loading a program that runs only on core 2, and the previous program used cores 2 and 3).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
core_keys |
List[str | int]
|
list of channels (proc cores) to load. Defaults to all channels in currently loaded gateware. |
None
|
Source code in qubic/run.py
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 |
|