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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ x86-64

chromobius-1.2.dev1763278958-cp314-cp314-macosx_11_0_arm64.whl (879.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ x86-64

chromobius-1.2.dev1763278958-cp313-cp313-macosx_11_0_arm64.whl (879.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ x86-64

chromobius-1.2.dev1763278958-cp311-cp311-macosx_11_0_arm64.whl (879.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ x86-64

chromobius-1.2.dev1763278958-cp310-cp310-macosx_11_0_arm64.whl (878.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: chromobius-1.2.dev1763278958.tar.gz
  • Upload date:
  • Size: 57.4 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.dev1763278958.tar.gz
Algorithm Hash digest
SHA256 4356a7c0815547461b26f589cfd5470948e8ba02b8e62ed6859f790af157052d
MD5 6b3a672862c93f10dd6c4d21cef571e5
BLAKE2b-256 15a39ef88e30314f5c26f25877404fdd42dbde1aad5d5b4c3020ccc2c6c40c50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a647dd62346da649f9959c783969a63a3fe8f83ae21e8e6c2796d1f9168cea0e
MD5 d81e26fa861b2751287fcdd63e94feff
BLAKE2b-256 68428e8f15f94a840c43bf0009102620c48cc2420fcacfd9679ceff674c4d87f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 52b5bc30df8f8fe08f3479c6c0d72463294c3db962e4200f073549993ca9ef4f
MD5 532cd3f058332750060fc22ca0e9b03f
BLAKE2b-256 a080bfa96b6d24ca027bc5c7e405acdfd3737354ab96c068b90ea5600c98927a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f514195cfc470624e535da9b8ecec31b86a2c52ceefdf7663f17463d9356a69
MD5 54ca9996a314eddf3d77db1929214589
BLAKE2b-256 9bef0ef342d3ee33722222f2b79e4065d5fa4ea3137217a5960764a6b9e70106

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c655eec89c08639c93c04a9dfa3d909acb464cdbfeb67b68a5d31a39fd7d0f51
MD5 ce9e7e43a6a0e924dd9ed5bb242c4a22
BLAKE2b-256 95afa18202daab9c9827d5b5d82d40b534ba492a78ccdeef2a0c81fa1d7f5996

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40de2ff634722ea7a9c640fdcd6fbdb6eadf8343c1ca5c6bc6b6ab5226f42166
MD5 e66d383f39bdf45a2931b14ac2e59d19
BLAKE2b-256 28079acc3aa663c66fbc620a97c15a0f54a1e3371a99c3720c2c10ceb66a02a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 82b977f9e16608ee5c3fbcbb1d8a0b740f1b05e244a8d5495ce4469c71918f2d
MD5 7adfe744d7c91a17c7f32c073607ce09
BLAKE2b-256 a2d635b8d9d3a51b1f39ceae7ec1b7c2afcd8b6d7f2f9f3c2d7134da4abad3eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 143e13b8126678e3f92999d55a0e21b57c0fafb696327677cfe5578d3cbca460
MD5 bff467cb9e331a7c9f3a6bdbdf466944
BLAKE2b-256 e5319591de5b4e159285b73bab2ed0ce2f20b074a812746a2e813648a6236893

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b76adcc91a7e4762fb9a63a55fcd794bd3707c75da5eb6a90f1ce90b465f4a6
MD5 0a87b1cebc14d6adafde7fd1245c42ed
BLAKE2b-256 233a60edce636e03d302cc8faf0621d28af71cf12705de0e40f200cc24f3f901

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 35cad1d81ad47db4dd98518bc6c384da221378e952320e984468acc9839fef10
MD5 d38fb01d2c57c61c92b4bd14159fdcdb
BLAKE2b-256 14d8d62ae031445ff9fa8e92ec455e3a3d9ddb4b2db072136e5a7f28d9fda0cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1fa47b86139cd3c1cf5bdaf3be89c7304eace5582337b8db2fa9e2767e4f877
MD5 4fb847b90c16043b9298bc3997b24317
BLAKE2b-256 fb6c7959692be766169c4a75e7c55605728d028dcdcb48a52cc934787c019634

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8413c4d4b139eca9b6d6ff5271ff15d0865e59145666eb15125c2a3bfa384174
MD5 6ec564d908adcd87c5889a648719ec52
BLAKE2b-256 24cc67990435cd0564fcff254d17cd11dbf5b04ed180aa4631b6014932da0ee2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13ea18df78c3d69e794702226b8388e3913fdfbaca6a81eacef24257cadececd
MD5 1929a6ddb592e86f56da171aac20b2cc
BLAKE2b-256 a04d87a49ebae88de3880741bbf5f33b9844e9cc4785df6dc827d63408491234

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6870b1420baea584ddd73fd294f8a5d9c19678f240dd6f17b330f3949552a22f
MD5 e9c2151213f12d37d71c7a09124a1997
BLAKE2b-256 7b8fce298d324d5772ed9305dd1fd8702f8327ea8ccb1bae3d26d426c7cf1f25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 86c01a25fb09be646f5d87caa75c79311e9cf34562b2fcff5e1b528c6bb44fe0
MD5 37c4cdce031f1bdecc9e4b5d4bde66aa
BLAKE2b-256 e701568cf2c0a8da79c376f6365d14c7dfd17d61c874146330dca7c9e6e4035c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 643dd6db786937b80794ba8ba93c2053cb9200f299a5b9d0cfef91482db6c4a5
MD5 b3320c8318836fab146cc49b9e5fd2cb
BLAKE2b-256 395ada3d7766968b6d6bd8fb7a3472e1dc6fe322a9e5f700bdcc0fe7aa34f76e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fdf6339982e61c0da773b68e7232092c50ac424a3008b70e24bba83828b1dfc9
MD5 8d63a5d78f11e57c01d9d310ecb876c7
BLAKE2b-256 8577a5b3edeef5d849256fd4c7c9ec844bd2630a3c93a2e4a78d3f05704cfcfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1030149ff8b7b679a5eb39c8397e8224cdfc525f54f7e56161a064f0cf8d572c
MD5 3e968bc7c7074d6541233f2f0f92c55c
BLAKE2b-256 055650a9df53d9cf1143a8131950bbd4b9c1a6f2d2c5ecdddafa8d94a18d749c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 50dd914b27605735d50b09a87d83b4fabd777d7ec59f4ec271a63f7e476ce461
MD5 b029330399fe6fc880a25a20a7ed33b5
BLAKE2b-256 cbc2ee62d63fc99cf132a3ab456e7705ec083e3fa3f2781649de4b17042956b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 4b50310bf561650045192c2cb716d24f257568b371e132ce15aa389009c0c53f
MD5 8c49d65d0cea3f6f842981af90d0cb83
BLAKE2b-256 a2a463101e5c47c4954008f4a0a252c210928fce9fede639034aa8078cd00937

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1bb920cbc2a51c258c301f05e5e5025c9819e69c049323bc9558e551683330e
MD5 e92e00c35b806f3f2398f62160047c92
BLAKE2b-256 4b0fc5a762c736619e7935d49e0d45b5a47baf59ffe90d65e42be11fadabbe81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c1ae3e84943213421fd6c83c0f5cbf63f18a18e6fcd5a1051aa27bc972413d7d
MD5 6e2876816333b1dcb13000c505b9c928
BLAKE2b-256 be480598e6eae21ec6ca050183f37ece42da8048567b8c861facffaf5a85f7e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ffe2de3a4e492c3a646bf69cede3381395b6b1180d0aef1ac18213d0f7d71a09
MD5 a37b43afcb8b9a46132cef2519362c55
BLAKE2b-256 beaa5a2378bef11ac9d34f274f2f6ea412ffbe79820d53c4cc9bac84de744c63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d19c6b0f6ca47936a18d4dd9b8e6bde7709ea96602d67d56e2bfab522137187
MD5 acf8007c54e1fd00a728fe48a1db050d
BLAKE2b-256 9039f56b6765df997f43b05cb5ea72a3a6a128f7fdc5c495744866a32a52a42c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 070ac6b342499b333cc75c546b7c994c0a0817f90c19de4c524c0f3ae284e6f1
MD5 4ffe58e74dc5572f420489d8a5e3c24c
BLAKE2b-256 a3ce428cffd65df854f57ddc5016e4c056678db78297d0726cd19a4b4f621593

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763278958-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecad9c1c62546bfcc7c6f18fd9e74aae787893354f9e2036f45ad14b1417454a
MD5 f03fff87f76e7c546e60be87aadf4342
BLAKE2b-256 0c61253aaa0ee059476d5054547401622d9e4a8d86c1e5fd84c103a6d67d6ab4

See more details on using hashes here.

Provenance

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