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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ x86-64

chromobius-1.2.dev1763601344-cp312-cp312-macosx_11_0_arm64.whl (879.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ x86-64

chromobius-1.2.dev1763601344-cp310-cp310-macosx_11_0_arm64.whl (878.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: chromobius-1.2.dev1763601344.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.dev1763601344.tar.gz
Algorithm Hash digest
SHA256 6300a9aed72f64e43c2a2eea2ffc7cbc446ea3f316045456708b33d983b896dd
MD5 edabc8ad0caf5bc06d8ab4d9659ce3d6
BLAKE2b-256 6af200d29dcb9d061cdf88a0825265e23a3d5c5c0e080371c354da77d6869485

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4dc5a88d067f3b5a1cb5bbf80f06e0f480938487eea24577dece19329b17b041
MD5 3a53ce4ad64a8a47ffd5eb861d5db004
BLAKE2b-256 67d85a5fd2917c37dc07048099c3177c0e5d2bf61b3c32f4afb478dd1e439a06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 536412f45a0e7ff1193d72238743327112c8c3c762e172b5a2fb56b89e34f523
MD5 31c20d4cad61823b842ff974baf42cc7
BLAKE2b-256 67a278302036eca17742af0311bb72bc163662a48c58f9b47d141ede06f11fd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bdd15dc3ef103346c1b748b114eafa74eb2a8127e272ee38bcc92f26fa046fe5
MD5 e5515c43b4a3f9aa48315384b6a1011b
BLAKE2b-256 9a4be49c6ab202de260e317286e7fc225841ae01293e4dfdd89c12d5b2d31340

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 75db32426a776fbe565a0bff289e0ad1f5b0f4458b5fe85e1feb13e1eaff71d1
MD5 fa3bf1ccc6ceb05f5d436b84a86b6516
BLAKE2b-256 0fd44f66d3bc53e3545b730a6eff1bc3b60e1fb3a43c3724a2fbddf31a75e739

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 743408458daf99bdcd86e70e97681a7719f9e8ad883d516302f947277cae9eb8
MD5 f453b9880e9b5814b91aebbcc3b249f5
BLAKE2b-256 600ac254ccdff07bb5b5143f11fcd4eaa7eb3c1c4ed80b454773f18737a48177

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aedff5104f6c8e6ad5465d8260615276e733b4652599c20d591c85a75d3b95ae
MD5 d145bfe30ff40a53de24c240309501ae
BLAKE2b-256 977a2d067f45e8143fa9f5a17052c7bd0ccca5067248c72fd12c64118e1f1999

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb293917560fc4e60b21b4d0dcd5d0443345e56ad154811fd0e65b87e377982e
MD5 ae380fb4e30411184de53918dc2245d4
BLAKE2b-256 88d968597f332341f60eec51c2bad2b5eb4448f5d5fc900565c98d838f34d0dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4484a2f225bd818ba60c0f95307cf653535ac5293f815d9c8c2b1b5339c777ec
MD5 20a94db7920d9c7840dd4ff841feb846
BLAKE2b-256 ec67d9db0c3119c7c4ce5d13427146f137737f0a676de5e73f7c4106d4934459

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 691bfa93e074a340b866672829661a49d4d39314143b5495a0625e666fe5f509
MD5 8adcb239f72ac6003748888ae8875fa9
BLAKE2b-256 738c61323a8dd34d276b226b183f3f4f6f28315577e151ba8fdbdc61d67edf17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd0d0d507591461a37d986df34d294724f486b7f451dc58ab7936a2b039fd301
MD5 a1e6bc3af4cb0b7b90d88a941dd1d056
BLAKE2b-256 3b7dab7a4a05ae1ee344f11d1e6acdfdedc7a15d6a7566b6c15d4ed6f223452e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1109f635d4a24e0796990af30948af772361b584184912eb5c89974d2992b7d9
MD5 d19a71293a8b878bab970657c7cf6abf
BLAKE2b-256 1a431759514b73558d26838746c3f579362dcab16bfcadcdb77d539af70536f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ababfdafbb3382eafc1524fd49a17836b3c539b57f44b19612efd8b218db0079
MD5 94b9fff1d79256eff3e3f111103f527f
BLAKE2b-256 fa5030c9070bbd3d39c9a3b4628951ce0b2d22e3aedd198f11eeacfc2adef348

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c1d04c9d87019c4a8129738dc9de8daa1cf5c68123c9a7d2ab0f39af76f11556
MD5 3d337ea7fdb08576741ed3ff455d197f
BLAKE2b-256 bda48c7a78ccd1820a48e3a6ed12c30ee6d93235b71357ccd940a5ac0585c069

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 33cf9476c719cbb89ef904d27315e60c9d8f506bb7481cec7619eba5a2218ae6
MD5 15148b8c5696f74b15fe3bf3c4b13bc6
BLAKE2b-256 000fb3c94d1306e926d0a329c88d40453b20ec8724d20f1b6dd8e7e93e490309

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 945bc1b6e9f515243a4da83723a78707cf3c83748a94a7b139861ee91d2df0c7
MD5 c433050965421b2488853d862abbcc5b
BLAKE2b-256 7de3e08df2ab39019825638a14e0f768022f38d5a8ea7d4e3fd8d8702c0ff61c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bc50a7d9692b29f2fa6369444d49369cf2d0917325bf4ef39fb2bb6c687b0319
MD5 5d135251ceadb6d641045ce4dea5d74f
BLAKE2b-256 7151d96508fdcd532eeb0395e7007f02d32d306e6a6b1e204021d13e782a67d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c076ba2b17febb31b1e707326b11d7c0eee9977a386072affd225414ce310235
MD5 fb2140df74e3af82e56a67bec6466509
BLAKE2b-256 e9371ad0c041ec22e21a5dcd0d31b4c3b097aca182ed5a82ec832a05e97b1b5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21b8139004a611cccd1eee7c9ff2b286788e42985b74eedf963f616797eea71f
MD5 b0a8ede0e5d7ec66e7d86e422ec223c2
BLAKE2b-256 7fd145f785a0ce27b08a97b81dc324a1cd71d2a0160ff3492731c092985291de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e72331f1f222834785eecf69b4d9af782e8617d1b781aeaf10a0fff24340194d
MD5 e5207400c7b5c382d5f5ed4ca3f67d3a
BLAKE2b-256 236d16020a715688fdd2357acddd4bf7e6189dc9fb9123f7be9d70f1a6271df2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e47c848b7e2b471dfc286dc2acbbeced68b03eb652829de683ee9fa6dfc3d282
MD5 57c4f46eadb24592386aff623b5dbbfa
BLAKE2b-256 368b0c5c7ad9e1fac558cf68ed584b362300b9db17cec8124a6e1db32252e7c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0105ac0ad5f88dac1d8fb27ef2288136ca8b778566755d9b24bea5bd6ac256ca
MD5 eb525db8d124eb3752547116b7a76e30
BLAKE2b-256 c5e5e1a409549112a104df9e814d893bc1c69d85844ad8d128a99e9b7763dcf4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 039ce31c34706e8238fe43d92a5d09ec302e709e1c00159c6d48bffac5a7b1c3
MD5 8d7c986743d9f24713108a817abebcdc
BLAKE2b-256 fab474658a37fbca1ed359d3b24668661ae451bca1c9d0e7989ec67a614e168b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 063dc7f937d0054fd3577eda47b530a661bdb864cb7504cda2001862bbfb32d5
MD5 6568819a6a8587e8899b8817c80581b7
BLAKE2b-256 5f8245e1bb454753799d2df2a928c6945bbf2335d11b4e2e576e620b34a85e45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d826af5ca744b4861e50f3c457096bbfcb6a413e79856233cdd9b39898e34f22
MD5 89f8ac6f694cf1375fa4089b2b298678
BLAKE2b-256 d4fc87299a1329a0d19cf73174e41b1ded12f776b250aed0b2354d203363d950

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763601344-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7abe02a11af659f5e90f0580e1bf40d42f24670570550c9a7a26103a907512a1
MD5 c97b7da3601a0aa3741442a02af5496c
BLAKE2b-256 f72fe373e43e8e74028b6be4839279bc683eb1e2e3c1da56f3ea4317812e9cec

See more details on using hashes here.

Provenance

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