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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ x86-64

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

File metadata

  • Download URL: chromobius-1.2.dev1774659305.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.dev1774659305.tar.gz
Algorithm Hash digest
SHA256 4f5716a6786a5229b3f432ac95cc7c7e47d9632da19bdbffd6d63a3a517c3dc2
MD5 0b2005d8e210ab4a918b2ca783386c2b
BLAKE2b-256 cb953396e1c8d7f370df31954576f3fd34b78794515afd96031c778f320f3f94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c60c0ec56c2fac1738d3d0af5995b9ee3644a55c17a8c42a54d781f3065f4c93
MD5 c3f74ea918e612ebc60f7ee26f96243e
BLAKE2b-256 f756a13970b2b1275c782555008b1c957f1716784e8f1601d0bc54b38705f10e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 050ee55ac6d72596d28b98ccf2165420b9713bbeab318a0b2aae7088bb412a7d
MD5 d4f62fde33a6c7f7b42cc5cd886ab47a
BLAKE2b-256 ddb41ac52e1e1e80a92957b88b101bd9003b6e2cdc0086c3131630b96a9f4150

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8d6795193cedb2b12d9dc015c9e4460ee5b1e517676fc6aa0d2646592ecdb5da
MD5 ce0b17b332a384f296b39d79c5d023c5
BLAKE2b-256 d93036e6c7cb3fbde53b35a71f5b528519e3692b7e003b3d8145215c3154ad5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 bd2a795a26701c59b05880f310f67a676eefa165137fcbc77e75769163531ee5
MD5 0d08b3a9aa665893a0e41b896cebb9fb
BLAKE2b-256 15234bf188c701fb3df6bd880750e9ae6dc7bb14ae68100b10bb6c7d2de356d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 852b67e06b2f97fbdb354a2d368c3022898fb911302609de682129c720b4f83e
MD5 ad5bd108bbb96b043ae88538eca943b5
BLAKE2b-256 1a08b2dd296669a4fb9e34e92b5b8049faf1977b0c7526e39ed561b06d458b20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4b9668d2f7fde5690d39f9a55fb9193575866831b6f4c0f62d0454a5223536da
MD5 85962696a81e0342c73eef382ede13fa
BLAKE2b-256 49085b1da35ac3341bf6592a76fc40127176d948427ddba87abb218ea4261040

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c10c4b8f0ea070477978fe5a13e207a66338090f71334bb4c6e6ce2688e965e4
MD5 f4949f4d2ae778ba20a46c338d82f05e
BLAKE2b-256 b95b1b086c154f0a446c2050572f95ae1d6f4812f2e54d0fa33f8af492789718

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 92d78a3769b4f1ffa1b65f7aa93d7e8fc8dfd036b5b70415d3c63d28cf52f853
MD5 3208996c33187c71cdad07cbc1432bc1
BLAKE2b-256 ef9832302a2d17df706015e1dfa0d4637dc9d69ef6fdead3bf1dccdebfac2f51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f963e0c4a3c6c13aa21816a92fb1d25bee196b9890937071b341113798c01c62
MD5 3c7d8b4db13e3c4f57e4e70c87a8093b
BLAKE2b-256 bd992816b0bd4d33e4e0fdb02d04bc97e4e83bb1aa84490e7040a5ca31d26068

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d4b83fdb9b25e046abbb75203410e7318295bd84335a52af45d5a13572cead3
MD5 9cd4917a3b90a867e33bdcb6095a0e99
BLAKE2b-256 f81622353aa09e9883bbbb15be3fb74d12164be86923530827e8616d9a126d34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 245ba409d6f87b3bf86a0948e2970d569fc079c8b72cf1d55679641093a7b8a1
MD5 6bf607b5a5671e09d7607bb766b48dd6
BLAKE2b-256 3ec6eac22aa35aaf62221a25748394de9799bf2f4ec2426bbab7493bb56490b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 164c08263fca7a60dec200b2aa6026cf0d6f3db4fdc6808c1306d94c4713eb04
MD5 edb7d2f20645389af3ec0b720a272dee
BLAKE2b-256 cf45a8bf813e2f48947656fc436400ac1a199a320de4ecfa97099e9de4327c61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 860c498637ac48dd2699820a795d5ac1654ce9117adf4dc7d5ab4cdc001dfdd9
MD5 6adc148bb40dd9c9b8647b9746c576e2
BLAKE2b-256 0699867dbc3249f0718d8cfccd067351b51067b67ff1597d4a2df414a8087dcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 32efab362f5a5fb95f637738daee9207c56bb8a7e3f5b6f625a4f53b18a64075
MD5 e8d252ba25289a8f097025045ad74f77
BLAKE2b-256 49fed9ee1134f0f2a1a8c93765b60adead377bee10b54922a1ac61d11b9921dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a701acdb4cba437d8b039708d48963b949e86322ff5270d0c2f3f19e443df4e4
MD5 cd4f0947a43abc9965829bbb624236fb
BLAKE2b-256 2808b54db47575847cfcbc88b883c069925bcf335b3c69d8dc6cf08f504224be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e36793b1d295605cbe1655933b717b32934a825874b38f3e175276cf07531347
MD5 dbcd786853c0f860d9e43e0584da6d13
BLAKE2b-256 13c91099952312309071dda81a9ffbfd247a54592903fe72005719b55d8f1080

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3fa880e18d2fd9f3b6fca8c9cccdcc47a5617fb2926acba1b6abad0453b4077b
MD5 c89e414b1008cf9794be2cb5df9672df
BLAKE2b-256 f0fafa5759b7aa2903633741db9d96a0a94c8e11ac6b4247274976d2a90eaa83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 906b58d7255ca3240343a4fa492e04dd0cb56742a17785d4398038bd3239d2c6
MD5 7676df7e295815c2d6e4fdbfc42d0c3d
BLAKE2b-256 582a2d861a4b3dd55a85282ef1b4757714aed17d2abae65aa6f1d5160cbe2e52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e8b0de112f75eebd9864fb07b52def7f5466ed6ef1e2da4110891ae9a40d38c8
MD5 fdee8cd41a8873a89859d4463f0810b5
BLAKE2b-256 38e5c49711340bfe0926c97a7e12b6ffc7fd6fc03fabed6d91f257017d849904

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c918ab99349c9b8870668aa0e681110750c3e8e1bd26c4351ad20fa3361f8194
MD5 f448b07bbab7cda163f66b55850454e9
BLAKE2b-256 8222c8c1741d94aefce0e9c4971af8b0061b936028d6c48a0dca34a75c910124

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 be9d75b916a4c5376b9e915a24cb0979f4aa9f089dfbb1d3db89d883287c91e8
MD5 bba8cf165e4a6c960c6be0216c042616
BLAKE2b-256 180042d986508befb6c3cd223f64098efe9070e7607a7e4efe848d9039be660c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c3b030204340af86b3bfe321d3e34e2ff9c2aa46590d2301f7c9ba7f28bb633
MD5 ccce0b1047f659d3fcc56ae2e6d3e802
BLAKE2b-256 e5510962658f2510963db2258e4ff117f81b0887f783898c9a333be72a36073e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d42bc1b52c47cf2b9abd7af26087d0e9f30cf1feae3c50b9697f4c9839d7ce07
MD5 8cb1eef7a338e40485d36831d33fa0c2
BLAKE2b-256 ed0989e8b5d0883175a54331174bec2cc52782b2c6c61ef8de0b8457fbfd3aaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 262b23614b49658b9f50d1e22d3ce97c710865a6ad9434c16c2c8e72889ffb8d
MD5 c09e0968a95b2c52466623538d948eca
BLAKE2b-256 a09e81019ab3408888b9344ebc874521636fadba965cf7f3664b5b672df90a76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774659305-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1fb372679306cc1ec2d198d3f6aed8836153b82434a4e4e148256c0ab44af720
MD5 6400e86a8b978d8d542cd27b2c6fdd3e
BLAKE2b-256 2241432eb7a90fcc3930a035d6bee60f16703efe1c3216a1b09e131ccee757e8

See more details on using hashes here.

Provenance

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