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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ x86-64

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

File metadata

  • Download URL: chromobius-1.2.dev1780590817.tar.gz
  • Upload date:
  • Size: 57.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for chromobius-1.2.dev1780590817.tar.gz
Algorithm Hash digest
SHA256 ed2ff73d064cceb8392528e9530e698d0c81fa07afcd89b80231a02008d668ac
MD5 e0a391ea46ee9dd3da6565946273f72f
BLAKE2b-256 c089b4d296f5408ca24cdbdb5df523460e3e65514cf041952b63489a37a83c37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d32c5c8348ce51deb1870bfa1da02249a85fba5dd9e47a5fa1bc635c6dea6916
MD5 21095e30a9dda9dc52f59a07f3dcc876
BLAKE2b-256 9e2c08afc86276b45d499d60cb47295c4f710f5102768168c16388f17b961dab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6d94ff6f2291f0a2339fdde0f0aa048a513b2dcd226cd54f136954a692ccbf57
MD5 6964b19987fda1057ba4d306dface77a
BLAKE2b-256 67a6992d559b7903a2fe0a5094652657c99655a775f6f8a788613cc6fab591e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8a8d56b2d66e620ea2cfb3a9afd35cd994e362274ff7b6b097126d6522b905c5
MD5 04ab5006715efa504916cdd1b3fae938
BLAKE2b-256 de2ed145a29742c327233a7bc3870999dfea5839822602a17e203e38032320b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d546c6ee857b485df8c5ba90b5dd73d042bb1d2f0f6e008fd0d414851f8f255e
MD5 b2d850d45bc28486671c3bdb9d4d96da
BLAKE2b-256 c0e160790a25677edda8bc66f6aa5b36866ab547a1043fe9def5c304c7c6a349

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8ddc2bb7ab7a03b478ccd61bbab6679aaf23ff5ddbe095c3b3b99ae790b543a
MD5 a085cddeeff2e4aeabf1bd0bf98b16cc
BLAKE2b-256 52ce5d979ca1604e015b1dfbce0f331a782e3bb48ea714f81facf519e2c777d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aa5af1283124ac0323386dc5b538107c9654de291b79712fd22810df9a5ee039
MD5 fe02bee98229405bad6d2c98a77046fe
BLAKE2b-256 667a754249ffe5a3ca71f0a373fb4a1b3b63dcc09048cc14b151e2596668a25e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1344de37b107c57df4fec00dc600c6c28de1d6e83167e5e28e3329787933bea6
MD5 8bf94a9689699aae1692f77533f58770
BLAKE2b-256 cd2abe0408ce3b4533c0b7c784af2867771bb4c9d7f4ab0f5057c83505fb2b4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 85f6c5bb0bef88939e9577976f5e21f69d091379e2fda8599ac0a64e78efba64
MD5 34440f91978e9d2f4ac48a862041668b
BLAKE2b-256 d1951e0ce24f16ba30409d8f050a05063e1a5f93971838d98d214cc9c8019826

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 978e326256d5d6bb5b57ee33ffb16dd8d7cffc80e327f79e358455520202126b
MD5 46b256ed29602166d4edf17de2a4ad39
BLAKE2b-256 6519d67ed76a17aabc4b683a5ced8c6b13a4816344904cffe3ae84472cb7be17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c181f08cb4ae6b3f4bc557ad7fa7dbac73ffcdf73a36034ee3fc5e922cdc1d65
MD5 cf882638af671250dec7c8bde0cf89bc
BLAKE2b-256 ae906542ba04d8d261a19ef228df0ed05474c41ec86ba61a19670c99d6bbb493

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 405c457c9e4a523a7b820cf7b402513bf30d440fc91b7768aa6e0efacb76ea10
MD5 6a52b2230a0c5f97a8a4faecf7bdf84a
BLAKE2b-256 1d7e391344a67645789ac0f31d0e9a38eb4711219d229480180f27a6c5e4cfe6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d6bdf0ab916bfd09516b1cdae0480a22f2ef5430e8f46eb67c654f0fc342c02
MD5 c394b198ef31ee8c4083a72b575ca012
BLAKE2b-256 6220a7e18177d0b805302841269ff0f0ca4c0889c24a44dc7eec4b8fc4882179

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c056cd72f6f4d2407346a6328327d300642571f297044b45487acd228e779ba4
MD5 d3d3234b591261db7ef301c3331b3ff1
BLAKE2b-256 2c99f2717ad71776f1f61ff59f366647a57188105e44e67ee7d391f1e869f06a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 87bfa2c889a04a129249d06ec561ba647b77666ea9e54d1d086ac27a3ba850fd
MD5 10a6fa73fe3422476ddac3fa18b1ecda
BLAKE2b-256 a785cffecc9404d400669a8824126720c539685041db27305a9c786a044045db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca73ec66cf6b6cee3df07c62d0ae3844645286b476dcd494857bbdfc997c497f
MD5 e564fc804e9703a621cee43404d7e546
BLAKE2b-256 01f5b534a2df8d52737b77f1d0222688f277c2393bf4001ac9581dc93c3822c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4e4be4422801f5658a4f54f8c3d86e67a2f0755be3b88ed810d3f8e2a180a81a
MD5 05a41ea60facf1bb59e5b24a928e1a41
BLAKE2b-256 14d663d813c0b33219fa35144dd97fc0eeabfba4420615f3995ad1076a7a56e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b760b2227f383782c6d6d28c3a4fab834484bf198f4633fbab52996cc335f8f
MD5 94bc2844833e794754ad421871c104f0
BLAKE2b-256 464174dc471866b866d32d7627e0f0d28376395b85e3e1fa78ff8cc1a0552c22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0db9457ff1b7f8a855aca50c41e7b531cef46930bdff32b6c23ce2c5d779d5fa
MD5 4552b8885913029b134f610e23a819e2
BLAKE2b-256 c8585b531e4b1057c3be0c6ea7b6f64776c08977784881355f52e13e19a10ddf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 4eef2e4be94b8e2f2de1c2c7f7303cd84ba984f0ebce3a7cefd4ab45bb6c6862
MD5 dd8757954f4641b99eaa3bec474b6a26
BLAKE2b-256 a37f046fd2dd18ddcd0c431e1d96dd8231ed5a1ce67ce362743688a0359f32df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d95cc0cca3e07443b39633368518315815ba7893074611836109501bf8f31494
MD5 04973e7dc5ea28a33546e080def8a57a
BLAKE2b-256 96b671fe108f48ccf1dc402c107732645371b65b1174a55188a4e5011b20e14d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c9d0f0a559692e5532dd1601fad19ed962c957ba17c60d0fe497d593cd55643b
MD5 8337f2a85cc9f6233445533ca601ba12
BLAKE2b-256 81b83f521be2e35ce15ddcc9bbb369da655e6c3443789772ec9e280dbfdd982c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6edf98a9571fd425cba96408bc3446e23194df1d77c56fea3f61ea431366a227
MD5 edf476cc5fb8fd51bea9c11d9d497051
BLAKE2b-256 22404f5bdf611fa34a54db896ac26021643c4838145485a46dba03d0b7f24f76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba25e317cf1cb0a70a91ba4491151f06d470473834aa40342f70f7a9933bcb17
MD5 1dc824610d41662808265325b1e11f7c
BLAKE2b-256 14eba856c213b5ee89872b95939e8d5fdd9ca4d727f2b4190104c694b75f70cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c3f187951fe3828384767a631ef51514484691ec5773b983379d0b0ee46a26ce
MD5 f24aadccea809aef98cdc14f7143bad1
BLAKE2b-256 a4d47b426032c27f5dc405c1e5dc1fec9b85e384d7f9018920a187a43381dfef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chromobius-1.2.dev1780590817-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76bf654370efc44d701a38518c2811f6c02852dbc217691a4c3868e8c18e569a
MD5 1aecc2d760970f421d2e9515e019e1c0
BLAKE2b-256 22c115ac313da39a62549457122debe814c44b887a694f544f771fd685643090

See more details on using hashes here.

Provenance

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