Logical mvp
append_measurements_and_annotations
append_measurements_and_annotations(
mt: Method,
m2dets: list[list[int]] | None,
m2obs: list[list[int]] | None,
) -> None
Append terminal measurement, detector, and observable IR statements to a squin kernel.
The method is mutated in-place.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mt
|
Method
|
A squin |
required |
m2dets
|
list[list[int]] | None
|
Binary matrix of shape |
required |
m2obs
|
list[list[int]] | None
|
Binary matrix of shape |
required |
Source code in .venv/lib/python3.12/site-packages/bloqade/lanes/logical_mvp.py
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 | |
compile_squin_to_move
compile_squin_to_move(
mt: Method,
transversal_rewrite: bool = False,
no_raise: bool = True,
layout_heuristic: LayoutHeuristicABC | None = None,
insert_return_moves: bool = True,
)
Compile a squin kernel to the move dialect.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mt
|
Method
|
The squin kernel to compile. |
required |
transversal_rewrite
|
bool
|
Whether to apply transversal rewrite rules. Defaults to False. |
False
|
no_raise
|
bool
|
Whether to suppress exceptions during compilation. Defaults to True. |
True
|
layout_heuristic
|
LayoutHeuristicABC | None
|
Layout heuristic for atom
placement. Defaults to |
None
|
insert_return_moves
|
bool
|
Whether to insert return moves at the end of the program. Defaults to True. |
True
|
Returns:
| Type | Description |
|---|---|
|
ir.Method: The compiled move dialect method. |
Source code in .venv/lib/python3.12/site-packages/bloqade/lanes/logical_mvp.py
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 | |
compile_squin_to_move_and_visualize
compile_squin_to_move_and_visualize(
mt: Method,
interactive: bool = True,
transversal_rewrite: bool = False,
animated: bool = False,
no_raise: bool = True,
layout_heuristic: LayoutHeuristicABC | None = None,
)
Compile a squin kernel to moves and visualize the program.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mt
|
Method
|
The squin kernel to compile. |
required |
interactive
|
bool
|
Whether to display the visualization interactively. Defaults to True. |
True
|
transversal_rewrite
|
bool
|
Whether to apply transversal rewrite rules. Defaults to False. |
False
|
animated
|
bool
|
Whether to use animated visualization for displaying moves. Defaults to False. |
False
|
no_raise
|
bool
|
Whether to suppress exceptions during compilation. Defaults to True. |
True
|
layout_heuristic
|
LayoutHeuristicABC | None
|
Layout heuristic for atom
placement. Defaults to |
None
|
Source code in .venv/lib/python3.12/site-packages/bloqade/lanes/logical_mvp.py
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 | |
compile_task
compile_task(
logical_kernel: Method | Callable[..., Any],
m2dets: list[list[int]] | None = None,
m2obs: list[list[int]] | None = None,
)
Compile a logical kernel into physical move artifacts.
Handles CUDAQ kernel detection/conversion, squin kernel validation, squin-to-move compilation, architecture spec generation, and post-processing extraction.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
logical_kernel
|
Method | Callable[..., Any]
|
A squin |
required |
m2dets
|
list[list[int]] | None
|
Binary measurement-to-detector matrix. For CUDA-Q kernels,
defaults to Steane [[7,1,3]] detectors if |
None
|
m2obs
|
list[list[int]] | None
|
Binary measurement-to-observable matrix. For CUDA-Q kernels,
defaults to Steane [[7,1,3]] observables if |
None
|
Returns:
| Type | Description |
|---|---|
|
A tuple of ``(logical_squin_kernel, physical_arch_spec, |
|
|
physical_move_kernel, post_processing)``. |
Source code in .venv/lib/python3.12/site-packages/bloqade/lanes/logical_mvp.py
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 | |
compile_to_physical_squin_noise_model
compile_to_physical_squin_noise_model(
mt: Method,
noise_model: LogicalNoiseModelABC | None = None,
no_raise: bool = True,
layout_heuristic: LayoutHeuristicABC | None = None,
) -> ir.Method
Compile a logical squin kernel to a physical squin kernel with noise channels inserted.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mt
|
Method
|
The logical squin method to compile. |
required |
noise_model
|
LogicalNoiseModelABC | None
|
The logical noise model to insert
during compilation. Defaults to |
None
|
no_raise
|
bool
|
Whether to suppress exceptions during compilation. Defaults to True. |
True
|
layout_heuristic
|
LayoutHeuristicABC | None
|
Layout heuristic for atom
placement. Defaults to |
None
|
Returns:
| Type | Description |
|---|---|
Method
|
ir.Method: The compiled physical squin method with noise channels. |
Source code in .venv/lib/python3.12/site-packages/bloqade/lanes/logical_mvp.py
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 | |
compile_to_stim_program
compile_to_stim_program(
mt: Method,
noise_model: LogicalNoiseModelABC | None = None,
no_raise: bool = True,
layout_heuristic: LayoutHeuristicABC | None = None,
) -> str
Compile a logical squin kernel to a Stim program string with noise channels inserted.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mt
|
Method
|
The logical squin method to compile. |
required |
noise_model
|
NoiseModelABC | None
|
The noise model to insert during
compilation. Defaults to |
None
|
no_raise
|
bool
|
Whether to suppress exceptions during compilation. Defaults to True. |
True
|
layout_heuristic
|
LayoutHeuristicABC | None
|
Layout heuristic for atom
placement. Defaults to |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
The compiled Stim program as a string. |
Source code in .venv/lib/python3.12/site-packages/bloqade/lanes/logical_mvp.py
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 | |
run_squin_kernel_validation
run_squin_kernel_validation(mt: Method)
Run validation checks on a Squin kernel method.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mt
|
Method
|
The Squin kernel method to validate. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
ValidationResult |
A validation result object containing the validation errors, if they exist |
Note: To trigger an error run run_squin_kernel_validation(mt).raise_if_invalid().
Source code in .venv/lib/python3.12/site-packages/bloqade/lanes/logical_mvp.py
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | |
transversal_rewrites
transversal_rewrites(mt: Method)
Apply transversal rewrite rules to a squin method.
Expands logical operations into their transversal (physical qubit) equivalents using the Steane [[7,1,3]] transversal map. The method is rewritten in place.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
mt
|
Method
|
The squin method to rewrite. |
required |
Returns:
| Type | Description |
|---|---|
|
ir.Method: The rewritten method (same object, mutated in place). |
Source code in .venv/lib/python3.12/site-packages/bloqade/lanes/logical_mvp.py
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 | |