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.dev1784349837.tar.gz (57.6 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.dev1784349837-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ x86-64

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

File metadata

  • Download URL: chromobius-1.2.dev1784349837.tar.gz
  • Upload date:
  • Size: 57.6 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.dev1784349837.tar.gz
Algorithm Hash digest
SHA256 0a168ac9ed29ed10326012a9ca50e16e4f708879f293cca0e0af6ba125e5b787
MD5 2a89bb3691e52d6186266da0160aca0f
BLAKE2b-256 84dcbb3dc70e6265c3295cc72fbb4d8188a9baf3708e4b727fc394e09bd1fce0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d50289152950c1cc867fdb5e4e020765c130398376e2b4d1ec47137835d21900
MD5 cfad2f60c80c421330902896b841cce5
BLAKE2b-256 465ca7ac85f5be284fef40f6c0eb14aa2baebaa79b0e4f28578938257d1578cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f14100588760bb73732ca2bfe0e38640ce5bdc97f954d956e593a908e4f7f98
MD5 e22c6022057eea647805e27aa95e66cc
BLAKE2b-256 c271533ac5d2ccf051a4e4b092ceb04fc3eb772b8d95109a1d4915224d31d0e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8c53b809f237d1a75b93bb74929f5def058b5b22a5132f22bebb422be587d3c
MD5 676f76d4b218048404bfe7756f55948c
BLAKE2b-256 30233a384aafa56d35ada5b8073533b92b184297588ff65ff64601e10af1764d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 68d2a86e6c83cec7e979577e37402e39d52d48faa5b3fe1be9ee2e45fea8159e
MD5 4b04a7c7dff2da200f969369ee178e94
BLAKE2b-256 0cb1f6dd58f9b97168f05a229a0af6c201fe109a6305c81982a4800152ff81d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc09ec3036e851abac3c9cc8d78625b737be4857fdc8edaf183d9d1e4d2a9d83
MD5 942a0fb554935425016c91abc0861ad0
BLAKE2b-256 8a3052a7a3ba4fb16519c04898e16fef52b36f04f5260fc9d2761a9b1b97cca8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9956c536d86e8d494e403671e4856e4a7f54437f93ac5b7dace8f89bbb3a905e
MD5 ec50069452e00b922e34f26f490b91c9
BLAKE2b-256 82c529cad3bc656cc894af7ec726e87c5a241a9eea5b0ee426038730f641644c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 28d4cc1f24dffb0c7b6b2c30897f15f761e176c703791c5e2d645785061648ed
MD5 f8e3fa6f9d5ab2f2d54111a2c2cd5186
BLAKE2b-256 9212b3e07cfebe0a21316280defab2c763a3f26fdb74978689f1ff3248049c2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b2a1a4943029fd5e9d0412b7a6cadc855f766ba5d312537306a32e9f1fe248e
MD5 7d3d9f013b88f47e90eb6c9c29517878
BLAKE2b-256 d416837f6b93a32a3f78e71ea9e15bd57174e30f3507e927d8eb91b92821dc98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 18e3f859eb94316c5a63f7a59fac1e040198fa5cc05f2f3a456a098b94f394dc
MD5 72d40b9e0ab5fd6c4d59ac2c30d454d6
BLAKE2b-256 481f469beffeac0303305a250eaaa0975093bd388da20f330f4d378d626c02e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7395aab087851189013bf3ae4750604b4ee23b6e344e3ad6a36c4187dd505d5b
MD5 706e258cc056103f53b8fbb1d54e6c5d
BLAKE2b-256 c8e35d57e688a058b999bd212fa4237d357b2cc48aa1bd820524bfad39b66f5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c48af5e470deed86dfb7d90d9b81e8837f8b6410666da8f786db80b540736988
MD5 435a55eb85bd2460966d1487bd5413ed
BLAKE2b-256 b156eef06254443d7c0ad01faefbcdeb56411657e13ef691901443848a057534

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 212199658d5702cec26e4b164a9e7f5b7f218e7aaf3d7be53aedbe4839845dfc
MD5 5bb667c8b77b53bcd926b2be7100a944
BLAKE2b-256 a0b168c05db5f4db1e9a4a5d116132d7b340b7d279dbeaefcdda41c899d59cd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2eb0da538606089d317172a09bd619f8cfef7673014f080858b0450e8d4dbfa7
MD5 621d8b0b0855671b1f1cd0fc35c7c37a
BLAKE2b-256 e2601b5fa73fdf0015b16324b23b48faf0fd0931c47a02fa00ac02a18f9763aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c9faafa700e94652a9c4dc392f01d615b76273d252af30bd46f7d7994230704b
MD5 c7c11a8c2017a001d2465c01fc52ff5c
BLAKE2b-256 836572de7a8d6a1fe3453f8324826ee3788600f395cee123e8be3f0eeebb9ba8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93323c238f252ea5b03f75079a76b3176eb07c3f34f58c211653d89e5578e0c5
MD5 c7f581279d819871cbd2f98e8899e2f1
BLAKE2b-256 753af62c15bee151387893c596d7e472c74936ec174c241ea36e75417b967b4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 db30791179f5398ba24f2c05a12c677541a5e3a60a9a7840cc30357b6c42d202
MD5 dfba0533c27738d3fbf5d67384bb14c9
BLAKE2b-256 a3088d39fad11b8213399a90c0670c1f1af9b2e6ebf05646ebff55adbd28a319

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7b829843937b93d95ad104a33aa54cfdd3216cfc4502068dc139916344f66927
MD5 125e7b1488f61c1fd9c2da212315132a
BLAKE2b-256 0206e040ffe25230c7ec016f3dfb4355895fe1dd7f4f771a41b7d8473255fe1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e7e9ee7f3d36a9fb592dee1707dac9b99dd1c583c376167b7cd1d884468e3fa5
MD5 f77da7613a28f379b487ca8b73609e30
BLAKE2b-256 ff72073c408dd1a6328bd4359036e0fd4f6a84e21042adca2f4246d163bbb74a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 866d6db7263d2a07cb48124360c1bd0c9461f95525defca195bd0839a047efe0
MD5 fcc615e844064566bac5f7c76ecf454f
BLAKE2b-256 7c75f01cfe59e0414c06f838fdd7d39520b86f4d966812fced88bfeba7af3039

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed6fa745da35a7ecb786adcb8a9c3a3127f6ec88a31ef1b638856a7d0b6cd781
MD5 6e9234d371f2caad06510f25dd982f8e
BLAKE2b-256 f974664adc9203859536a49cad56a8d8c9abc54aeb952c830b55fe3f1b522de7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 13f531a4e3fc18f4e70a86f3120e07dda7d96967b7643a02810293d29184bfbc
MD5 17f8cb674bdd113befc9760ba5d1ee55
BLAKE2b-256 1de02afb0c92c6ede703ca32b7068bbe685b2216288762f5191931ac869433d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e636c2dc696908b689a4a6148d0d66a3eade3eb67b8f50b3d975b717d3c3388f
MD5 f114356ea2f9a4a2ff22a54d85510b89
BLAKE2b-256 40afff8c6698275559650b635b8229d4c83c07ec2ed1af35a2d35b11a325a404

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d9e1d396aafeaf1f1fedd10b0f095acab046c02c2782fdf09bbe17b3e4ce02ef
MD5 4c2d32084772a338565af5b1ae7b5b8d
BLAKE2b-256 4ca6e71020453053241f976e166d4336569a79ff099353fd4bc960ddf8d42d87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 8dea23333d557c3cf6e1bc92397feb17f809321cdeac7afbdfa866a4f2bdf1c4
MD5 c05430c76309bfe728343265bc520ce6
BLAKE2b-256 fc41c8a09877d1972e55ce09408479168aa68f7f6209e0c5fde9e11d3cda02a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1784349837-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85d34df7de42aacd43221ee226256473d69352fa6aee200936176152ff671ac2
MD5 3a86023f14f658f6b540c719fb04b5ac
BLAKE2b-256 4837fd08349c8083c9b4362883d644c277cf7940ebdf6e4718edad708cfbd66b

See more details on using hashes here.

Provenance

The following attestation bundles were made for chromobius-1.2.dev1784349837-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