Skip to main content

A fast implementation of the Möbius color code decoder.

Project description

Chromobius: color code decoder

Chromobius is an implementation of a "mobius decoder", which approximates the color code decoding problem as a minimum weight matching problem. Chromobius uses PyMatching to solve the minimum weight matching problem.

See the paper "New circuits and an open source decoder for the color code" for more details on how Chromobius works.

How to use Chromobius

See the getting started notebook.

Also see the Python API reference.

Programmers who want to edit and build Chromobius can check the developer documentation.

Example Snippets

Decoding a shot with Chromobius

From Python:

import stim
import chromobius
import numpy as np

def count_mistakes(circuit: stim.Circuit, shots: int) -> int:
    # Sample the circuit.
    dets, actual_obs_flips = circuit.compile_detector_sampler().sample(
        shots=shots,
        separate_observables=True,
        bit_packed=True,
    )

    # Decode with Chromobius.
    decoder = chromobius.compile_decoder_for_dem(circuit.detector_error_model())
    predicted_obs_flips = decoder.predict_obs_flips_from_dets_bit_packed(dets)

    # Count mistakes.
    return np.count_nonzero(np.any(predicted_obs_flips != actual_obs_flips, axis=1))

From the command line:

# Sample shots of detectors and observable flips.
stim detect \
    --shots 100000 \
    --in "example_circuit.stim" \
    --out "dets.b8" \
    --out_format "b8" \
    --obs_out "obs_actual.txt" \
    --obs_out_format "01"

# Extract a detector error model used to configure Chromobius.
stim analyze_errors \
    --in "example_circuit.stim" \
    --fold_loops \
    --out "dem.dem"

# Decode the shots.
chromobius predict \
    --dem "dem.dem" \
    --in "dets.b8" \
    --in_format "b8" \
    --out "obs_predicted.txt" \
    --out_format "01"

# Count the number of shots with a prediction mistake.
paste obs_actual.txt obs_predicted.txt \
    | grep -Pv "^([01]*)\\s*\\1$" \
    | wc -l

From Python using sinter:

import sinter
import chromobius
import os

tasks: list[sinter.Task] = ...
stats: list[sinter.TaskStats] = sinter.collect(
    decoders=["chromobius"],
    custom_decoders=chromobius.sinter_decoders(),
    tasks=tasks,
    num_workers=os.cpu_count(),
    max_shots=100_000,
    max_errors=100,
)

From the command line using sinter:

sinter collect \
    --circuits "example_circuit.stim" \
    --decoders chromobius \
    --custom_decoders_module_function "chromobius:sinter_decoders" \
    --max_shots 100_000 \
    --max_errors 100
    --processes auto \
    --save_resume_filepath "stats.csv" \

Disclaimer

This is not an officially supported Google product. This project is not eligible for the Google Open Source Software Vulnerability Rewards Program.

Copyright 2025 Google LLC.

Project details


Download files

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

Source Distribution

chromobius-1.2.dev1765591514.tar.gz (57.5 kB view details)

Uploaded Source

Built Distributions

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

chromobius-1.2.dev1765591514-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

chromobius-1.2.dev1765591514-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

chromobius-1.2.dev1765591514-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

chromobius-1.2.dev1765591514-cp314-cp314-macosx_11_0_x86_64.whl (901.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

chromobius-1.2.dev1765591514-cp314-cp314-macosx_11_0_arm64.whl (879.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

chromobius-1.2.dev1765591514-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

chromobius-1.2.dev1765591514-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

chromobius-1.2.dev1765591514-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

chromobius-1.2.dev1765591514-cp313-cp313-macosx_11_0_x86_64.whl (901.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

chromobius-1.2.dev1765591514-cp313-cp313-macosx_11_0_arm64.whl (879.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

chromobius-1.2.dev1765591514-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

chromobius-1.2.dev1765591514-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

chromobius-1.2.dev1765591514-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

chromobius-1.2.dev1765591514-cp312-cp312-macosx_11_0_x86_64.whl (901.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

chromobius-1.2.dev1765591514-cp312-cp312-macosx_11_0_arm64.whl (879.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

chromobius-1.2.dev1765591514-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

chromobius-1.2.dev1765591514-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

chromobius-1.2.dev1765591514-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

chromobius-1.2.dev1765591514-cp311-cp311-macosx_11_0_x86_64.whl (901.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

chromobius-1.2.dev1765591514-cp311-cp311-macosx_11_0_arm64.whl (879.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

chromobius-1.2.dev1765591514-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

chromobius-1.2.dev1765591514-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

chromobius-1.2.dev1765591514-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

chromobius-1.2.dev1765591514-cp310-cp310-macosx_11_0_x86_64.whl (899.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

chromobius-1.2.dev1765591514-cp310-cp310-macosx_11_0_arm64.whl (879.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file chromobius-1.2.dev1765591514.tar.gz.

File metadata

  • Download URL: chromobius-1.2.dev1765591514.tar.gz
  • Upload date:
  • Size: 57.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for chromobius-1.2.dev1765591514.tar.gz
Algorithm Hash digest
SHA256 7a928e5db1a0567919d82fd8e8088322204b8c56595640c7f2260aa76f0baa28
MD5 11b74fe50fc11702d163d4d29b62efa5
BLAKE2b-256 a594c7c48a504bc502b03a9b9493ae6ca27d45521d184e5a682a685c5537b781

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514.tar.gz:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e9b91d57d8984f89e54abcff8729a4107846087540fed5c77e98f4f96dda1bbb
MD5 85cbd5da35cf246f3bf1373ce67a7a15
BLAKE2b-256 3d261acae5e30f0b80e0ea2fbd71b3141920889ee68093def2d26918c24f25b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp314-cp314-win_amd64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c4aff283483f9dbbe2254cdfe09e433272e8a006a4c24f0c7423ac90cf710b6d
MD5 48f123cbcb8f55c14634a1338314a2c4
BLAKE2b-256 c9776dd6916d49fe73f088479a014f02475c4101527b280de9e5a2070b1cab17

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3af5955bf6538a99891b0e676a8f8fb4bdf6ebc7d62052c374d01ced69316bb4
MD5 90d300ade9adb72f17a306f878b49c5c
BLAKE2b-256 61df715b69c7962fdfdd32c00b358587f8811e0527ea66dd8c488a579e344b77

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 770473e58f7ed8c752324adcddd26d06e4f8ea967fefc2e5db88bd3db79a83bd
MD5 d0d2651a8165463448690ca1872762f1
BLAKE2b-256 c7b28977be3c8092bd2cca648ef3d48e501b7fcecf91eb325d9eabe262466d14

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp314-cp314-macosx_11_0_x86_64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae53ad510053e8f2f6529d3afbf525314754d557669b58fcc92fceee7532bb23
MD5 1abd5ec3971ea2b083054d6139f15881
BLAKE2b-256 c753caaba9d3287703da8c24c766ac34fd81deed725f753474c1f595d20879ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9fb759546bbaf6c3a47ee00e991339593364498c7f816899727248c8c390bd72
MD5 811cb9eb4d99c9c6f41ec9c80af768aa
BLAKE2b-256 b297a9e498477811b39190da13292d7ad360a81534a723e3d60288d2368fadbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe2cf3fe4b648f92d4d05511269a2e27daeec366547fa3db79b81d4c288ce087
MD5 88d52ea4a086cd2d26f90cd94ea8b697
BLAKE2b-256 4a80f32512859d12c8d1fc90cb41e0933284ea7dbf90a056e597d1d2267b6ac0

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c174fb49c17074d68698e8a26ceddccb764e57b81ab6b2a95ec63b45175b5d8b
MD5 88f225224ef2c30e26ca4dd0047b6759
BLAKE2b-256 3a4b3e9e5f084a225cfdf33df342ab51e7bbe3e57dbefef7f5c6310e759e6df5

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a86452c33a03e5e89fc0091d2364ca4bc5678162335bc804596a978ccc31511a
MD5 df7da460a715ef2f792f0e5a3a0de0b2
BLAKE2b-256 2fecc58c5121edea92913bd1b57c6909d1f2434bbaba7820e6e539ad5e6c894f

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp313-cp313-macosx_11_0_x86_64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8bc01cc833172e3a737962d23cbe4af46e72e7c406ed58b7475c81e925a5bf4d
MD5 1886714828fac5c68c2ebde23641a996
BLAKE2b-256 b8519805fed4e02b2bed0d2d0e463cee9398f1669a39e6bbea3ae46ac4a46393

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e679b3831a5f508a5beb97820c6d127013422af83ea6769e2a954b6f69ea3732
MD5 735a4a7eb3bba4fd65d0fbf86523bf79
BLAKE2b-256 e4a97b6428016542c438a27c96999e35837fa1395e9d95fcac82f6ae83eaf814

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 78dfdc50f3467e86969083d912ad7e05947ae9d0e558ddc324f337abf8561879
MD5 4f0817d7bfb1ff15e70f8751e09aa074
BLAKE2b-256 7b2493013dd2ebaaec0310df9f5054b9a5c4313f2b8237a4fb8cefde10dfa93a

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7b7058c5424c07f4bc68611b1f5ffeba8b4f9450ff5898e30b45c227b8214e4c
MD5 7b1f7bc138eb937a960c5cde0b0045f3
BLAKE2b-256 27f1827a2ce2ba7503baeda29cf92c349313cdf84a266d9918ee8d9dbfc98665

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a757cb65d6b1127ab5874f8831a3022817a8f3ddc3307f88fd37318767868956
MD5 f7ab9479dd080eae6e3a401631adfd4f
BLAKE2b-256 76cab39d314128753d51f74f2ccfa636501a3ba1eef27bc665b68fea6e3a95ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp312-cp312-macosx_11_0_x86_64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6b73964a64b47f4a4144d9a141f7802261834e753efe2767b51292b4b4ef7eb
MD5 7974db6d0ee49958c792f8dc6cb76d73
BLAKE2b-256 fe3a0b79f72875ff0db6312038e3eef8aacfdb28dc928d4265c2a5f618652e0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9c53aa3ce2d8d8871256d4b9bee9e7f5bf8ef368015fac38c9d6b832dc5c12d1
MD5 c4cc492f0eaeeda7a05b0a52a35dff7e
BLAKE2b-256 5c4d42a3fb46ba763697d6721f9283128fd8bf42a090b4729034150e6f76d93b

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9cfc63735c28f7ecf3481ae9781460cae7daa5d9c1a0dca88b331978c2e98ad1
MD5 7aaa9da423abfcc257913be75f23c918
BLAKE2b-256 42b769c596994586aaf15c6a8f641638e447fe92c39dfaf2061852861ef178c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aa31409380b4824b8e3f06a36a86106b270cb75ba6bc858b259b57b7e7ab488f
MD5 fe297b1c2824a8ce2737af592a94c11e
BLAKE2b-256 8c9aebc6b7ae7c94ec7fdadb32cd0eb71bc248416e809721689a2d0cc62e0f1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 1601635ef2c3408d378ba852eb7bf7c19a22b76a8f24fc7fe702ba5603b6f805
MD5 f69e71c48241d60a25ea4293afef4a3b
BLAKE2b-256 2cecedb93da4cc112dff775e21372772d665bf829e6efddd8e9befff6db4a35a

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp311-cp311-macosx_11_0_x86_64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d05732e5b159e43a39de1833f8e76d8c879b3fe35ee93584becff7ead8a96d0c
MD5 60e6b59e466398f54580c1c7c8092f9c
BLAKE2b-256 0a26718df4909534065e516e1e5495b0cc32d3b7b36022952faf537272c40cbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c3279e96f0eda4c54a83967fbd13df8f54413d9d7ef21cb4367096c35fe2ece4
MD5 43e9d02314036a4bd8d58b97e12e6c6c
BLAKE2b-256 ba33019cc237dc0798747ed8f548af8e2f907d8f23509b3c33bf72694161388b

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 38c6fb87a6fd9c84dff7c7f39a5880ce6dd9bf5482c94f88157bc05243a1a75d
MD5 c56d5531b71f3b1ed85b92760cb3e42d
BLAKE2b-256 a447ca68d159aa213db997f23857d9abed5e288e72ea6e2b236ee593e39daf45

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1081e1bd7263019e4c8dbeb4f2c5677c199cb3410fe7f6ac68d46309e913b2be
MD5 575954d32400a7ad8840558e03764336
BLAKE2b-256 c4d8b88fadb36d7e2bcd608362707b3dbe5661abbfd770d48528b8b3de8af4d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 02bf3e23c83c775b9bec642a7c15b0846670196e477c4b0f41b859e11db2c20c
MD5 bd26cc607b5adb4851c5ac06c3f94014
BLAKE2b-256 231478a82da969ea4dfbdc5ca5727d23fbaa3ab32fb12982accb128651e98db5

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp310-cp310-macosx_11_0_x86_64.whl:

Publisher: ci.yml on quantumlib/chromobius

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

File details

Details for the file chromobius-1.2.dev1765591514-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1765591514-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea5a87fc44f4fb1c6d6363f3559bcd79f91271192b9f6b6565f2fef8e18c07e1
MD5 4936e5da039959b8e9048be21ce2ffaf
BLAKE2b-256 a6cf460763bd2428b0d45c8a4c69d2c4713aa61a253f75b16e35da6897012574

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1765591514-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yml on quantumlib/chromobius

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