QEC Decoder¶
quanta.qec.decoder ¶
quanta.qec.decoder -- Quantum error correction decoders.
Decoders take a syndrome (stabilizer measurement results) and determine
which correction to apply. All decoders implement the DecoderBase
abstract interface.
Provided decoders:
-
MWPMDecoder: Minimum Weight Perfect Matching Optimal but O(n^3). Pairs syndrome defects with minimum total weight.
-
UnionFindDecoder: Union-Find based decoder Near-linear O(n·α(n)). Clusters defects using union-find, then corrects each cluster independently.
To create a custom decoder (e.g., ML-based), subclass DecoderBase
and implement the decode() method.
Example
from quanta.qec.decoder import MWPMDecoder, UnionFindDecoder from quanta.qec.surface_code import SurfaceCode decoder = MWPMDecoder() correction = decoder.decode(syndrome, code_distance=3)
DecoderBase ¶
Bases: ABC
Abstract base class for QEC decoders.
All decoders must implement the decode() method. This enables
plugin-based decoder architectures — subclass DecoderBase to
create custom decoders (e.g., ML-based, lookup-table, etc.).
Example
class MyDecoder(DecoderBase): ... @property ... def name(self) -> str: ... return "my-decoder" ... def decode(self, syndrome, code_distance, lattice_size=None): ... # custom decoding logic ... return DecoderResult(correction=(), success=True, weight=0)
Source code in quanta/qec/decoder.py
decode
abstractmethod
¶
decode(
syndrome: ndarray,
code_distance: int,
lattice_size: int | None = None,
stabilizers: list[list[int]] | None = None,
error_type: str = "X",
) -> DecoderResult
Decodes a syndrome into a correction.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
syndrome
|
ndarray
|
Boolean array of excited stabilizers. |
required |
code_distance
|
int
|
Code distance d. |
required |
lattice_size
|
int | None
|
Lattice dimension (default: d). |
None
|
stabilizers
|
list[list[int]] | None
|
Optional list of stabilizer support data qubit lists. |
None
|
error_type
|
str
|
Type of Pauli correction ('X' or 'Z'). |
'X'
|
Returns:
| Type | Description |
|---|---|
DecoderResult
|
DecoderResult with correction qubits and success flag. |
Source code in quanta/qec/decoder.py
DecoderResult
dataclass
¶
Result of decoding a syndrome.
Attributes:
| Name | Type | Description |
|---|---|---|
correction |
tuple[int, ...]
|
Indices of qubits to correct. |
success |
bool
|
Whether the decoder believes correction will succeed. |
weight |
int
|
Total weight (distance) of the correction. |
pauli |
dict[int, str]
|
Mapping of physical qubit index to Pauli correction operator ('X', 'Y', 'Z'). |
pauli_string |
str
|
String representation of Pauli correction on physical qubits. |
Source code in quanta/qec/decoder.py
MWPMDecoder ¶
Bases: DecoderBase
Minimum Weight Perfect Matching decoder using Edmonds' Blossom algorithm.
Pairs syndrome defects (excited stabilizers) such that the total
graph distance is strictly minimized. Uses networkx.min_weight_matching
over a complete bipartite/replicated boundary defect graph to allow
independent boundary matching regardless of defect parity (even or odd).
Algorithm
- Construct defect graph with k defects and k virtual boundary nodes.
- Pairwise distances: shortest path on stabilizer graph (if stabilizers provided) or Manhattan distance on the lattice.
- Virtual boundary-to-boundary edges with weight 0 ensure exact perfect matching for any defect subset.
- Solve minimum weight perfect matching via Edmonds' Blossom algorithm.
- Reconstruct shortest-path Pauli correction chains on primal/dual lattice.
Complexity: O(V^3) where V is the defect count.
Source code in quanta/qec/decoder.py
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 | |
decode ¶
decode(
syndrome: ndarray,
code_distance: int,
lattice_size: int | None = None,
stabilizers: list[list[int]] | None = None,
error_type: str = "X",
) -> DecoderResult
Decodes a syndrome into a correction.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
syndrome
|
ndarray
|
Boolean array of excited stabilizers. |
required |
code_distance
|
int
|
Code distance d. |
required |
lattice_size
|
int | None
|
Lattice dimension (default: d). |
None
|
stabilizers
|
list[list[int]] | None
|
Optional stabilizer qubit support for exact physical mapping. |
None
|
error_type
|
str
|
Pauli operator type ('X' or 'Z'). |
'X'
|
Returns:
| Type | Description |
|---|---|
DecoderResult
|
DecoderResult with correction qubits and success flag. |
Source code in quanta/qec/decoder.py
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 | |
UnionFindDecoder ¶
Bases: DecoderBase
Union-Find based decoder.
Clusters syndrome defects into groups using the union-find data structure, then corrects each cluster. Near-linear time complexity makes it practical for large codes.
Algorithm
- Initialize each defect as its own cluster
- Grow clusters by increasing radius
- Merge overlapping clusters via union-find
- For each fully-grown cluster, apply minimum correction
Complexity: O(n·α(n)) amortized, where α is inverse Ackermann.
Source code in quanta/qec/decoder.py
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 | |
decode ¶
decode(
syndrome: ndarray,
code_distance: int,
lattice_size: int | None = None,
stabilizers: list[list[int]] | None = None,
error_type: str = "X",
) -> DecoderResult
Decodes a syndrome using union-find clustering.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
syndrome
|
ndarray
|
Boolean array of excited stabilizers. |
required |
code_distance
|
int
|
Code distance d. |
required |
lattice_size
|
int | None
|
Lattice dimension (default: d). |
None
|
stabilizers
|
list[list[int]] | None
|
Optional stabilizer qubit support. |
None
|
error_type
|
str
|
Pauli operator type ('X' or 'Z'). |
'X'
|
Returns:
| Type | Description |
|---|---|
DecoderResult
|
DecoderResult with correction qubits and success flag. |
Source code in quanta/qec/decoder.py
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 | |