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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ x86-64

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

File metadata

  • Download URL: chromobius-1.2.dev1774495083.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.dev1774495083.tar.gz
Algorithm Hash digest
SHA256 89b50304c62675a221c03b07c35fb3cf69ae1f6eaa344a3995a52df7befaa7d4
MD5 d9697d8c34b8104230fd0506ade59304
BLAKE2b-256 624e0e69c49a94e31b2044f8cc59abb1b8de6f6d9b7e6a6afa330900f9be1565

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 335ae1969850a67a624efd105b1a33afa4fecc07fcf728f92eb4b75cf96c1b45
MD5 07cf669e075b9ea52415942ed8b30686
BLAKE2b-256 3634c3ababe48075c83fb3e27b4967fc39913a126e76b0efc99b38690ade5a43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a1ac42505d16d130fdcf98439dab0efcfbe121f35654e2afcfffb0d5bfa2966b
MD5 ab3cddf64caa1632fbd221dac1b1a459
BLAKE2b-256 90cdf9e53608065ae0fad1745b03a64c42c8442967e8cacba7e2b96c8656e180

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd87f4e2921ae04596c629294420386aad4f49d18f380a01bf2005126035d294
MD5 337fc0c14812428d638b802028e257cf
BLAKE2b-256 3990848ce7692ca1748dc5b5415b24191bd0d8292f6883337c7b96596639f741

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 4554e36ba670b2c2979497feb2e0ee06959bc7de31f2e2e3e502d4ffe0f762e9
MD5 9d37bdd803aaa8a78ae814afb31e7a10
BLAKE2b-256 db3e73e04b8f3d40b712ce1e86ee3d02735e024175377d6f3c1b0c0de146e323

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc710b55e415474060b9adea360451edbf88467760d510b44f77c56e6f7b776b
MD5 19eae9795abcaae3de91b9f38dbbcd96
BLAKE2b-256 f891e35149bbc08934ec56ae45b665be9332e2f84e5bae7f3cc57502b7bd7c1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f71b8eca39cf9c083e8c74d84ad6d4f3cd560dc96d65aa91f243bdf4ccb73952
MD5 89d272dfc9c5d773b73a4a039bc5a19b
BLAKE2b-256 3a40e59ffd36d06d1c33ad361db62b942848c484390c14e0afbefb0d850041d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5060fe49bcbcb9ab32871707a7f6d97c4c0b2fe780c59dc86e99dc29d371109c
MD5 242c57c97e58b6e014f918af210e4d13
BLAKE2b-256 9586ff2802bb63bfaac7f15c1d3399b6e7286fac09daafdff823ecb68aabfa89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f99b98fc38a041ddf786e0211e923280dc0b0dd4992b1dc4ae85002b423fdba
MD5 07d2797d010569c72bfbf0fa456cc72d
BLAKE2b-256 d3edaab0a8e3e23536bc1a75f736ecb9c1f682bd753f7f35a5563eeacb865635

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 2622e792125cb3ec430bc9b99e79366f8a885dfc2cbe408f5228da01ad4c2735
MD5 d55c6f059364bc20dd78e4e8243f40d5
BLAKE2b-256 cddc9c808ec16223451e65b69d444c8e99f27042d555ebaab9af1c265240d9b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97b1b464c3fded7ffcc14841d288d46f94a6799982218343895407d3d477b567
MD5 293ac0e5afe6de70cd11d3c48aff9413
BLAKE2b-256 84ac643e7630fd57b750c13699d3030dc539ff6ceb47607533aee5179196a5d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cd302a0945a3849778c809472107d77bb52da5559043a94c02ce6f8ad5a12519
MD5 54a8f037aa1e4d0e4fbe3d12ae271771
BLAKE2b-256 36a8c7e6e6d4c5273acaf573f5b8e949df8cba24544cb338b6479b6fd051a007

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23c4a94ea4e018f87ad9c46c0e0fe24ddfc521b8ff1b9d41e5a267629c299c6f
MD5 87bbaa8b64eae69acb376251396e2e19
BLAKE2b-256 6b04fc61a524cea3f2fcd8fc457bcda226c3ccada9f1774b85147eb30c29fb57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9daeffe24c60afa83c07baab8c3cecf0adb87b976eee61d0a411c6e9e9f7345e
MD5 232851454fc81a8beba6b7542dbb202c
BLAKE2b-256 846a6ec8ce3480bab830c6ace11274dbbd05f850407704f53162dc720d2a52d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b2a496625b80f1324d9395565de4ec018dc208ff555653a7502b7ea20aba5212
MD5 5a06e877582e9c8d2f10209ab0ff6924
BLAKE2b-256 b463864cba5c04567a57d02350a848f11905c4465428265e01cd456d9564930e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29647dbef065e0077e86eb5f9ec69f6cb25c2e8e3b3c51ef3bb082da1cdd22ee
MD5 fa736d3d4c7b1a5f4ce7360890b93e1a
BLAKE2b-256 6c0e959170d4f70c9ee0e1e65841fdf95a190be4800877b6d233aca74a82e38d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fdb528e3ff906e2a1c847e43b89c05111950763ba4e868385852bc47ec276f3e
MD5 853fb1c1bffa2ff5e640e2ce9d5beff4
BLAKE2b-256 55b9d630965bbc27418aaaba91fe91476c6fa02ee9e147e2922692214d0e5c95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1acff5e8142eb158c83ff3181573878ab022fa2bc91cb244c95e8f1bec31aef3
MD5 13775d5fac39095b8843c0fa50759cbb
BLAKE2b-256 c7e58f98d068688a4ff7df59f8e3d774db5e3bff3e389a463789e0677500c86f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 833407614dd228821d6952867e4a44d26713998a5eb703e67bfc016f25a4c689
MD5 01f4c26ad2829ceaef16cff3b49135b6
BLAKE2b-256 0f8eead0e349aeff6ebe2fb6d3409ca02acc88d80d6ca0920749cf5f7e8166e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 8b2435945b69f8efe0731a7e00af3e28edb2585aac4485ed4878e1ba310bc31b
MD5 fec56733bb625a1d69b5600e6e1c2a8b
BLAKE2b-256 f9eed3a86b795239536d286be673cc389033bb2c84e04afa7fe91aa6dc0f7d77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cf238e70d2ef1686281a639172a1a76eeea495c68b0e6eaed30cfbe8282ee34
MD5 9efb81ca55fd4d5e1d9e8c62b9773ebc
BLAKE2b-256 15654b92892470ecf947404f584567e3b070fec3f76ba62c9649806e35a79643

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 281a080ed4693ba22fac0c68f1666db26bf48d1edc596bcfea72ad7a7b1a1324
MD5 6b863edcbd0d12cb855030601e87e29a
BLAKE2b-256 c51e5466a9c2b48667ce19978f157460b038f92d8bffc1cf0ab7b21e23b466ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 91b27e7f580d0db0f2c4a27d3dfa37d9125d40064bcdbd0acebd8495f9022876
MD5 97998753abb606b0588367e717c69d7b
BLAKE2b-256 f577a625dc8ef5c5a4ff0cb4de3f51b97d5ba7fe324ec6e788f29e132f2e3d11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab3b9d486f7c4663c7ea63d0167d823ce39d3c15488a8b27e329eec648e3ddcf
MD5 ba73bbb6bdd567c5b145e09b59650f6e
BLAKE2b-256 960bee28be9b2688a89f2b89a3028b7d30186e0ae872d5d3b2dca9f82d1178ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e7ef5c51cd3527f785226c615027b861fb260b75582e12581523a630f299c2ed
MD5 1d2b887b3fc910b7bd556ca755b55e19
BLAKE2b-256 faf099fc859fb8c06d55fe7a7178f0edb72ceb356757f97e5cbbdfd2dacbddbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774495083-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2dae91e8736cbf9137d50a76c17b2bb24d57bfb4620e40386319677400093bd
MD5 f983f93192c2c0eddb8f1a764b489d93
BLAKE2b-256 fc2ebf826e1ad1dd974219a191beee3fc0e0014fc481ca45376270fbf7c04d6f

See more details on using hashes here.

Provenance

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