assembler
¤
Functions:
| Name | Description |
|---|---|
initialize |
compiler context for current task |
schedule |
compile circuits to commands(saved in instruction) |
assemble |
assemble compiled instruction(see schedule) to corresponding devices |
decode |
decode target to hardware channel |
initialize(tid: int, snapshot, **kwds)
¤
compiler context for current task
Note
every task has its own context
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tid
|
int
|
task id |
required |
snapshot
|
_type_
|
frozen snapshot for current task |
required |
Returns:
| Name | Type | Description |
|---|---|---|
ctx |
Context
|
Context to be used in compilation |
Source code in quark/runtime/assembler.py
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | |
schedule(sid: int, instruction: dict[str, list[tuple[str, str, Any, str]]], circuit: list, **kwds) -> tuple
¤
compile circuits to commands(saved in instruction)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sid
|
int
|
step index(starts from 0) |
required |
instruction
|
dict
|
where commands are saved |
required |
circuit
|
list
|
qlisp circuit |
required |
Returns:
| Name | Type | Description |
|---|---|---|
tuple |
tuple
|
instruction, extra arguments |
Source code in quark/runtime/assembler.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 83 84 85 86 87 88 | |
assemble(sid: int, instruction: dict[str, list[tuple[str, str, Any, str]]], **kw)
¤
assemble compiled instruction(see schedule) to corresponding devices
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sid
|
int
|
step index |
required |
instruction
|
dict[str, list[str, str, Any, str]]
|
see |
required |
Raises:
| Type | Description |
|---|---|
TypeError
|
srate should be float, defaults to -1.0 |
Source code in quark/runtime/assembler.py
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 | |
decode(target: str, context: dict, mapping: dict = MAPPING) -> str
¤
decode target to hardware channel
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
target
|
str
|
target to be decoded like Q0.setting.LO |
required |
context
|
dict
|
target location like Q0 |
required |
mapping
|
dict
|
mapping relations. Defaults to MAPPING. |
MAPPING
|
Raises:
| Type | Description |
|---|---|
KeyError
|
mapping not found |
ValueError
|
channel not found |
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
hardware channel like AD.CH1.TraceIQ |
Source code in quark/runtime/assembler.py
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 | |