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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ x86-64

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

File metadata

  • Download URL: chromobius-1.2.dev1763610263.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.dev1763610263.tar.gz
Algorithm Hash digest
SHA256 42555fe6b468472b16e41a1317484af225b5ac6c120fea78d58e5e9b67a0f7ed
MD5 95faf0920bc3a181c89a38078362300e
BLAKE2b-256 4842b80e1ecb687d36dbfbe32f5ef2b2bc7fb9f6018422a12898d139086f5bf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3660f410247322eeee7300d07abad304c4343bd20517035a66e9fe6657e3c76a
MD5 34dbdc7cf7e0437f6188ca0ef57d11a3
BLAKE2b-256 a832ccb96cf2bf6373a488a02f19fdc169d4e4e9fe0f1a01a552b787402cbf48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac84bc575974edf9385cfd81d2d0f4d3e5613fcefa09381bea95bd98dda158c3
MD5 87b022e5553085b2c406dff81374ef62
BLAKE2b-256 a985c7b64949d1fe53d306f7132d77ac7dd03778c3a742a41eb584f364502f82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 475aaa916eb5fe83a834cf326e4904057274095a6603e57171b2b0bdbe4a4935
MD5 d3cf40c3b7fe1ec60cfbf32848931b9f
BLAKE2b-256 8edccffb9f9270353b3217bb685e3eabdff824de76d271a5b14530ebf84b23c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 7972b0e44ea0b1fcf1cd422a95a24975bed26f7285dfa3bf04b54ba4599561c1
MD5 c7877900c6e681220275c01400f9c002
BLAKE2b-256 30f02e60d152fb15fd9bcd7433fab2605511d5f5a444d5d8c25cb7f73006736b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1688b6c4db5469d408ab9e53d90ba87525b80410640de2090639cb4e1c3f1935
MD5 d8f86e7952605841e02cb7a3845156df
BLAKE2b-256 1db2cfd6afe181ce1262a5134d81d1b74728f12a95fa6fcd260e0ad372543917

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 549b88f4ebcd07764537461d5ba238cf3857c1636c662ca359acf8ce50960236
MD5 7983a3819d91c6abe09ba6798b3f179f
BLAKE2b-256 89db4eb0796cd16f598078a5903897f4a3e5a8d0bee4d99e3a2b2bb528669eac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f3268a3cd0d4c768052e61f2ec10b23780c2aefa17c365a0a4ce712af261daa3
MD5 653cd1492445738448630746dee94288
BLAKE2b-256 89c15e0f1b271ec16a5bf4049568a6fa1bdc4c7e2b9bc716ba18d322b3aab76f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99ab104877203f3c2aba3a899a1468b7b379bc55e97c08946a36653d8779fa91
MD5 ed6251561c58ac689bf665200baa48c5
BLAKE2b-256 9e5332b86c237b6a4585d933b126c62805cf66c363b24abe8e1522988baff9c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ef9117f6fea89c2b8f46ebd511b9f884537d01510c56fbaf21cc8d37ad6fe8c1
MD5 238d929464316d2de10f2b33af1ef38b
BLAKE2b-256 8f252b0e9abfb86c87b96c3a94bcc89cebc1cd48749f23a01bbd0e10ae284de1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f74bd8b9b2805883496bef3713054fc0b4ef3d35c8896b1ae98acdc145d84380
MD5 f8628b0ee5c8d68d8eb4eb6c79e11bbe
BLAKE2b-256 b7ce7436008010e1608c63ec688c0562806bbb993315673cbd1c674a728d85b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 131d486b0dc9c2b90d678b43655926276e918a8faf608d747ac8f585d6850841
MD5 493d4bd43a099746256a79c4f7f329c6
BLAKE2b-256 912a88a433a4b13ecf813b67d98fae41512e36a49fb9afaf3f4500a26415fd80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68ef5b36155df7c66b0590e443650a2c699dbbf2ffb98954e01dec18bf8c6757
MD5 cb978c092fba582027324ebe127c9bae
BLAKE2b-256 6b01efbb1d30fc5e414823e00fbdae99eea8aece4dfd296f78b5c838650b7ed0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 484657d3e080f9c48544527965b9598d188bbf918c47182faae65ceec2423c81
MD5 69be56f484278b9d506a5072ae3a7242
BLAKE2b-256 49e12beac3707506cf005a2914bdbf799d53a6b1f1c05ef270ab62b2a18cc247

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 84866c38abd1c5e2eeb9671d4bbcd4d5416462f06628f558eb764459d0575a44
MD5 6c1872a83bc2d3b76b5c8324bb23b787
BLAKE2b-256 31529f0d1268806c84bd3df3c9b6ea04879dd8f0d2af7bb93fe58dbbb223e80e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9101687b36a94bb5a41795faac1e74dbde9a99549a93402176eb34c47130e3cb
MD5 2783d46623ad8558238e45c74904ad5a
BLAKE2b-256 4dfb5ca6c0c9b965a3b5d2427c8fd9366a5e7cd0675d36a10659ef330203bbd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7e16b3065f9e65388be77f4644125fc9bf60e62788639829f4d06190525c2d8b
MD5 d4fa3665cd93318f72ebec6644bb35b9
BLAKE2b-256 a9c834a92906598b1e958b07e3bb470a9baf9e08debc75cfb0897c9807c85afc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7360b46fe96e63a88fe6390b8032ea1fee0377c5e8de94a50b63eff5b31d34ec
MD5 a652f33127f8e69e02bd8ff9a7abe04d
BLAKE2b-256 a0432c0089b54e8d6189f1fd0d92a10cd8fc38d8b4c48abf9dbc15c4acd416ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 79143094169ad7b51dcf6c261b50962acbd2ea9f9354e664a6c78725b2cd6928
MD5 d081513eb567a23b6c8d79de26bb1bdf
BLAKE2b-256 b3035e4159701c2d48136953964f9091ba5393c9a370690d85425feb3ba819d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 91e307b8a43c593172ca977378532f3e0917fc68ab6597c85ca7383d4b419397
MD5 cab33bf75ba804fcfa0163af1b90e606
BLAKE2b-256 6b4fb1c551ebbd5703a84e9cb8b391bf57db8d00cf638c217f4c153af855cb42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8644e4bd1982b8eff7588fd37545177ebb3d30839efd681bf9bb492d445c0180
MD5 752f7d6349740d1c15a49c8601b6db2d
BLAKE2b-256 c9f748927b3518b81c6fffe965e810bfc131701691af86a5678b642b6c678b2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8f4f82ec52a80c37fe8c827788b90211a49182f1242c0f881ecfe438aa7e7555
MD5 f5e21b6f4a75eecd4754e7f548ac367a
BLAKE2b-256 39efa75f7c9045209eaba2988734e2418c0d2d817c4c26f4846b1dce7d7a2f85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2591daabad48afebcfe1344a8eb36e13d5f2afa533bebb8991dcba6ccd772dfd
MD5 5400b94722d6abe8c080a4dde08894bf
BLAKE2b-256 84e4fbdca8adf2880ed5c57dc8681e09f973daacfa6628eabd33f21a2f2977bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8cad95abe8be5a151d99f909d1bd60266aa7abd51ac01eba3369d509977c9854
MD5 a68ecc79cad4361a373f52af8ca3b6cd
BLAKE2b-256 d96c07bd5981408bd632785474029d910e953cb54abf38b495eb921c3690c3d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9d4968153968b73c4580b1bf19a8bc3130b0b34e7feef82d22d51a13afc2be7b
MD5 e348df43a883880aafe627063c46b28f
BLAKE2b-256 2bd11abe92996441d313f81c26f6e906dd6f4a1ceb87432a33e9fa5ca2a6e701

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763610263-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28c2b0a4e944391d63d5a47df88c0b47645c1d9adbe7e8ef983725ff69d7550c
MD5 dab0d11df87315f64d1a5b9e8ba5dae1
BLAKE2b-256 a25815fc6c5bf586678680a8443676c88f31a601aaa088158f9dcd5303218517

See more details on using hashes here.

Provenance

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