Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

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.

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.dev1784348516.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.dev1784348516-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

chromobius-1.2.dev1784348516-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.dev1784348516-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.dev1784348516-cp314-cp314-macosx_11_0_x86_64.whl (901.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

chromobius-1.2.dev1784348516-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.dev1784348516-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.dev1784348516-cp313-cp313-macosx_11_0_x86_64.whl (901.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

chromobius-1.2.dev1784348516-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.dev1784348516-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.dev1784348516-cp312-cp312-macosx_11_0_x86_64.whl (901.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

chromobius-1.2.dev1784348516-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.dev1784348516-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.dev1784348516-cp311-cp311-macosx_11_0_x86_64.whl (901.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

chromobius-1.2.dev1784348516-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.dev1784348516-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.dev1784348516-cp310-cp310-macosx_11_0_x86_64.whl (899.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

chromobius-1.2.dev1784348516-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.dev1784348516.tar.gz.

File metadata

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

File hashes

Hashes for chromobius-1.2.dev1784348516.tar.gz
Algorithm Hash digest
SHA256 964b6d1dcb4b394641bc2a9d6dd9e9febcbb8b30ba19a089a7a9a01e5c395194
MD5 53022551fe968c12b99ef3fcfd9ee5c5
BLAKE2b-256 be18a7905bb6fc2ababbf65e662e53a26ef55f6ba86b3598573d112f82f4cbf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516.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.dev1784348516-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b89dcc9f7e22bbc9b46cdc2124a3800a93c0022e5dddeb31fd1372a1b309215a
MD5 d0f772dbd4affb9e6a21c4bc46b52f00
BLAKE2b-256 9f9d6fd322e82b3a5c4d343a2295fa6aa9e5a88abb9b89600482c80f68483927

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2984064242387d4ce562797b2a330be19a3219faf1a1a9a50a1fec5d0d26faa6
MD5 11850ba2062719b58c571637677bbe07
BLAKE2b-256 a2723ae4c17ee36dbd3026e9da914eec7d7500661b8b775c355cc739e94c658f

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3797a1f73f928187ff27d106d6a12c3ece5455ed37ee4b4ceb404e77cf389dd3
MD5 30912abdf0e69a4401633475d87ad681
BLAKE2b-256 d4da8e01643361d1d08de7e8c4b35a93ffaec81959268d64244c8f2723b1e6cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 cfeb9a7a2f642048dc4b016f4b3da2ddcd7015d436fbebb7bc47d67c2965b7d3
MD5 fb2507bdbfc11df6cb81a2660c599e66
BLAKE2b-256 c532a4514d5ac41c1e3590b15a804a46bb83d099584e7bc5b7b715c7c0b12811

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dac15a4a327b5b5ad67cdf2e9c351dda09e004da0e742a337063d6a5b439433d
MD5 6682238b90dcc5f176649065d663f409
BLAKE2b-256 940e7173addc63316d2afdbc36544a2c4400246f8863528e5c6f23877dfdde3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c696d8c552caf553c33f78cafac7f16c5a00c48be23115edcb5da610aaba2823
MD5 3956e234657ae42933cdcb7d7095ebdf
BLAKE2b-256 76672369cb5bcc7aebb207a276f4eec60b9eeb434829f256ab5e78447b59e980

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 530133a812d6bf3424631e11d99e3272fb51a01d1db6e2ab48c64a344c37720a
MD5 cc87c4256631ed3970ed27c0ed6bc994
BLAKE2b-256 6e71a9309a495fcf4be616c2d3de1d64380b11ed7b67908377a5609d7cf76558

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f057cb402c37b183e5020ba6985acfb3753ada98a51c881a66abb6dc9d2b255
MD5 bf7fe8a14c44208208f7d8dc248df3dd
BLAKE2b-256 e8800bef1e6e036cb4f344384ab69933de4d143a8b5e658068b0dc80cf63e704

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 3a27eebfeba698510dd0686fda96aa2551153bcfac66489fca3684dfa63ee1b7
MD5 9f38596aefd5b0e1277a25a780631102
BLAKE2b-256 c7a16c64c405d1aac8a915b1146b4aabfec09780579cff7e53177de3b0af3785

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8392396733c77d8aa63ca763af8d11bad5a648eb5086b3e07ec4d2f97908e7e2
MD5 65e2459fbf518292ff7a033af518972f
BLAKE2b-256 99eb8165c3dcf85083f6897fa4926bd48d7a08df67c50e6c6ba8f0188a9b26eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9135899a707fbc3c936f2b09501a6c696d5c7f0c19b1800a801a6621f00922ec
MD5 c930c51353fd3a7575d3950f7c817247
BLAKE2b-256 375a27deeb96b6f83e65611d38dffced4643e0d615e9070a749024fbb5c60323

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f547ec66ff98ec823f044bbeb7886413b06efe9eed9ea0b267ee87b09bc6663
MD5 71ea37937db6b27adffc7117c76b6c46
BLAKE2b-256 aa18daf7bbe8baa034f50fd3e3c22d6095a18c4d95d068bc57784a35974ea8dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0be18ccf36ae575863ea15ba52afe56c94f92c856cb61c4443ad1e8c37664949
MD5 0f914f4664bdc636b9d0bf9f76d7889f
BLAKE2b-256 70fd7cd1538cd9cc1fc9cee41ea8cb3dd57560ef5fac213f9477bb568193e97d

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 fa9044db38d9627db699038d6f25b212f02a4aca273c60304d5d9e697dd671d7
MD5 2499aa118f1087095f044c451c42ca41
BLAKE2b-256 e553e3bbea8d37f4ce57ed057504726443fb5d4a863aa758b9f6502735ae84d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bafe45792f949fad122ef43d55f0957198a9e5c87e2780c99e8b1be08abc5bee
MD5 29a9e9b2dbad3de672f4d1fff4c91c49
BLAKE2b-256 44dfee3b7bac8ae4f77160e9c56504c32177d509f054a972ecd86d244d331d93

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6d3a02b775e5e549b898c5a1fb7acd1c01ab137328bd14886e4129e14703966f
MD5 ee09543dfd0fc2339f23ded60baf3c6c
BLAKE2b-256 03408da809b186d1d3f05c226c92db3c356b04ce26f1559d5c6e8683594e57c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e3333f409a5bb1c6dae56830cec8aa9344c188263108552aabfac3c1fc208191
MD5 635588eec0fc1aaffc183225bf4a0064
BLAKE2b-256 4089a4ccfc831ac0d433797913306d93163da28333eb0edcb6772724bbb31d3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2df60da66549ad34b03e2b7759c754ea77803e16ef3be77bf1e1bbe2dee00215
MD5 8bafa4c1729125585535bed240294b86
BLAKE2b-256 a2c719c1f425f5cbc0e1ac82fd56766321d0fee82c6b52d55c72044a0e470e1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 562e975149cf4ce9433c80a0d7ef0949a87e20ee0f818e22495e85bed2b4fe7f
MD5 afabc78031ecf21c5e9efa1ab125fce5
BLAKE2b-256 35959ddb3b47fa43e84152eea0ae785d7dacbc986e7dc005f9ded5977a959554

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0fc9ff9b6a1ba5305c1c50a8f33a2f985dd6ca66c79014dafe419f24300d924
MD5 df0796cb63ad990af26615d6e1d7a2b8
BLAKE2b-256 f90727d3143d22c7e420b6bd8bf1ced8563f780cf2df3bce2b1424d5c823ea74

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e5b1af9721485ba7977d7ca5c963286a4edd4e977eac6a0cf0274a801c01f192
MD5 f2ee39524fead948af83b3001284f248
BLAKE2b-256 3fd1afe490ff6c3f75d48ee5b5fae51d03f99fb1b61a2539eda0ca57cd62a8c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e8fda27a738633ac011f5420c1213184b74969ae32b525485e5d8ca38deac26
MD5 fea1986a007b5a201694e047d686fe8e
BLAKE2b-256 1ca89ed1105ca99c9b9f819aa5f21217dd5080ef806455155c06cd0cc454ddb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a322c562824a42f539c5e654ec3cc5b8f01fddd3c9575629a07ec599f39b70b
MD5 ad22ee5abd3a1c9f04765971a468c553
BLAKE2b-256 1ee44c8cbcf5cef3e49fe6497a41ee6ccf3eae9b03190c15cce7cf991a80ee43

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 68f3fb5bee4d84fb531303787c490d95f27d924c5906d5deaf5ea6ff1e6a228c
MD5 a76955b7b532635772f49f4765b650d0
BLAKE2b-256 f5291abcb0017d4382e509d194f28ba4548a733e599def39f584295a4bc0720d

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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.dev1784348516-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chromobius-1.2.dev1784348516-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3084602469025160335e14ac02a1775a9f05124bd401aab71849f5c7f866d072
MD5 048a449b18e7c85df81e5c6c6d5137c2
BLAKE2b-256 2112179156941e4bcfe8ff92d97735442c7b1c5d426587110710a16d5713ad64

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784348516-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 Sentry Error logging StatusPage Status page