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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ x86-64

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

File metadata

  • Download URL: chromobius-1.2.dev1774499381.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.dev1774499381.tar.gz
Algorithm Hash digest
SHA256 73c25f800b672b98891a32b7ce82d1427c5f50633960d0139d2a69f4f5671d21
MD5 dcdde7d715e51f020ffbf7c87e2f3420
BLAKE2b-256 661a829e8471e98150f28f82c4650c4d8d82e42cdbb078cdb6101314486f5031

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 97ffb7706c3141403e928cd94375cc4574cf3b6fc57396eecf9cca5f00eb7116
MD5 215869db5e9e759d372056478adbd038
BLAKE2b-256 8fc602b76f6df418b40043214459fb96eaf77afbc42d92f500372e2c47621ac6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e06e3ba2d66ccac41da5d6043dbfe3c1e3ce18734d7a5547c0e6a7bb366b61f8
MD5 177a6cc649e1cca53fb32a332c263dcf
BLAKE2b-256 a452f3be9a01a88c675eac57a0bfc42c22830ab98fd851fd56d971473c09496a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4328f22cbe054aca9eb4d8304c5c29eb21881bd03356e0c48313cfeba7993a83
MD5 21f01c1c6aa8efe379eeffb045690fb1
BLAKE2b-256 1519a498dd3344809aa0809772c9fd4670df06b5e9762ece76cda8f9aaeeebe0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 85f1e7f0fe02166aa779990fc034244d5f8469982f90db2a3eadf557e20d25bc
MD5 328dae1886bd8a5ee551452fe9621633
BLAKE2b-256 0a58cb7cd47378e5d2e370c9ac585e8ba1a6e7ccb84a1b51d48960d04b689bff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a3b47c645f0ba72c461b880896cc8e99882091028c365c5035cb583e1aed533
MD5 5cda6d853bb342995ec60a55ad08cc8a
BLAKE2b-256 c7c276d949376650e9b118a1d9e784331c6070fe8e1744b12a0a14b672d4d7e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5f00238a99716a83883bc328062c6a42351d385d6704e023e51e18b38f18ef7c
MD5 6064a7075af59e9399b019dfd48c01cf
BLAKE2b-256 9ad9174abb074fbf8d369ca46718093130e4a45da4d775c9d9f34170cb9b9f6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 de74189251e5b0c17944076844ce909c512658fe0d05c9153640b1da31728583
MD5 28ba4bdf9dd64e07024ecf7cd21f3b41
BLAKE2b-256 ec9876c1f6c33d3eab229fc2c0bc2b59161cd18239ce9c6f329530fbfbb0ee05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a97bc1566f9184bafc7be364be5d36d9a067d4ec6e26cd90d0452642362cf61
MD5 022a749e8adc9aa4efaae3934b5860c7
BLAKE2b-256 9c47fa4818ee737099dc0eb1124526a926465e068a626e5a7e5c020fe2492114

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e834177107d5a48a2c970069e500ba4f1e77b93ba6f5867b2259972dd7caa52c
MD5 bb55e9bc7687bdac16470b6f51a0ea7b
BLAKE2b-256 feefb4dcbc037418e0e992a910bcf7f34d9c475098b53b4a4a803fbb6de33880

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6e66a619105ee66589f724fd22ab1ba37f7da232c8eadfcd28035c9d1375fff
MD5 ce59927d2b5aaad9bb422c616cf1e5eb
BLAKE2b-256 59b1fdf77fcb77bd62149033e686a51f6ef9a5b3c1ea63fa9de357f764c57d4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fe740d51d64bf554b9794bb72afc29ba893cfc7192b9f972e4c91bbb59c26f4d
MD5 b463bf0f64d3c43007857683b6b9aa3b
BLAKE2b-256 7894e2216444f9880f3ddfab560e0b4f3b59795595edad3af6090fd36994863b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b35812b1f51b5c6e8766d89e9d50354a0a78e39b9ec5550228077e2d6e4c3042
MD5 640de1a5f6b21ba70b91ad69ed20a34d
BLAKE2b-256 90457c0903fed33df3cd22de6a6f39b20f0eac9d9d8b7331e0a4066fe726c55e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cfa8ae26ebf47e50ca9fd44bb19c525b5ba2e8ad62cf5bf78e2d0cfb35a99d2e
MD5 c1104d15ca4af2caa404fb2426cd3188
BLAKE2b-256 648505e5caa2345fdeacf223409daf04392e4d4b754e8e0f29b4bf24aba99da1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 45f982f90f2b01318dd8649050e183a00848b80126800495ed877ef8759983d6
MD5 7aa63b0be4cbf6612867c008796e64d4
BLAKE2b-256 11cb2a55a897a4096d8a80086acfc82778d8547eafff6763e911b7d15cb3ae0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c39c64f258f9fb699318ebc276fed2f4bb8c30b3acf3bc03aa07a41559d8506
MD5 0107964a7fa22b9b763de0714f190fe4
BLAKE2b-256 cd94946685742e6f6d36c16b82d4ef34d17be7313d1203734cb680ca6643fe53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a2e30b693a73ca5daa73f6d83b041927217e8bbe06bbe97f5664789700b50edc
MD5 07f0382c49ccb0c13589ecb60cbe2d9f
BLAKE2b-256 89e1dd30584b1c5301d435d8f9c333d05fd2e57ba8c568a6b62df62b51fa17bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5b810a0592675b1948c3bcf4521ad90698f1f6bb2c74954e77f714c56acf04f
MD5 2d9da4a703ff459d0c76e2e1e3e3265c
BLAKE2b-256 c88babdd3559dc44b9a2238108b04ebc2c1679f5e21334b8ba32562d3260e6bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e713623a634fad6acb60eebf6352885aeb35f59aa56b120d8102aaec78a9fb2
MD5 01a2a7c3f2af56f089d316bd86674a1c
BLAKE2b-256 f41e4c7ffaa063c4992d8802b39b6b90a47111c5f891d6e794dc2c20cbd9c6a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 fc999e62d5745d12b227d20c307011b9cb3ff64f03668d9596cc146f6122ee8f
MD5 e25d533212a7845586ebca80d6c54656
BLAKE2b-256 847a84b1076c58bc111728ea9c3c0ee1738a72535e9fecd2a45f9425671b9639

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0cb1119db688446438e1678812b26dffa3d5e402ac49a1253e48abc2afa58fe
MD5 6e279a6a4473245d4fe37a95f021256c
BLAKE2b-256 7b547e0db78b011439c7d4898c9c5cd8893d39793c19acfac960572965546631

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8cbafb11868b477a1be56d7e7f7d068782bdfb81a303f7662791a17e1fad5029
MD5 ea2fdce3cfe61f89080f68a8fe6f9f2f
BLAKE2b-256 1d48d7509f800a57a4eb2d36b7e59d3390026cd7f4e155844aa57558a8ee6ed0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e50354321d9afff1c384dac3666ce16ffae37a910e89634553e99539ce744ab5
MD5 5f7b82a8f866e5c7138b761144025723
BLAKE2b-256 9b964aa4cf5e01d5c44edb0d7b17ec55a8b593648aeaef625abd7ef94fcb30b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5fdb3f1f1136f13a7d1fcc00d15cf28e9d03ac93aa6cc9de867c5a1909911848
MD5 9140833fa70bb969bd347d35086c7ac2
BLAKE2b-256 b60c003bb5d45e0508f409b0b44d0474036ae96180e367721c346a51714d08cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 0e41beeb56cf363ecdba97cd755c52de1d0da59be3aacefa82d629748e447628
MD5 c1026afcd6dea7eee34d8db53eb2ff1f
BLAKE2b-256 b8ecdad7192465932d5fae489e537485bae4eeb530822ad0bca2182dfb7e899a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774499381-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb6de7d38daaf3f00e30cad8ab2fdb16090230849c64ff8ce55edbdf45cd9706
MD5 c491863a72a2c588b7afdf83545db088
BLAKE2b-256 ee22de7d7ab6581621e5c2e8110ad6d302545fef6ba9d44308dc5157e963d7ec

See more details on using hashes here.

Provenance

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