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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ x86-64

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

File metadata

  • Download URL: chromobius-1.2.dev1774642327.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.dev1774642327.tar.gz
Algorithm Hash digest
SHA256 55e237fca50a503338b34a6440dedaf1ac95c7564d3ea08c63831d5546d322fb
MD5 5f05e2b5d3de25ffca149d6b9d3a8466
BLAKE2b-256 637887743334bdd1c00d52584b7196555db993cd0a751aba3b66de91553de32d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8ea7b597ba404f8663127d921cb7498781a76ccbadbabfa2acd2aae28969ed14
MD5 bbc0b79d0121a983024530972ac3183c
BLAKE2b-256 65adf04dbeb88cd6ce30e9840d3e59ee7f1576fc31ba2786a5d73eff3ea43dea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9d492182b51514760263fdf8b047c159bab5c39a3e1fbb757516aa69c3b9e85a
MD5 a7c5b4d0e51eec884c9ad9dcdebe109c
BLAKE2b-256 ee6404afe7a7affc4a9fee6f5b3d94a3d82040a174d2cdab8035fd112319c82b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c4e5f76f4a29c21ff1094ac1408fc44a7077de90f936022cd35ffbc85fab9b2b
MD5 5bf126f0f71da661b0e05582451130f7
BLAKE2b-256 a9e79cca5ecb46fca9b4edf2aa7eb4e657e85d5189a9104ff2d1072688b41e56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 69b91cee94a82c362bd808cd3c4153eb7cc6a690e6f22da776ff72804038c809
MD5 4d55008282d89842894adf5545fa8bbe
BLAKE2b-256 5db6356a9350a37c67a2182a70b9b15a1996e83676942c752dfd30300b18d1ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8bbdd1e5fc121559c86433bf79c62c3852d6c3de4a6e836432a2e1f6cddb5cac
MD5 2fd334d2f35ff49624e388d11c0b09a7
BLAKE2b-256 c7c59dc2606422de4447466bfed515b6a358f8bf6b02748b8dd73010bf1236bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 475a22d3823616e7759a75a77a709a3de168e45899ea5a7ac318d20d20e457da
MD5 2cda21812bb3fc2bc4cbabd716bbddc7
BLAKE2b-256 c6d596015938210ac51ba8086e9b3c0e9ecd161f07bbbf52ed9512ac36d797d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b41c78fb3761fc7483d43f12f6ffeb671e6b034e0423b9c2fe9a4ea774f19e1
MD5 6fa2a88a6572c86d207cf2af29ac4ece
BLAKE2b-256 c8f9bd3f2f84ed738b76e0d59fc93b3c3a933b3e3d83efd33f133aa3c99e9716

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 709abad108de41a9a02659c3aa355ce48a96a798c25e2e2a77b689b8c13877ff
MD5 2199b88690d4e743ed661f46ee2bf3d2
BLAKE2b-256 9feed7757fb0ccc47e83ab9b6eed8d70f6b7c3232e138617e0b6034a9304dabe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 38dc61a6d01cd0f2c51b539827be6a6993bfb8d1253f66c71060f42fcdd9959d
MD5 b56b0e4522acdfeadb2ad3f8cc3e1b2f
BLAKE2b-256 93685fd11dc0ff54c89cf7d615862c063ec176c054b29cd5a0178bf587b41914

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff848f762d0d0a371901179aa01792d34143e16e1ec044ab523cb3baa8c483a2
MD5 2e68117d87863ef32795c719c9c25439
BLAKE2b-256 c812be5bdf18a61f038a6b05936817727be69307bdda4d8ab8661f1d55428cfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4bffed2c38badf39de7f10b0bbf61e4c49887bc1e5978572c42191a427712ef3
MD5 1c794604a1dbd05436ccc1544a096275
BLAKE2b-256 2554916f86af842bd2953c425a9f8377bf3b36c3cdeca6f7295bae53c72aae28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f28ce66512d12791b9adb21703a37d71570752a703da9f7b8dbe2fab7d9df14
MD5 ff44821e6a79189844d590411510ad9d
BLAKE2b-256 50cdb9692972579430222c5cb967d900d3eeedb9c4882e2d23ad441cc33adc9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 30acf9bfba2cc2d2ca65a8b18ab81ea2ec82000178c2e69371a05f9a5ae76fb4
MD5 3b066dc3b289bd461a08f8d8c0ac3c05
BLAKE2b-256 4b70d538692a5c88d20a435ff6e5b3ef3de83e55704e63ad1852f65a966f468f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 32639857239e2c4fcc7a2d1ac899f4b6379a6ef53db403bdc6c1bad6de6ea4fa
MD5 1d7649f0464918eb62fd0e76faec5f82
BLAKE2b-256 107ceb11aff461e3bbd7bcb2182ba5a022107c7d4641d16680d3be4f54bd152a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94b965b10cea9b63b19cae85cd97e8dabc403ca4dc86535b015817d1edeb53e5
MD5 4dc9499386b71549e08ceb370a8efefe
BLAKE2b-256 b18fa244e44b351881ff91801efd80c71b9b69a8073fc3ebc6d189c2df65d51e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 38d28b66b926f3b61ed808ba60089db41c96bdeef51abedaf126620fb3dd3d87
MD5 1e516fe7e03a799cd99fe672254a1a24
BLAKE2b-256 5a8352076a03d6535d8273b867e619a93a351318d8c192d218c88e238f07c4ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13f2fe563dace00be8969fdc1e31d65efe2cb0abf9808ed6f4991b196a753505
MD5 e72a028cc8d4eb6a8cb4da4fe311f590
BLAKE2b-256 b0c2c8ce902daff11f9b45ea6ba80dc807a1c36ff6161dabb7ba7a8defdbd42e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1630557329967aad5f46dbac6c3dddec9969c71d7d11d973cb8d31bac9089a0a
MD5 13d232096bd8b28231c665911578894c
BLAKE2b-256 e588bb25dfe1c77b9437acb4271fc406cd218d05f7b17124fd56bf2a88b94967

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 60d22fb44acadaa6665ff5c2831632fda708262c4c0df3479eb3c8ae88c5a678
MD5 e3901a086192dea06eb4f0c5b8f5d64d
BLAKE2b-256 a759543345c48061f4ada01cffd8eb86e702fd5aaf7b1bcab6f39fa6c34c846a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2f1b2aeef9ad1f861dfc7a4c75c093ea2a3b97159aa78229d3ec3922b158e57
MD5 914db1e47020cb16a79aeba4d87b754a
BLAKE2b-256 01ec4193a0724261c6b3f53d2c86df4b8338ba4c6d3664cdc346abb8ccbb4137

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5cba3a9087952ef9f5952b8554b39d8ca14990bcf7fc3f485652a82c7a3487a1
MD5 870b226f69a90ed4a7d05ba23d8b459c
BLAKE2b-256 db8f942737adc2fe3e848dc37f2552075063740c247041fbb4819edd4d4cd2f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f87255fc19033e1c02fe433b03282b62c54c281bb6a6debad5564043678553d4
MD5 95a1b36cb77aa4b5da32b6ea105612cd
BLAKE2b-256 f098b4e317b7d9ebf1fe24c978f01fc2cd2944abf323fe5f16e4de966f653e54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bf214430cf1fd1effd2d34d9b4d5098a6054ef22a1607839acd88921690f588e
MD5 f46534aeaa485dda146268513df6c506
BLAKE2b-256 fabc80034e2b17b84281e1a5a05b3747a0cea4453f33e410ddc64e6d86ad1fb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ba880e6c62ac268d6449062c71a2a2361e2d06b04c53803a2bd0115374d33165
MD5 6cbc81024a0c1de5fb895a2e2e4cd6fb
BLAKE2b-256 2e6c3c3fc2f400b4c21e0645b566b9fc5c98da194eeb15ab905868a36f09ef95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1774642327-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d70fac8ab5a88bda37719f8517e15b5f04f71cd967cc11a746bd316595d01c92
MD5 b2df6ba6fcbded389b63c7267a818484
BLAKE2b-256 70cfdf54412d5c77c8de6d7bca1a8241140c31d5ce9f221c9c723ee05ca0b136

See more details on using hashes here.

Provenance

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