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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: chromobius-1.2.dev1763595895.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.dev1763595895.tar.gz
Algorithm Hash digest
SHA256 f82a27d9db65e1649f27184ad71e1b014b6177676bac5e44e2466c84e3a147b1
MD5 bde53fca0be786c4e7e3ef13383f0ae8
BLAKE2b-256 9ca28ce7e82ece149e979313ec4422e585ac9af8e0dbdcfb7f3798bf883c3479

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0a58770a0b18feb57910881f2718a377745880b72b3fe8536252aa38b58625dc
MD5 226f5849136ef8fda33cea62bb82b57b
BLAKE2b-256 698a9dd470d18c9dd8d7a36073bcc5e6335f14a812d3054235325cb8a27e216f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e3bb9638800a47f1060ac3d246b22b9a1f503daa7974957b83a0b2c1d2a0ca75
MD5 ee453abba01edcc37005304650a4082a
BLAKE2b-256 1b9b22417ea3d8084557e7fa26c5fdc4bebc89bdc9e31988a36142d6deb486fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 487ffaf700512049664e0204fb941f2b0e016148ee4274d335242ffc5e082583
MD5 65118775dd614aadbd505d228f25895c
BLAKE2b-256 22e2e94fab843d7d4ee0411db58466a4c43f25e9e6630d4d0f6da5707f45c06c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 71a9292532a682c9f2d0ece21a557651308a195b6b07e40765146628b339d0cb
MD5 829ca3b9a90286a3f6cf66d3a697a43d
BLAKE2b-256 701d3959d3c6594d597704c24212cfc5a9f8985f0ca4adb33a09bec5d3459db0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a986114c561f144ce465017875950f9e830f7ad28a02a894624104c1fb9f092
MD5 8f528a30f893aa120ad978c01db126ac
BLAKE2b-256 02169ba69f5c040375a937d91c6b7abc2f323be1f4e24ca1fd4f75ed118f091e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2eb3430b46ded6215ea73c56fa12816a7c347e24b64e538121a6c17340508d86
MD5 715dfabc9f488d064dd78a49e8685ca6
BLAKE2b-256 2adf956b213a150047414f294ce4d16a44f6c4d65520b11d4325d37f3c98a2ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19c453ddec329961f07d348558bea26add6678c7b87962fb660f2bf44ddace5b
MD5 857c83f8b86706108efed6c045f03430
BLAKE2b-256 90255d2d03349e1086edcd69f8059ae48a31ed853591c663fa8df8ec7ae62965

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64dde90173a04af7dc9afba4bf6ee481ae26415df50edd6f3b05648db7ceb467
MD5 4aedd4e53b14d57d50352523ecf5a309
BLAKE2b-256 1a1f3f8ced677c6922907579fd682bf09e26023372efcd96fcf3236c1be934e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 5250b7dba9338d0bb1241dbfdd6f945ae4823389966a69d78b1e7e6fb803cb59
MD5 9b80376839b21d9a89d6bcd0352503b5
BLAKE2b-256 63681daecde2564e46b221e76e1ee7b4d5534d0a3963aefd246c236413817cf8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c88a6bccac129202656c01ab274cff71556454fcd4f5a0883c952640af83cac6
MD5 c341224a4745d7cd0097746c94adea6e
BLAKE2b-256 bd8b3f942fe637a1fb0cc41a491243f9c91acfe24a84c933f76fb3066fec4f1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 666098ba9eeccca6fc325b10c34d2727eefcb2e59667af6eda7b01fe7f08b25d
MD5 12f1f21ec238aa685481220815b7cc75
BLAKE2b-256 e5a3b58bb1525109b9a0f5294ff4f0134376259ef8a7e7b7873dc758a5f9c280

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b5c3ee72b5ef68031c4d5ab850dc7ba8b2f0c4fcd0dac932ffb2d11b0bd2b00f
MD5 f105060131341c278d9015284f2ac70e
BLAKE2b-256 3d8fea881cf6f398864744684335b92887703dbd369047902210ebf31d82eaec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e4ee2b4d31c2c2da28acddc8fbcff1279f5e3f0de1e6b718e2348a167390411
MD5 5e5f35caa300f0098e9376467c20379a
BLAKE2b-256 a85b13c139bcc61d20335eb0fc9d4d5008da8192e65702b6f9e24a182362f5d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ad5d0c310f51f3265cb825afa767be21696b637e98e642d2a15ce86fd8a05be1
MD5 4944055d4842231547dd50f50c29e89d
BLAKE2b-256 1805b4c3b33bf3500570d4ea1f0315bc8fe22c59b905374439424eb9a8f21d92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a700528a2ce1b5b67ba044dfe46bc915fda2aa5a0eeed78a706270c438eae74c
MD5 8de248b58e52e436f792282b904d506b
BLAKE2b-256 4bc4769859a4d596ead280e3a74228320cdbcbd71e3ab681e8676dd55d8ac16e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9bcb9b8df0ddf3ad7f97f0a3398f0e0248a99f9e2ebefe3f917fa1ff89228a28
MD5 0a68a61157722632f75a4f2941af44cd
BLAKE2b-256 1b780fc35176c0f8038f76171933b5939dc3889c24f98e488d96d0b8478c24d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f1032ca2a1202e649b2b5d20863249647c3c2c7477069e7f71efd0962b470da
MD5 eacbc1a1936e5f19bd29c9ff9c6daf02
BLAKE2b-256 e7370f6b7efc74584600db493836147b4ed0ca08fba949b21c08744692420376

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 657ccf252fb536d2abc2fefbbd9d0b17c7dcfa8ddd675c7112ba2795a9501dae
MD5 10cd9dca78aaa8931533022b611e2bc5
BLAKE2b-256 0b0b4dd13f2c846903b497297cdb55e2fb2b89b1ca3a52a8d031df103aca77db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 451ed95a50fe27dc2a54ddb4c91c11ad3eaf3beaa311edc2c0a302bedcf2da18
MD5 84371949165da702f9e86c1a03781b10
BLAKE2b-256 00cec7d7f52d37c740facb1778a08ae64447eb1bf1cb376595ba1dbf2a35226d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5c7a7ae41ae602695439d7b683fe854e30a5d20f734085952b3dccdca273945
MD5 bb6fc5b31c34d2ff1b9a39d3984a7a56
BLAKE2b-256 24de1312f86e2e61baa6c56423eeae6bbf9342a1bc05a242474191b972330d72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 63da4fe80678663c7846e918317afca8ba5545241916df44e5de73d4fb4c0778
MD5 c46fd224d8f668aea5a7236909589f98
BLAKE2b-256 a879d45aae9f61a152895a2890066d2223240ffa95776752951a1574693d8d3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0b49fc8dac3402fe1831d239a7e00a542cc48eaed347bfae0dfae6ff445a7d5
MD5 026aef7c95402f7e8314b187111d1129
BLAKE2b-256 2fb9fa81b6ee73e4f698d69f77e1daabb188c73133b43cd67c4eeffb7533b00a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 17a9b8f0dca23bc42f10a9addda0c0f96705e4c7259f1b67a06ffb93e978b484
MD5 e44b95aaf52ab34d9c8bc3e2612ba7de
BLAKE2b-256 d2de312759453afab55a3fd7757f8e0f8433a32daf46ae161e2844f2fd4e1b9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 0439abb014ab9df2ffa978e80d3d1ab4f18d5b4a0a04ea4b56bc980d333512b9
MD5 ea26cdffd45fe2cec5c07a458b4e88a3
BLAKE2b-256 ba66cffefa1aa59c0e15b5511b1c69cdbbf313f9d39d6cf1a6cbbeb625cb07ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1763595895-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b647b257ce6dfbbbb5a4275e230217da4cdfa7d8d1e3e0b7aaa80b226a203757
MD5 511c10e43d5865f723feeefa88159182
BLAKE2b-256 1a1d4b7689b8132348f9b35e6323546ec883f49c9f6e9795f29656ae8a84034c

See more details on using hashes here.

Provenance

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