Skip to main content

Production-grade Rust/Python quantum error correction decoder. 25+ decoder families: MWPM Blossom, Union-Find, BP-OSD, LDPC/qLDPC, belief-matching, CUDA/GPU batch decoding, 7-tier AutoDecoder fallback. PyMatching/Stim/Sinter compatible. Ed25519 license verification.

Project description

QECTOR Decoder v3

CI PyPI Python License

Production-grade quantum error correction decoding library — Python + Rust.
Copyright © 2026 Guillaume Lessard / iD01t Productions. All Rights Reserved.

PyMatching-compatible MWPM validation · Belief-matching accuracy mode · BP-OSD for LDPC/qLDPC · CPU/GPU batch decoding · 7-tier self-debugging fallback engine · Ed25519 cryptographic license verification · Artifact-backed benchmark evidence

Website · PyPI · Commercial licensing


Install

pip install qector-decoder-v3

Supported: Python 3.9–3.13 on Linux x86_64, Windows x64, and macOS arm64.

Optional extras:

pip install "qector-decoder-v3[stim]"    # Stim/Sinter/PyMatching/LDPC ecosystem
pip install "qector-decoder-v3[bench]"   # Benchmark harness (psutil, matplotlib, scipy)
pip install "qector-decoder-v3[all]"     # Full validation environment

Quick start

import numpy as np
from qector_decoder_v3 import UnionFindDecoder, BlossomDecoder

check_to_qubits = [[0, 1], [1, 2], [2, 3], [3, 4]]
n_qubits = 5
syndrome = np.array([0, 1, 0, 0], dtype=np.uint8)

fast = UnionFindDecoder(check_to_qubits, n_qubits)
print(fast.decode(syndrome))

mwpm = BlossomDecoder(check_to_qubits, n_qubits)
print(mwpm.decode(syndrome))

Batch decoding

from qector_decoder_v3 import BatchDecoder, CUDABatchDecoder

checks = [[0, 1], [1, 2], [2, 3], [3, 4]]
syndromes = np.random.randint(0, 2, size=(4096, 4), dtype=np.uint8)

cpu = BatchDecoder(checks, n_qubits=5)
corrections = cpu.parallel_batch_decode(syndromes)

if CUDABatchDecoder.is_available():
    gpu = CUDABatchDecoder(checks, n_qubits=5)
    corrections = gpu.batch_decode(syndromes)

AutoDecoder — 7-tier self-debugging fallback

from qector_decoder_v3 import AutoDecoder

decoder = AutoDecoder(checks, n_qubits=5)
corrections = decoder.batch_decode(syndromes)

# Inspect backend health
print(decoder._diag.backend_health)
print(decoder._diag.active_backend)

Stim workflow

import stim
from qector_decoder_v3 import BlossomDecoder
from qector_decoder_v3.stim_compat import from_stim_detector_error_model

circuit = stim.Circuit.generated(
    "surface_code:rotated_memory_z", distance=5, rounds=5,
    after_clifford_depolarization=0.005,
)
dem = circuit.detector_error_model(decompose_errors=True)
checks, n_qubits = from_stim_detector_error_model(dem)
decoder = BlossomDecoder(checks, n_qubits)

BP-OSD for LDPC / qLDPC codes

from qector_decoder_v3 import codes
from qector_decoder_v3.bposd import BpOsdDecoder

cx, cz = codes.bivariate_bicycle_code(6, 6, ...)
decoder = BpOsdDecoder(cx.parity_check_matrix(), error_rate=0.05, osd_order=0)
correction = decoder.decode(syndrome)

License verification

import os
from qector_decoder_v3.license import verify_license_token

token = os.environ.get("QECTOR_LICENSE", "")
is_valid = verify_license_token(token)
# Or with explicit email check:
is_valid = verify_license_token(token, customer_email="user@example.com")

Sinter integration

import sinter
from qector_decoder_v3.sinter_compat import qector_sinter_decoders

samples = sinter.collect(
    num_workers=4, tasks=tasks,
    decoders=["qector_belief", "qector_blossom", "qector_unionfind"],
    custom_decoders=qector_sinter_decoders(),
)

Decoder families

Module Best use Status
UnionFindDecoder Low-latency approximate decoding Stable
FastUnionFindDecoder Optimized Union-Find hot path Stable
BlossomDecoder Exact MWPM / PyMatching-parity validation Stable
SparseBlossomDecoder Faster near-optimal matching Experimental
BeliefMatching Correlated-noise accuracy experiments Research
BpOsdDecoder LDPC / qLDPC decoding Experimental
BatchDecoder / CPUBatchDecoder CPU batch Monte Carlo sweeps Stable
CUDABatchDecoder CUDA batch decoding Build/runtime dependent
OpenCLBatchDecoder OpenCL batch decoding Build/runtime dependent
AutoDecoder 7-tier self-debugging backend fallback Stable
PredecodedDecoder Easy-syndrome prefiltering Experimental
DecoderPool Multi-process batch decoding Stable
get_decoder / clear_decoder_cache Cached decoder factory Stable
decode_mmap Out-of-core memmap decoding Stable
DecodeResult / decode_with_diagnostics Structured decode results Stable
Workbench High-level orchestration Stable
SlidingWindowDecoder Multi-round streaming Experimental
StreamingDecoder Continuous streaming sessions Experimental
HybridDecoder Union-Find + Blossom fallback routing Experimental
LookupTableDecoder Precomputed small-code lookup Experimental
NeuralPredecoder Learned predecoder front-end Research
GNNPredecoder Graph neural network predecoder Research
GNNTrainer Training harness for GNNPredecoder Research
LERBenchmark Logical error rate benchmarking Experimental
stim_compat Stim circuit / DEM conversion Stable utility
sinter_compat Sinter custom decoder integration Stable utility
rest_api Local decoding service Local/partner review

Self-Auto-Debug Backend Architecture (v0.6.8)

AutoDecoder implements a 7-tier fault-tolerant self-debugging fallback engine that automatically selects, monitors, and recovers from hardware failures:

Tier Backend Description
1 CUDA Batch GPU batch decoding via NVRTC-compiled kernels
2 OpenCL Batch Cross-vendor GPU batch decoding
3 CPU Rayon Multi-threaded parallel CPU batch decoding
4 CPU Batch Single-threaded CPU batch decoding
5 CPU Single Per-syndrome CPU decoding
6 Blossom Exact MWPM fallback (guaranteed correctness)
7 Lookup Table / Python Pure-Python last-resort fallback

Key features:

  • Automatic error trapping: Hardware exceptions (CUDA OOM, driver crashes, memory limits) are caught, logged, and bypassed transparently.
  • Health scoring: Each backend tracks its health status. Failed backends are automatically suspended.
  • Seamless recovery: reset_backend_health() re-enables all backends for dynamic recovery.
  • Diagnostic logging: All fallback events and error details are recorded for debugging.

Licensing & Activation (v0.6.8)

Ed25519 Cryptographic License Verification

QECTOR uses offline Ed25519 signature verification for license tokens. No network calls required.

Token format: Self-contained 3-part tokens ({receipt_id}.{email_b64}.{signature_b64}) embed the customer email and cryptographic signature for fully offline verification.

Variable Description
QECTOR_LICENSE Set to a valid Ed25519-signed license token to activate
QECTOR_SILENT Set to 1 to suppress the startup licensing notice

Override tokens: academic and commercial accepted for development and testing.

Tuning environment variables

These change decoder behaviour at construction time. Two of them affect matching quality, and therefore logical error rate — set them deliberately, and record them alongside any benchmark you publish.

Variable Default Effect
QECTOR_BLOSSOM_K_MULT 2.0 Candidate-neighbour multiplier for sparse MWPM: k = max(12, ceil(mult · sqrt(n_defects))). Affects accuracy. Lowering it reduces latency but can exclude the optimal partner on dense instances, producing a heavier (sub-optimal) matching. 2.0 is the tuned minimum that preserved exact-MWPM parity at d ≥ 15.
QECTOR_BLOSSOM_INTRA_PAR auto Force intra-decode parallelism for candidate discovery. 0 disables, 1 forces. Unset selects automatically when the graph has ≥ 64 nodes (roughly d ≥ 9 for rotated surface codes). Performance only — output is bit-identical either way.
QECTOR_BLOSSOM_INTRA_THREADS unset Size a dedicated Rayon pool for candidate discovery, independent of the global batch pool. Unset or < 1 uses the global pool. Performance only.
QECTOR_CUDA_DEVICE_ID 0 Which CUDA device the native batch/BP-OSD decoders bind to.
QECTOR_OPENCL_DEVICE_ALLOW unset Comma-separated substrings matched case-insensitively against OpenCL device names, e.g. nvidia,geforce. Unset accepts any device. Use it to avoid selecting an integrated GPU on multi-device hosts.

Only QECTOR_BLOSSOM_K_MULT and QECTOR_OPENCL_DEVICE_ALLOW can change results (matching quality and device selection respectively); the rest are purely throughput knobs.

Stripe Integration

Commercial licenses are issued automatically via Stripe Checkout:

  1. Customer completes payment at qector.store
  2. Stripe fires a checkout.session.completed webhook
  3. The server generates an Ed25519-signed license token
  4. Token is delivered to the customer

Direct purchase: Buy Commercial License


v0.6.9 highlights

Area Description
Belief matching from_numpy_h decoders no longer return empty corrections — output is a faithful length-n_qubits vector (H @ corr == syndrome)
BP-OSD accuracy Exact log-domain sum-product BP by default; true combination-sweep OSD-1/2 via osd_order
GNN belief matching GNNBeliefMatcher end-to-end GNN-guided MWPM with faithfulness fallback
Licence hardening Malformed tokens return False instead of raising; v2 tokens carry tier + expiry inside the signature
Payments Dynamic payment methods restored at checkout (Link, wallets, local methods)
Docs Tuning env vars documented, incl. which change results vs. throughput; docs/RELEASING.md added

v0.6.8 highlights

Area Description
Self-Auto-Debug Backend 7-tier fault-tolerant fallback engine with automatic error trapping and health scoring
Ed25519 License Verification Offline cryptographic license token validation
Stripe License Fulfillment Automated commercial license issuance via Stripe Checkout
SparseBlossom bugfix All decoded syndromes now bit-identical to MWPM
BPOSD timeout bugfix Wall-clock deadline now honored from the first iteration
OpenCL health check fix Child-process NameError in _opencl_health_check() fixed
k_nearest_via_radix Public event-driven candidate-edge discovery
MCP server expansion 5 new tools, expanded decoder info
Cross-decoder test suite Covers all 11 decoder families
SafeTensors round-trip tests Full dtype, shape, and error-path coverage
Dead-code elimination 8 warnings eliminated across the crate

Validated benchmark evidence

MWPM parity against PyMatching

Artifact: benchmark_results/stim_ler_d13_d15.md

Environment: Windows 10/11 x64, Python 3.11+, QECTOR v0.6.4, PyMatching 2.4+, Stim 1.16+, 20,000 shots/distance.

Distance QECTOR Blossom LER PyMatching LER QECTOR us/shot PyMatching us/shot
13 0.00075 0.00075 820.46 81.12
15 0.00050 0.00050 1965.15 203.20

Interpretation: QECTOR Blossom matched PyMatching logical-error counts. PyMatching remains faster for standard MWPM latency.

Belief-matching accuracy

Artifact: benchmark_results/competitive_belief.md

Distance PyMatching LER QECTOR MWPM LER QECTOR Belief LER
5 0.00767 0.00767 0.00500
7 0.00600 0.00600 0.00300

Belief-matching improved observed LER at d=5 and d=7 but is dramatically slower — an accuracy/research mode, not a production latency path.

GPU bit-identity

Artifact: benchmark_results/gpu_extensive.json

Claim Result
CUDA bit-identical to CPU True
OpenCL bit-identical to CPU True
All tested GPU paths faithful True

Native memory profile (distance 13, batch 16,384)

Artifact: benchmark_results/native_memory.json

Decoder RSS delta MiB
cpu_batch 9.41
blossom 5.88
fast_union_find 0.02
cuda_batch 2.67

Reproduce benchmarks

# MWPM / PyMatching comparison
python scripts/competitive_stim_ler.py --distances 3 5 7 9 11 13 15 --shots 40000

# Belief-matching comparison
python scripts/competitive_belief_matching.py --distances 3 5 7 --shots 3000 --no-ref

# GPU correctness
python scripts/gpu_extensive_test.py --distances 3 5 7 9 11 13 --batches 1 64 1024 4096 16384 65536 --error-rate 0.05

# Native memory profile
python scripts/native_memory_profile.py --distances 5 9 13 --batch 16384

Benchmark results are hardware, driver, compiler, and workload dependent. Regenerate before quoting performance numbers.


Architecture

qector_decoder_v3/
+-- Rust core (proprietary, injected during CI build or under license)
|   +-- Union-Find / Blossom / SparseBlossom engines
|   +-- CPU batch engine (SIMD-accelerated on x86)
|   +-- CUDA / OpenCL batch paths
|   +-- DEM collapse and Stim integration
|
+-- Python layer (open source in this repository)
    +-- __init__.py, backend.py, dem.py
    +-- belief_matching.py, bposd.py
    +-- predecoder.py, codes.py
    +-- stim_compat.py, sinter_compat.py
    +-- qiskit_plugin.py, rest_api.py
    +-- workbench.py

REST API (local use only)

pip install "qector-decoder-v3[stim]" fastapi uvicorn
python -m qector_decoder_v3.rest_api
curl -X POST http://localhost:8000/decode \
  -H "Content-Type: application/json" \
  -d '{"check_to_qubits":[[0,1],[1,2],[2,3],[3,4]],"syndrome":[0,1,0,0]}'

For local experiments and controlled deployments only. Not hardened for public SaaS.


Limits and boundaries

Area Boundary
MWPM latency PyMatching remains faster on standard surface-code MWPM in the provided artifacts
Belief-matching Accuracy/research mode — can improve LER but much slower
GPU performance Correctness artifact-backed for tested machines; speedup not universal
OpenCL Depends on build configuration; confirm locally
SparseBlossom Near-optimal, not exact MWPM — use BlossomDecoder for exact
UnionFind Fast approximate path; not universal for arbitrary graphs
REST/gRPC/MCP Not hardened as public SaaS without separate security review

Licensing

QECTOR Decoder v3 is source-available. Personal, academic, educational, and non-commercial research use is allowed. Company use, funded institutional work, SaaS, hosted API deployment, OEM integration, redistribution, paid consulting, or commercial benchmarking requires a commercial license.

DOI references

@software{lessard2026qector,
  author  = {Guillaume Lessard},
  title   = {{QECTOR Decoder v3}: Rust/Python Quantum Error Correction Decoding Platform},
  year    = {2026},
  version = {0.6.9},
  url     = {https://www.qector.store},
  note    = {Source-available. Commercial license required for commercial use.}
}

Copyright © 2026 Guillaume Lessard / iD01t Productions. All rights reserved.

https://www.qector.store · admin@qector.store

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

qector_decoder_v3-0.6.9-cp313-cp313-win_amd64.whl (657.4 kB view details)

Uploaded CPython 3.13Windows x86-64

qector_decoder_v3-0.6.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (753.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

qector_decoder_v3-0.6.9-cp313-cp313-macosx_11_0_arm64.whl (675.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

qector_decoder_v3-0.6.9-cp312-cp312-win_amd64.whl (657.3 kB view details)

Uploaded CPython 3.12Windows x86-64

qector_decoder_v3-0.6.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (753.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

qector_decoder_v3-0.6.9-cp312-cp312-macosx_11_0_arm64.whl (675.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

qector_decoder_v3-0.6.9-cp311-cp311-win_amd64.whl (656.6 kB view details)

Uploaded CPython 3.11Windows x86-64

qector_decoder_v3-0.6.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (753.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

qector_decoder_v3-0.6.9-cp311-cp311-macosx_11_0_arm64.whl (681.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

qector_decoder_v3-0.6.9-cp310-cp310-win_amd64.whl (657.0 kB view details)

Uploaded CPython 3.10Windows x86-64

qector_decoder_v3-0.6.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (753.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

qector_decoder_v3-0.6.9-cp310-cp310-macosx_11_0_arm64.whl (681.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

qector_decoder_v3-0.6.9-cp39-cp39-win_amd64.whl (658.2 kB view details)

Uploaded CPython 3.9Windows x86-64

qector_decoder_v3-0.6.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (754.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

qector_decoder_v3-0.6.9-cp39-cp39-macosx_11_0_arm64.whl (682.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file qector_decoder_v3-0.6.9-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for qector_decoder_v3-0.6.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6d73e902ec0a5993356451ef6ba1d8f9f31aa0778d004d5a7ce60dbd34f0b13b
MD5 ccaeeaad7206620b332c8cb0f08ba79a
BLAKE2b-256 817cf7b8bc8dd9eb03a4738a8740279ef31511549299458e4b37ce234a53fff3

See more details on using hashes here.

Provenance

The following attestation bundles were made for qector_decoder_v3-0.6.9-cp313-cp313-win_amd64.whl:

Publisher: release-build.yml on GuillaumeLessard/qector-decoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qector_decoder_v3-0.6.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qector_decoder_v3-0.6.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07f540c69a96106977fabd6f05b8ad6f9a2011e858ace24a148d2e1667f57e7f
MD5 522a9b9c2414fca2634add50ee74ea20
BLAKE2b-256 bba4927dd60d7bd0f00f126021848d61c052a46827f6e35256eb0befc68b7c88

See more details on using hashes here.

Provenance

The following attestation bundles were made for qector_decoder_v3-0.6.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-build.yml on GuillaumeLessard/qector-decoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qector_decoder_v3-0.6.9-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qector_decoder_v3-0.6.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2015123135ecec0978fb9c15860da4b6afe3f14ca612a1062377ef99079cf87
MD5 904ab19125b2789e2aea1d7c9076888f
BLAKE2b-256 900651698946a0c51af64daa7788a21202e7510487d1238a54b8389baef532f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for qector_decoder_v3-0.6.9-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release-build.yml on GuillaumeLessard/qector-decoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qector_decoder_v3-0.6.9-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for qector_decoder_v3-0.6.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f70de04ce692d8b2c0d78983bd33fb7c3e5d92435a5d456f3cc40258bc82a23d
MD5 0f7dc69c0469ab10bca94d69fc291832
BLAKE2b-256 34d8f2ade5e9634b51f64bc5ce64f64652be8293bc82cee1c982726dde07979c

See more details on using hashes here.

Provenance

The following attestation bundles were made for qector_decoder_v3-0.6.9-cp312-cp312-win_amd64.whl:

Publisher: release-build.yml on GuillaumeLessard/qector-decoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qector_decoder_v3-0.6.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qector_decoder_v3-0.6.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8a57547ec14861c63cea5129f28b4614020659ca8901721bb85cf9fe6d67313
MD5 416977242b294f09c8a0395291fcb1c5
BLAKE2b-256 17ebe89259308b2069c638702e367cd8c9b3933f948833e8906f0dc5f6f04a54

See more details on using hashes here.

Provenance

The following attestation bundles were made for qector_decoder_v3-0.6.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-build.yml on GuillaumeLessard/qector-decoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qector_decoder_v3-0.6.9-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qector_decoder_v3-0.6.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b88aad5697c125c2a0285bdbe88d88b340207e9cfe624eeb58aa4d64ca549e58
MD5 082404e093e92fc6770efb28873a8b84
BLAKE2b-256 5683f1785f9be75a3868e620eb0bc0dbebc36f581bf710e04714eeabc94be573

See more details on using hashes here.

Provenance

The following attestation bundles were made for qector_decoder_v3-0.6.9-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release-build.yml on GuillaumeLessard/qector-decoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qector_decoder_v3-0.6.9-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for qector_decoder_v3-0.6.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ae71236545dc01a28fd3eff3223179bcb33a793ddf3dd3458ba0d27e13301daf
MD5 4564565c426fc8a368cf95469bfcf9ab
BLAKE2b-256 f9cb687f2c737efb92a0ec4e2bc737d49c12d50bc04f3be83d105b17e83d3a67

See more details on using hashes here.

Provenance

The following attestation bundles were made for qector_decoder_v3-0.6.9-cp311-cp311-win_amd64.whl:

Publisher: release-build.yml on GuillaumeLessard/qector-decoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qector_decoder_v3-0.6.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qector_decoder_v3-0.6.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34372e2a63ebdfac4389aadeed49af5c7be1c3a8f6be87c111b58a7154e77509
MD5 a16c14e0e55acbd5955510d24509e368
BLAKE2b-256 f391f766a1b3f6a0ef989a014d9c4a8fbb6c50f910b83e951f465f75ca8480f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for qector_decoder_v3-0.6.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-build.yml on GuillaumeLessard/qector-decoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qector_decoder_v3-0.6.9-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qector_decoder_v3-0.6.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1652fec14453e4613cc788d44900cb22bc574161eadd1d76cd7e66416be2409
MD5 9dee1dccbe534aad37243f5e447a0764
BLAKE2b-256 a1d908cc659c97e276bd43defeb7c786a980241d39e1fdb5e3b2331a1659acfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for qector_decoder_v3-0.6.9-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release-build.yml on GuillaumeLessard/qector-decoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qector_decoder_v3-0.6.9-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for qector_decoder_v3-0.6.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 674b8a9e62a38943cca6509e179c245cb3efb65031a8dfddff32549b95193f72
MD5 c396f911d4011a5399cfa3e860bd66db
BLAKE2b-256 5adf0356341b9494ff490213d0b2cea1926bdb68a0a822e2e0f0bf388cb12a9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for qector_decoder_v3-0.6.9-cp310-cp310-win_amd64.whl:

Publisher: release-build.yml on GuillaumeLessard/qector-decoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qector_decoder_v3-0.6.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qector_decoder_v3-0.6.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57040f8f4db34c4e550720d788cef024782ddf42eefe70cad02371c9b187659f
MD5 2d7eaf950d0a3ab704ef3ee5f47cc4ab
BLAKE2b-256 5acca51ffd230ab86c2598dc121d3b72b36f1887140d4405c6087af072f39b98

See more details on using hashes here.

Provenance

The following attestation bundles were made for qector_decoder_v3-0.6.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-build.yml on GuillaumeLessard/qector-decoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qector_decoder_v3-0.6.9-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qector_decoder_v3-0.6.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87058c970d6983628380636329ae8e975268346cecd6328409799f35966c6b6f
MD5 6d56f9975d4a2993619b530759eaa114
BLAKE2b-256 36a9a60935042fc54e78c73b28bf9b6ed1e0db7aaae593151ce2159881490a42

See more details on using hashes here.

Provenance

The following attestation bundles were made for qector_decoder_v3-0.6.9-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release-build.yml on GuillaumeLessard/qector-decoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qector_decoder_v3-0.6.9-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for qector_decoder_v3-0.6.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1fbc5ca4814924c6d6ee30dbc95104e73451764df514683b129b12fae3d410b7
MD5 b028cedb394cc6a56659ae403b33e555
BLAKE2b-256 7b4d6f9bec31adaeeb4d55118625d6170fbfb9f9347ee9672486f42919707224

See more details on using hashes here.

Provenance

The following attestation bundles were made for qector_decoder_v3-0.6.9-cp39-cp39-win_amd64.whl:

Publisher: release-build.yml on GuillaumeLessard/qector-decoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qector_decoder_v3-0.6.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qector_decoder_v3-0.6.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e8dfff6c60331da1d3b981c887848bc430a13ddf05b8ad3ea1d9887caf28657
MD5 6ee323098783ae7830b16efa72b226b9
BLAKE2b-256 a1ae68bee129b11e453c16c2d886fcbb3c4521524b7f342de0e63b088416e71f

See more details on using hashes here.

Provenance

The following attestation bundles were made for qector_decoder_v3-0.6.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-build.yml on GuillaumeLessard/qector-decoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qector_decoder_v3-0.6.9-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qector_decoder_v3-0.6.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65799bfe4a42009761d7c4a01742b7aa3a43bff7d10ccddace9dd8ce3e06d414
MD5 a62e033c275c34f84bc4d435f171e70c
BLAKE2b-256 3490974e04b9eca978e70d2a66a1027f2d38accc2fd7f8e61fd2576a23857a5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for qector_decoder_v3-0.6.9-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release-build.yml on GuillaumeLessard/qector-decoder

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page