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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ x86-64

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

File metadata

  • Download URL: chromobius-1.2.dev1774647354.tar.gz
  • Upload date:
  • Size: 57.6 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.dev1774647354.tar.gz
Algorithm Hash digest
SHA256 2e19b50ac00cba85a7342f9c0b0fc6a4eadc2d9bedb0c9f845805222193550f2
MD5 561f44051b7d0f548b8f0afd9c70bc6c
BLAKE2b-256 113d7213633c1742abb1787bb2b8262903288afc40bbac7ac22ad020b91d5c7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c18e7208c52693f148a6083c533eb59854a19ccf2a5239b7dc224f7aedc9e468
MD5 0c4f10f3d831f5964c42b19090dba733
BLAKE2b-256 91e4df1ca6b26ab3c8be2367f0db057981a1287e8b5f7599204a184eae81b57e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a9e4e2308a782f83067c38960d44c2ecaae2d6c1c7b648d3553b88831a548e07
MD5 f5265ad80d70062b93af2dc16c57544e
BLAKE2b-256 122a6b5077a156028ef8088b45ed58ba033f336246beedfd24a58828e9511b17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b9459b27a901491f136df762bc620c4c1ecd80c190f313c342540003e5f0119
MD5 a5a604bb03046862b3063d618ba934fb
BLAKE2b-256 2d1e8390777292fa226fdef48d217a2d508826632808c44732fa0f871d3a5d04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 178fc37121451b31cbf0e43024feebf0ea4aa5a96f8eb25051af0520608ad204
MD5 0c3459af08482c1aa16a4205d1c762f5
BLAKE2b-256 56febace8176767ad8aea9287400221ce84ab9804bc980a0b11de77bc3a6befc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10b69220c1d565a83cc6f882b0d67d7ac39507a6942d13d4ec9eacbfd3731155
MD5 1e1515ad2ecdf0ae9c22225c8515d7c7
BLAKE2b-256 403030f68b392eadef5ced402dd8f4aec5425e044c8892d2bd8369fb1c3373b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 047c91c9eb2307c6366c63aeed261f61f09dbe66816aa26b655a89fb6d521efa
MD5 c71b895f2ffa37ec3c5469f5ae390ff1
BLAKE2b-256 83c9f56435fa6dd288b36f10dfda0dd443b22b70f6f2e330b9d2eb9ea7c7dbd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 999594c4359590f981724996f7baad61109810a6cde00ea12ea9000f00824b4e
MD5 aeb694b8d0db8234bed33fa0dfe4d7bb
BLAKE2b-256 4f1cc638e0565c87bf2dba2b1ef3845a1674c5a65f2ad9019511f05f32d7a10b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d5f4cbf6365d6fa553e138fc53baa3d121f6fce41dfd03878506ee7af8086726
MD5 db7db8497cac96dabe184c68ec99d733
BLAKE2b-256 ece436744b4079cddf2eef530d27cc4c446e645b18b0b0acf45ea346c541d01f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c8a2aefa5534d7aecb6574e0ad53d4611d7793a1bd8c9fad70756b3d80813695
MD5 34cdc3b200033a177775e9ccd817109a
BLAKE2b-256 da6cc5228cd6a4bc514486fd663203f0cd4a6786f0795fe24a21eb9e4bcc8eee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d94275ce4d6820b51245889ecee24c255dde0338c56386c28f00e59049e07bd
MD5 331e8086a1cd0cc0d3134ff8758112ae
BLAKE2b-256 cb24ed949f0f4878a9064c7e603c6e20be1b6ddba40a0b4c0eadd960ccc2d6b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6ac4a8eead29c8c25b658b05ff44c719c68e64be6b07b7e441d86ebfe0694a71
MD5 912250071cc46b60c4b4cba15c0fce6d
BLAKE2b-256 157881093140ee4470694d9b88df6b64022841bafeb140793e86a65012bfe8b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 929135c8980aeb9ed9de0efafdd4baa7d46fd07f1a6cdc31a98d116ffe9b7763
MD5 4c1c07292831d6f61556bd8e96acc884
BLAKE2b-256 d80c3a980c41d81a69c59781efb12d27217756f4be12eba501cc332b75f034b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff8cfea9924c2e0d1866df4dba86ab9175c519cadc3920d0758d2fc3d33e6d56
MD5 894d2e13d44a104add0718c2ff6246df
BLAKE2b-256 e2eb0d11d1b4a21d50fd6da41d3352d238d971c20745d4653b58255aeb308a4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 4af9272de48ec633d0be3672e9cf28a4602deea91fe617f5f7cc1a6015eba66d
MD5 a1b59aa5e998a87dc63eb13efae3aa76
BLAKE2b-256 c6b9c540a71924feb2fd4476bb0bf51265f3db68c332035d8eb33f0bf6557815

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0ba53b3be40faaa2700b166805c7070a564ce3bbaadbd4223f4a6e67a00ffbf
MD5 091e83e6ddd4cbbf7d85d4e5954d59d0
BLAKE2b-256 2adac84bcac6e4551d5e367fca63f189ef15432d24fd22e3e74889cd8598fefd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2736ed2c22bef432a9e6a8a07f1a8da6096b1061b0d9b55790383132910dc33d
MD5 98847abcc4b5a85fb83cbbb3fb6c674f
BLAKE2b-256 8c63ba88d84d7027b3b437feaf3fa64edbb74942cb7e749ddf60f947de14c5ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0c2e3cd66a716a8854af116ed0d7563a29b85c85a5de0e4024d0e62232f513ee
MD5 576efc75efe3c17d84f477a609d289a6
BLAKE2b-256 9e9b276776c92c260f90ad00158e4e0739d2d4558cac955342980003e6074b6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0f1427656bbb9dab14f31f4dca564c5b5c58b50abaa558dda5362a38e63ab3a4
MD5 fc66295a857f9098ec1325e91764c57f
BLAKE2b-256 15a221c16f5e57a86640ebc84b1f59e79964827d6972ee62e08475d4b8d170ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 10b639f912b3404caa8b31e004d52b4a13c181659268405e48587100ede94e42
MD5 22814a0c8be18c53d6e0c603b16c94de
BLAKE2b-256 93bd3092eae65af95c4508df5f9865e42ca39bc65ca791c50d1248ee0c29fe92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8c658c1527a75071db4973d2a399b95d8ce99f6d9da4d4386fb30e821d7af1f
MD5 7b2d046becce34012b37d1b46ca2eeb2
BLAKE2b-256 9864ee0820a0cb0a38e308e697a505a640bcc12b588900e4fe66a31ca38078ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5012485766dca8bb3da22e75aa415b5c136a99b68ec2c319696a12dabe52e88d
MD5 1e051a84e85c50b15493cf246f776841
BLAKE2b-256 3bc91d20bd1f52e4f5f3d7b3fcf71002257a56aba8aa40bca8c74adc59ba106c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03a9c538c26e9a410edcd55b76cde06106443866df61760341a7a5f0bfca27ed
MD5 00cb2771165e708c726fae7b5aa31313
BLAKE2b-256 514f389ed8dd70fbf4d2347a387636ed4cef7d365a3e5e22144a307d9231f185

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 68476d6dbe4b0d6b966edb8e4791bf795ed4d1a84da247e870125ba9138fb52a
MD5 6284a0d1f94a57ef3f62142e3535961f
BLAKE2b-256 a791818317fa1aa93fd924fa30d6bb50d9308de497285af9b2ded08a90478393

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 7cce0a0146f1ebd3e60a14484a62e17c6cd06336624d8f35b47d563013a95404
MD5 cf04f2146c088963d28036c3a2d2a1e9
BLAKE2b-256 c8f5f2ee83826086110338e329e228ff8fae959e3e2a704c955d794a42e3a829

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774647354-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c82e65d88938a21e303b57e80fdb1305563942a9c2ff719494915155c20a1c40
MD5 e1b24625117346fd40888beafdfb6dd5
BLAKE2b-256 abc9c61efef741584d35ad296e3bc1d087d64e82f83259180daf816c6619d05d

See more details on using hashes here.

Provenance

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