Skip to main content

QECC - An MQT Tool for Quantum Error Correcting Codes

Project description

PyPI OS License: MIT CI CD Documentation codecov

MQT QECC: A tool for Quantum Error Correcting Codes written in C++

A tool for quantum error correcting codes and numerical simulations developed as part of the Munich Quantum Toolkit (MQT) by the Chair for Design Automation at the Technical University of Munich. It builds upon MQT Core, which forms the backbone of the MQT.

The tool can be used to:

  • Decode quantum LDPC codes and conduct respective numerical simulations.
    • At the moment the general QLDPC decoder [2] and a heuristic (which improves the runtime of the algorithm) [1] are implemented. Currently, open-source software by Joschka Roffe et al.: [3] is used to construct codes (toric, lifted product and hypergraph product).
  • Decode (triangular) color codes and conduct respective numerical simulations.
    • The decoder is based on an analogy to the classical LightsOut puzzle and formulated as a MaxSAT problem. The SMT solver Z3 is used to determine minimal solutions of the MaxSAT problem, resulting in minimum-weight decoding estimates.
  • Apply error correction to quantum circuits.
    • The framework allows to apply different QECC schemes to quantum circuits and either exports the resulting circuits or simulates them using Qiskit [4]. Currently, six different ECCs are supported with varying extent of functionality.
  • WIP: Decode bosonic quantum LDPC codes and conduct numerical simulations for analog information decoding under phenomenological (cat qubit) noise.

Documentation

If you have any questions, feel free to contact us via quantum.cda@xcit.tum.de or by creating an issue on GitHub.

Getting Started

QECC is available via PyPI for Linux, macOS, as well as Windows and supports Python 3.9 to 3.13.

(venv) $ pip install mqt.qecc

The following code gives an example on the usage:

Example for decoding quantum LDPC codes

from mqt.qecc import *
import numpy as np

H = [[1, 0, 0, 1, 0, 1, 1], [0, 1, 0, 1, 1, 0, 1], [0, 0, 1, 0, 1, 1, 1]]
code = Code(H, H)
decoder = UFHeuristic()
decoder.set_code(code)
x_err = sample_iid_pauli_err(code.N, 0.05)
decoder.decode(code.get_x_syndrome(x_err))
result = decoder.result
print(result)
residual_err = np.array(x_err) ^ np.array(result.estimate)
print(code.is_x_stabilizer(residual_err))

Example for decoding color codes

Simply running the following code will perform a numerical analysis of the MaxSAT color code decoder for an instance of the distance-21 triangular color code with a bit-flip error rate of 0.01 and 1000 simulations.

from mqt.qecc.cc_decoder import decoder

d = 21  # distance of the triangular code to simulate
p = 0.01  # (bit-flip) error rate
nr_sims = 1000  # number of simulations to run
decoder.run(distance=d, error_rate=p, nr_sims=nr_sims)

Example for applying error correction to a circuit

from mqt import qecc

file = "path/to/qasm/file.qasm"  # Path to the OpenQASM file the quantum circuit shall be loaded from
ecc = "Q7Steane"  # Error correction code that shall be applied to the quantum circuit
ecc_frequency = 100  # After how many times a qubit is used, error correction is applied

result = qecc.apply_ecc(file, ecc, ecc_frequency)

# print the resulting circuit as OpenQASM string
print(result["circ"])

A wrapper script for applying error correction to quantum circuits (provided as OpenQASM) and performing a noise-aware quantum circuit simulation (using Qiskit) is provided. The script can be used like this:

$ (venv) ecc_qiskit_wrapper -ecc Q7Steane -fq 100 -m D -p 0.0001 -n 2000 -fs aer_simulator_stabilizer -s 0 -f  ent_simple1000_n2.qasm
_____Trying to simulate with D (prob=0.0001, shots=2000, n_qubits=17, error correction=Q7Steane) Error______
State |00> probability 0.515
State |01> probability 0.0055
State |10> probability 0.0025
State |11> probability 0.477

Detailed documentation on all available methods, options, and input formats is available at ReadTheDocs.

System Requirements and Building

The implementation is compatible with any C++17 compiler, a minimum CMake version of 3.19, and Python 3.9+. Please refer to the documentation on how to build the project.

Building (and running) is continuously tested under Linux and macOS using the latest available system versions for GitHub Actions. Windows support is currently experimental.

Reference

If you use our tool for your research, we will be thankful if you refer to it by citing the appropriate publication:

  • a L. Berent, T. Hillmann, J. Eisert, R. Wille, and J. Roffe, "Analog information decoding of bosonic quantum LDPC codes".

  • a L. Berent, L. Burgholzer, P.J. Derks, J. Eisert, and R. Wille, "Decoding quantum color codes with MaxSAT".

    The dataset used in the paper evaluation on decoding quantum color codes is available on Zenodo: a

  • a T. Grurl, C. Pichler, J. Fuss and R. Wille, "Automatic Implementation and Evaluation of Error-Correcting Codes for Quantum Computing: An Open-Source Framework for Quantum Error-Correction," in International Conference on VLSI Design and International Conference on Embedded Systems (VLSID), 2023

  • a L. Berent, L. Burgholzer, and R. Wille, "Software Tools for Decoding Quantum Low-Density Parity Check Codes," in Asia and South Pacific Design Automation Conference (ASP-DAC), 2023

Acknowledgements

The Munich Quantum Toolkit has been supported by the European Research Council (ERC) under the European Union's Horizon 2020 research and innovation program (grant agreement No. 101001318), the Bavarian State Ministry for Science and Arts through the Distinguished Professorship Program, as well as the Munich Quantum Valley, which is supported by the Bavarian state government with funds from the Hightech Agenda Bayern Plus.

TUM Logo Coat of Arms of Bavaria ERC Logo MQV Logo

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

mqt_qecc-1.8.2.tar.gz (664.6 kB view details)

Uploaded Source

Built Distributions

mqt_qecc-1.8.2-cp313-cp313t-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.13t Windows x86-64

mqt_qecc-1.8.2-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13t manylinux: glibc 2.27+ x86-64 manylinux: glibc 2.28+ x86-64

mqt_qecc-1.8.2-cp313-cp313t-manylinux_2_27_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13t manylinux: glibc 2.27+ s390x manylinux: glibc 2.28+ s390x

mqt_qecc-1.8.2-cp313-cp313t-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13t manylinux: glibc 2.27+ ppc64le manylinux: glibc 2.28+ ppc64le

mqt_qecc-1.8.2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13t manylinux: glibc 2.27+ ARM64 manylinux: glibc 2.28+ ARM64

mqt_qecc-1.8.2-cp313-cp313t-macosx_11_0_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13t macOS 11.0+ x86-64

mqt_qecc-1.8.2-cp313-cp313t-macosx_11_0_arm64.whl (996.7 kB view details)

Uploaded CPython 3.13t macOS 11.0+ ARM64

mqt_qecc-1.8.2-cp313-cp313-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.13 Windows x86-64

mqt_qecc-1.8.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.27+ x86-64 manylinux: glibc 2.28+ x86-64

mqt_qecc-1.8.2-cp313-cp313-manylinux_2_27_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.27+ s390x manylinux: glibc 2.28+ s390x

mqt_qecc-1.8.2-cp313-cp313-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.27+ ppc64le manylinux: glibc 2.28+ ppc64le

mqt_qecc-1.8.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.27+ ARM64 manylinux: glibc 2.28+ ARM64

mqt_qecc-1.8.2-cp313-cp313-macosx_11_0_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13 macOS 11.0+ x86-64

mqt_qecc-1.8.2-cp313-cp313-macosx_11_0_arm64.whl (990.9 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

mqt_qecc-1.8.2-cp312-cp312-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.12 Windows x86-64

mqt_qecc-1.8.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.27+ x86-64 manylinux: glibc 2.28+ x86-64

mqt_qecc-1.8.2-cp312-cp312-manylinux_2_27_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.27+ s390x manylinux: glibc 2.28+ s390x

mqt_qecc-1.8.2-cp312-cp312-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.27+ ppc64le manylinux: glibc 2.28+ ppc64le

mqt_qecc-1.8.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.27+ ARM64 manylinux: glibc 2.28+ ARM64

mqt_qecc-1.8.2-cp312-cp312-macosx_11_0_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12 macOS 11.0+ x86-64

mqt_qecc-1.8.2-cp312-cp312-macosx_11_0_arm64.whl (990.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

mqt_qecc-1.8.2-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11 Windows x86-64

mqt_qecc-1.8.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.27+ x86-64 manylinux: glibc 2.28+ x86-64

mqt_qecc-1.8.2-cp311-cp311-manylinux_2_27_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.27+ s390x manylinux: glibc 2.28+ s390x

mqt_qecc-1.8.2-cp311-cp311-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.27+ ppc64le manylinux: glibc 2.28+ ppc64le

mqt_qecc-1.8.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.27+ ARM64 manylinux: glibc 2.28+ ARM64

mqt_qecc-1.8.2-cp311-cp311-macosx_11_0_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11 macOS 11.0+ x86-64

mqt_qecc-1.8.2-cp311-cp311-macosx_11_0_arm64.whl (978.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

mqt_qecc-1.8.2-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10 Windows x86-64

mqt_qecc-1.8.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.27+ x86-64 manylinux: glibc 2.28+ x86-64

mqt_qecc-1.8.2-cp310-cp310-manylinux_2_27_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.27+ s390x manylinux: glibc 2.28+ s390x

mqt_qecc-1.8.2-cp310-cp310-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.27+ ppc64le manylinux: glibc 2.28+ ppc64le

mqt_qecc-1.8.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.27+ ARM64 manylinux: glibc 2.28+ ARM64

mqt_qecc-1.8.2-cp310-cp310-macosx_11_0_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10 macOS 11.0+ x86-64

mqt_qecc-1.8.2-cp310-cp310-macosx_11_0_arm64.whl (977.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

mqt_qecc-1.8.2-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

mqt_qecc-1.8.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.27+ x86-64 manylinux: glibc 2.28+ x86-64

mqt_qecc-1.8.2-cp39-cp39-manylinux_2_27_s390x.manylinux_2_28_s390x.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.27+ s390x manylinux: glibc 2.28+ s390x

mqt_qecc-1.8.2-cp39-cp39-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.27+ ppc64le manylinux: glibc 2.28+ ppc64le

mqt_qecc-1.8.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.27+ ARM64 manylinux: glibc 2.28+ ARM64

mqt_qecc-1.8.2-cp39-cp39-macosx_11_0_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9 macOS 11.0+ x86-64

mqt_qecc-1.8.2-cp39-cp39-macosx_11_0_arm64.whl (977.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

File details

Details for the file mqt_qecc-1.8.2.tar.gz.

File metadata

  • Download URL: mqt_qecc-1.8.2.tar.gz
  • Upload date:
  • Size: 664.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for mqt_qecc-1.8.2.tar.gz
Algorithm Hash digest
SHA256 539654336d27ecac60a21da8b0b43a9340f05538c057b974f2d2743ed20d943e
MD5 7ab279ee6a31bfbf0378a6f7e302c86f
BLAKE2b-256 12ff5c69068bd4d7b075931edfeab2312159a83e6529a7faf0506d15faed2d77

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2.tar.gz:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 f289b2a12291d06b7bec3c94000c9cea7f9c1bcd74aaeb72f9dfc553931bd819
MD5 a0bd0492362bab6aa104dccf83fc1d7d
BLAKE2b-256 a02ab878b5c590b4e311d41ed7e61f51a3070d9d5fb951f8ac0e2a04abd1ac73

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp313-cp313t-win_amd64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6976e0201f1cddc1d58ea9b505ece8180a9a5a79a6c94d7e3b64184d779330c9
MD5 fc3c0156093138c8bc08b8a0ad53c4e2
BLAKE2b-256 10136e42b5b9c73c73efb4c70610e0c334a5bf9a9aa6d126f9b9ac2a8fe6f29a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp313-cp313t-manylinux_2_27_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp313-cp313t-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5ca999217fbcd1649357a45a0295020f43fe17aea828267c9ae2eee01a584e71
MD5 21a23d7159084dcbfab70989b7354cfa
BLAKE2b-256 1691d17302ca84cce5b993065c41d01f30003bd91b561b2ec66e4d59419c529a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp313-cp313t-manylinux_2_27_s390x.manylinux_2_28_s390x.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp313-cp313t-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp313-cp313t-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9d3cb0c0178f7cf607c0791f9ad45c8b783d4d649ab1b3f1413c2e9d581bc50d
MD5 bee7cd6a2dbd34f0970528f792ee0e74
BLAKE2b-256 1d569d00759f6a00d07290e0f388c00be0e4855243e37a01bc9cc0ef74d76c68

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp313-cp313t-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1dc49b5ba4d3dc4f4ea0613935b212c4e5eea6ada02d56cc9c5ea7fc6d2b858e
MD5 00575bd1a8d0484716491b0a5614cf74
BLAKE2b-256 492468042034a206fd24ef4faca401c7a44818da7a8061b2644a201b8d999875

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp313-cp313t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp313-cp313t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 7c8ddece9bf3fdbffb6dc356e9da9e611e8a5e7ba74d0b4676d19dcf01c4c81d
MD5 97d672db0f3e3f5e5299791c24d06843
BLAKE2b-256 490c067f9fa8ad9a0c2d198e39cdb918d0e65a9c8d8f066f38a4325b1e565492

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp313-cp313t-macosx_11_0_x86_64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e346c53a5267b55e2c5deb6bf6bee30b23003582f39c8726fd3a89ac60ae1dec
MD5 6a02dc05ae11727a550de664ff786516
BLAKE2b-256 dca85d16eb00a6c22bf32d5bac5af56379f9acff884a9dcecc2c4ed4d9b07ece

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c21a81fb9115a9e2d045902acb0734fc438e84a6c73a9667b24fc2a10e22e9b5
MD5 1cb4f5e16d07866444bc87fb8ebbe86a
BLAKE2b-256 94a8638852faa671c7f2e6f1aae9dcbee02f9597acc30db2267fa178eadcf6c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp313-cp313-win_amd64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 406793ec3c33f03ac53713572f78196eddc43ea89e9fcd1321c362ad81eb7b80
MD5 2c31b20a8c3d8f08de7213858262f482
BLAKE2b-256 06ae85d9b20a93c48428dc7f033ac0011692edb7ade9f1182dd903f54fab0c4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp313-cp313-manylinux_2_27_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp313-cp313-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f63faea51d8e2d333f2b6fb432744ee5a630e9ef7527f778d5da91a74f8cccca
MD5 4948901f7068461c9dc6a03489146bfb
BLAKE2b-256 86b0ac7d80a90d889a3c01931f62a535e1270d841dd136b3475ac8664128d3ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp313-cp313-manylinux_2_27_s390x.manylinux_2_28_s390x.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp313-cp313-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp313-cp313-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e5b675d2f6a18df22460d2e382167087a455ca3bca80377bb1b869af5757818f
MD5 4aa9341a0e4629330280c2dca73edc4d
BLAKE2b-256 7cb0ff6420e6d145a168fce07d6e2fe18de9f11e71c10221e25c0e6065532ddd

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp313-cp313-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f414e08031433e919b8d42756b726513c5d71b5de2b8628e6db64332bb3f11b
MD5 fe0ba8001a423d9c03c6dc708740cbe7
BLAKE2b-256 2b1a20b0da933d7495b69fb8b05eb8a633e03ec00e60fefd42aa1c8bacf1c4bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 28567a688beeee3b0538ea4018d10c8c7ef39e8133ada506ab24ee3484a7c4a3
MD5 aa63d3969b321c744d02e505f9311d98
BLAKE2b-256 91b7485cfba0f5fec7eb414c92b6fe14d8704764084e9f20edf0b3afd5ea03bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp313-cp313-macosx_11_0_x86_64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d60b9cf92f18ed119eb49ea0d1d0cceb91d03d2840b0c485e3f436acb73a3f5
MD5 472eda9dd153d074ab952713606fd8f9
BLAKE2b-256 5a7ac9f0f45f44cea256ff6418ae17c807ed593d323f19e8579d94066df51d7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 81555578aa1b66ebb586a3fa85da0da1ad1d9fc7ac25da17a08adc44930a4e6a
MD5 7dbefd8de630ce0ba56484ec96d49d4e
BLAKE2b-256 3850efebc19ce4865c729ae8b500da7fa403caff7203810a1ff00087303f3d4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp312-cp312-win_amd64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd03afc1a05e5d0bd80db10ddceb26cf581a6709afc2f50356a37edd68373a45
MD5 6eee817adbdeea0148deb1d38027c98a
BLAKE2b-256 7851993027cd157003abdf015fdff3001e5843a912a636f81d6ef8a311efbfa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp312-cp312-manylinux_2_27_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp312-cp312-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 87d1a7b57a7271fbc23ce26c66cb4ced4c35fb7c04f8246fff2f4802d185b52a
MD5 48b6fd92d85b6fe7923be7dfcf4044f0
BLAKE2b-256 739612ec1f9c5e677daa69e40a34766485edc019d2a323b9d37f7b418f00b4be

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp312-cp312-manylinux_2_27_s390x.manylinux_2_28_s390x.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp312-cp312-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp312-cp312-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1dd45efeb47f2fe35c65803cdc63fc6be357dab7d4bed62138e6991dbcb9363a
MD5 489c065a97f608b408156f074c79c044
BLAKE2b-256 b2c9caf901168a1dea4a04cbb7469f50cdfb01daf4233a14f2debce20b3c1928

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp312-cp312-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cbb972659c60f6269e6a4823b4629cf7d12d930159c5422d72fef33e48b608ff
MD5 2d4355932b2ac3e6bb6c75e647399613
BLAKE2b-256 d43fe25a57e8afd9441891ad41151e649792c6c6b4bafd8812af3f9773dabf6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 450367d3f150e37eee49f74fe2b9755d1d47f7a77f4af01c3bf5f007a16ba114
MD5 cddc37f82fba86c22ad1871f9636f541
BLAKE2b-256 a09e92546789ff7171aaafe7a77387672baabc5a9dae1ad55ec62caf0ee664e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp312-cp312-macosx_11_0_x86_64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72dcb6346929eea6a975cbf25ea72acbfd3ad8ede37c896b3090be7808ef6050
MD5 5829a42f8d0218647202327eb701d12d
BLAKE2b-256 c5ed1a782484c3d7c33a7476c0ad66ac8690edbfd33de18539386f364eb8ce62

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6d0b756dee10aece0d0385d1483e870ffb59debf1bd9fda7cc79935b7e158f98
MD5 b76ebdd612783e911e42f1f9e8c862f2
BLAKE2b-256 fe9eb7997e412faa6eddd536f6ed1dae72f82406b5729a2d5b7da5582757e772

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp311-cp311-win_amd64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e47a0e86412f6e05fbbfcffbf559e706d4671aaebbd3b53100539a8102e2e4ee
MD5 49b35f8a3f21c9195442c21646bbb3b2
BLAKE2b-256 fcf74515b1853c7ca7fbaca1ff07156dc793e7799cedcc2aa7b6476ffe7726e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp311-cp311-manylinux_2_27_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp311-cp311-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 dfe8d24aea05914ba2715addd478818ee288ee2984db7559c2d075753d8391e4
MD5 75433b2b466636ea4b9853e52d62142b
BLAKE2b-256 a5447158157c9cd495ca0398cb61c9dfaad657b66f3b6153e1179e5d7929e99e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp311-cp311-manylinux_2_27_s390x.manylinux_2_28_s390x.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp311-cp311-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp311-cp311-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 840ced918b8f54b7cae8aa560b3f2c269ca4497cb475e1922b8d7181926a0dd3
MD5 5821f75a8bcf9ead6f5ce9f833bd5d7b
BLAKE2b-256 efc7f6e8c1035997f415bc6bc11bef1a6d67f1cbba185fc39117d1dc88f1fb8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp311-cp311-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aecf48ffc329d438280a0f774591c890853eb978c543b3e78f17840a01227559
MD5 77b9e79ad300dcde723988904b669a2d
BLAKE2b-256 6f993647417260cc1008e5052fe66e0140513303cf2a805b32aeef4f00f6fb34

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 60d808613ff9f0393b2828e07850a2f82e5c47feeffe64ae825da710a056dba5
MD5 adeac9dea9cc1e0ffb3e91aadd3bf999
BLAKE2b-256 85e2a74b9a10de631691a5f21fc1e4ba9ed666915e912472831aa4b7cb62923d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp311-cp311-macosx_11_0_x86_64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08c8fe7a4d0b05c622c9373dbcca872e199ab2a5e89c6d816b06198af4feed2e
MD5 ff711ff07a5048859f3caa461fc0c9af
BLAKE2b-256 a6a69ac833cef938652196e4bf5ce8e9049138c208a75e4fc5bf343c3258d09b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0521691378ad89b5a4a9eb852348cdff8a037ee874bea901536cf1cc104b28c1
MD5 862bbe2504898d9c4d28fe83d9d987ac
BLAKE2b-256 03cc202989b027d0b00a151612486347acd7c5f9cc2891a3a71149c3d26ca886

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp310-cp310-win_amd64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4091cbbfa9c7bf402e180b2128fce97f6bdb18d03ae258ceba7cc922abaca21e
MD5 bb9df65a51a02f6527d0b2758dd4e876
BLAKE2b-256 64f44ee00ad38d409d2cd7dc74ae99985c6525fac0ea458ffcfbc4e0b0643acb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp310-cp310-manylinux_2_27_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp310-cp310-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 90d5d232bb05dc8584da8feddacbb0f2a0b8356268ef5399eb8ddf4804ec43c6
MD5 c66cd3fac0d3deb999eb0d8329ea28ee
BLAKE2b-256 38fa8d3072814332c138a33e79c562432bacb3e57e8cadcc4a3efba8c776288a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp310-cp310-manylinux_2_27_s390x.manylinux_2_28_s390x.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp310-cp310-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp310-cp310-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8450c1ad977f8433679105403849640303283b7ad6b9986d4a8a2f1f11b01323
MD5 be904c709bf609223487dd0ff04af7cb
BLAKE2b-256 b9303ed2e4b759d2d991c97ad082737ebaf9fb4767f94d5d91defa6bde1705fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp310-cp310-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 419ddb47a817e1c45d0171a9b36a691a28dfd2e220bd18d64d6386cc63b56a69
MD5 a01cd0a32a6bb68163801a3e8cdac7a8
BLAKE2b-256 cc2db99c440d429ac94fcee1b21a6f418dda156a6d9f2decb68cb5ac87adfce3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 84e3e15d8c79a1b199019eb10ae90ee44971fc768a8a2d809acd9bbe8513b54f
MD5 835998f6249e737acd4551a551c8b7fd
BLAKE2b-256 cd999c55c91e894f0b5f49826fe72a3f79cd04083f652cd3b7e6ee9ad3b218a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp310-cp310-macosx_11_0_x86_64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b60372fc8dc4ca2ddd48fc6dc8f69669851cf1c7ce61b645cec688db053848d
MD5 e73c1bc1ee3a16fb320c95efd9564448
BLAKE2b-256 66a8d4022e7ee24d8334f9565a11695c1be2eac6bf85d3fa1aa23d1a984d56b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mqt_qecc-1.8.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for mqt_qecc-1.8.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5a467ca4294b7c3d8749464b7b35c0dec271e8e4064f17f278a36f8cd0567e85
MD5 9a4506d00dbac136d72e750e4e030ca0
BLAKE2b-256 c617624f97d2a6ff8b7a89fa6f9041a0c82400d4962bc687a3e60a7b23364482

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp39-cp39-win_amd64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c626fa8a1111665337c0d18d12c9d082ddead4cf4ace0e73124408419556e56
MD5 9ceaa79fed6327d556233ff996b30b6e
BLAKE2b-256 88ccb599c688446ab54a20bd758224976e373c4e1902573bfbe8466d6950989c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp39-cp39-manylinux_2_27_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp39-cp39-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d12cebbb913376ab1dfdc396b7ba008bbb345e1e485704f3cb8ccd42d49ab9f3
MD5 a94ecc7331f74ec1612baa35c2d7b551
BLAKE2b-256 543c494339f98d51f70214fba28bb025ea0f3ba8154ae663835d2e2959a09ab1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp39-cp39-manylinux_2_27_s390x.manylinux_2_28_s390x.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp39-cp39-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp39-cp39-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4d5296c379d2809149b2f4c416d00348dd141285baa1121f6effa0daffe8854d
MD5 ccf98026fcaf4a0d428cc6f7299afe3b
BLAKE2b-256 0a5b84f14517e2ef6899e153dbe189b7c929f08c32ff2b314ee25e5fd3691473

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp39-cp39-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 14e8772ccd4ac01b4ce1942f52148bc76a47ede4cdc30136759e490b73277995
MD5 ed3c072bf14e5ba1e30360895b0d3ff3
BLAKE2b-256 4414c41926bb028ebd26fa03681377c22751f5d488defce875aedbc45c4e0751

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b868912abbfdbe9be6e8ef196d7736faf30645bf6b326944af626adfa77736e0
MD5 88624d1abe9e488b6e060494a507349b
BLAKE2b-256 08f222027c635ec7dc2d88f6f7001f2b24f08ddca54ed5049aea4979568512e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp39-cp39-macosx_11_0_x86_64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

File details

Details for the file mqt_qecc-1.8.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e612c6d213a022a849354b20903ec953b94712fba3740ee6ac47fbe6919f57c5
MD5 4f6c5788677326f96dac1259c84f32a7
BLAKE2b-256 6d44bd1a60f5bc141aa4f59c651d3e6f46e77ec0e3f229c79645c5ed89819791

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: cd.yml on cda-tum/mqt-qecc

Attestations:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page