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.1.tar.gz (660.8 kB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13t Windows x86-64

mqt_qecc-1.8.1-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.1-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.1-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.1-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.1-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.1-cp313-cp313t-macosx_11_0_arm64.whl (996.4 kB view details)

Uploaded CPython 3.13t macOS 11.0+ ARM64

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

Uploaded CPython 3.13 Windows x86-64

mqt_qecc-1.8.1-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.1-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.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (990.5 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

mqt_qecc-1.8.1-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.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (990.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

mqt_qecc-1.8.1-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.1-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.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (977.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

mqt_qecc-1.8.1-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.1-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.1-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.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (977.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

mqt_qecc-1.8.1-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.1-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.1-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.1-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.1-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.1-cp39-cp39-macosx_11_0_arm64.whl (977.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: mqt_qecc-1.8.1.tar.gz
  • Upload date:
  • Size: 660.8 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.1.tar.gz
Algorithm Hash digest
SHA256 95b58d7e4fa6c98ea9b1a0b9431a5957752835a86b75ddf53ec8223e9eb560ce
MD5 a1ec79e1c0bbb0e896ae01f88994f407
BLAKE2b-256 37de1cdc1badf4f5f04b71b2ca4039d69fdf97ab61735568fb320aaa6a7e5e94

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 8ab44fd398144708d75fae45b98192ada489937640332ba2fe708f39560d16a1
MD5 1275f18aee13929d30dae695e2c1d566
BLAKE2b-256 ed405a2e848e90926603cb8de07047432e578ef74474469d6fae1af17c21951c

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3cae9606a479f98675b63f4b1e0ef4f18ef435a87baf9e21d58361044b549d3d
MD5 ed4d4cf2dd0344bc02b3f49b2a2943e9
BLAKE2b-256 7088f0f5c6f2fe4166393c958c533461661170511f7243e1d0e5b793b9c38094

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp313-cp313t-manylinux_2_27_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp313-cp313t-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4ab2cc4e9442d9d33b17cadc2f95ba51cdb42c0877e102695efed4736198a87c
MD5 2dd5db9c7801cf00df3c53ebcf5e2f16
BLAKE2b-256 5bbff691d941352d31544e03b684c547587f6c0c8b687384f28df8e0a5cbff64

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp313-cp313t-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp313-cp313t-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7448adb302b87ac451484be7b3189c5d57047887b8479d97442e92fdd4e70be4
MD5 59bae86680a16b0ee6992450b6f8a588
BLAKE2b-256 39d6e202addec3078f91a5ceda3dda33b46802c17601c84a0b28d5fa2e7739c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b994084ee335b23b8f8772edfcae678bc6eac7f7e2e03a1cbda34b1c8fcc21ff
MD5 e875c0c22d6a7a003ff7af0bb86cf488
BLAKE2b-256 9a20df9aa493995d39d15f4f78f8bc9b1b71310ea53550febdc56afd5e936677

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp313-cp313t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp313-cp313t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ae3846359ec3f4518d0c3b12ae98705b0d0c39ea559c24118848fdc1399dfd48
MD5 4103cb6b123f49459535251c16f15029
BLAKE2b-256 b88510ada41ad0066cf7491a56f89991359bf397202aeeb0675b76ade72ddbca

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee19a45cf78be4ebd091e98fc99cfddea5fa96dec074ea2cdf3d2137de667237
MD5 1790eb8c7b1d4e7ba9abc7f17a073be9
BLAKE2b-256 f2e5fd7b3ef8a093b01dbcdf02e247d5a6cded7818e1473d00d860d6d6f0e916

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ca98a97b21799857748d9c65a6b1f4fd8c9a2b141b4afca1a4e8ff375799215a
MD5 2d7439a3abcbb57235f6933ccbce000c
BLAKE2b-256 af4c769538aa4c1e19387d197590d51481a83ab23713ebe43db2a2ef7cc6f057

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bf7151f8152f9cb50a000ad8e42d9e6165bf19e1adeab54f66b1a11fd9567434
MD5 1012064e2e569837d9ac8c07b648b861
BLAKE2b-256 11d844af1bbe8ce8b86335b1378bb710f56db79a8d9aa067b08e4ce63749b5b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp313-cp313-manylinux_2_27_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp313-cp313-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1ad0348ac8ab2e18951be78073e2c5a9e6693d0c0f21b5c1546a9d08fa9f8fab
MD5 f5badc24f49423bb86519efd997b7906
BLAKE2b-256 3acdadb39302d745a50e8f8e4173c2b34a767b21229820cb1c2fb3871b239cef

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp313-cp313-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp313-cp313-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2dc974c5cb7b9598a933fa4488915912bfc8b59edfff721d14c5b0cce513814e
MD5 01e3ac8f1597f174643d2cad81e909d6
BLAKE2b-256 7b0bedbadbcaadc104b2f67e4588b063fb2c87a05199cc1061a58bd2343043aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d27d1cc47dd83fb59dd81987cfba0e46399993f7dcd625939cb1e6debdb898f
MD5 657371b9405fdb4ecd7d4355d635894d
BLAKE2b-256 b97babf05fb81d88a738a1cb8dede9711c08454bb19a518281d201ae7e6ce53c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 38f9485437677cae9ebf3d53f7f3a0bb0a8e557bc2580ef1b4b7daf6f41c2373
MD5 4ecc8e887429c6edeed98fa190a3b0fe
BLAKE2b-256 73379f582c002701f0b0ac71f38efb2ae8677a6e732b69a4926aec59e6784e21

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61beebebaa100579e6313e7518c8dc9283ea39ce48631d670d5b1d17388d2205
MD5 d4cbb711b4b82209210509add1f9d200
BLAKE2b-256 746f16d87930fa13989b4ebc7721fecd01eb61640ed408d071c0f10490a9cb77

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c261295a323c4e887823b503d76c9d6de0a47e26cd6c6f8dce046c7b334fc6cd
MD5 6679a5210ccea4fab6a0f3c3b06bd0a1
BLAKE2b-256 6a1d79f0aec5e7fdd33ab823df90eccaca9c30392c4e29af020761389ccf708c

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c75b3cba8c431da04838d7ea3f64e1b0d7e6509d3d84e802b0dc2aba316764ab
MD5 bd2e7619dc8d216019a4aae5798767c5
BLAKE2b-256 5db89bc2277484736dcae2dbdd4a1a2df5b71a79147d57cf65d4d12969d27cba

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp312-cp312-manylinux_2_27_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp312-cp312-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9c7043db932ed52f40ac06785974a34589a714d4c2530ba062a84124c3cc9d68
MD5 c38f445f9a8b67db8100fb5146f3282a
BLAKE2b-256 69ec80ed22f5a91cfe6b6e078a4bbf511fce68b9dc0b7b023373f87ae054ad65

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp312-cp312-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp312-cp312-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 324c1623a7036713dcac7dcf6405827006cf2c6fcbbac1c61b7b341d46f98ce8
MD5 979ba585a9a813e001c1b4ec854b944b
BLAKE2b-256 38bea0db86f54340243c9a1e96532aca9afc2177ddf18d3e43ba033b90d7b3eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d3bce253e0a98283e05661744c918b52deec1ca2fc1f3a35d85bb9af642888ce
MD5 6da399b37b2a4bbe5401e6f803c9861f
BLAKE2b-256 6d8417a2bf5d2b7f903159539524d07b1196a09a4c79cc0d89b3374f3cababcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f6b33cd06ab5e52dcb89d54d9e0063dd2e790b2b9e4611a974bda1f9110dbae4
MD5 920c443f1fad14dee100ac3dc34a3e0d
BLAKE2b-256 91dbbc378c254dc887d530b024ecf92c7c62460249847baf9d6882cdf44b530d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c5de8c9408ec3b2e07d333c2967324aac3a1a3cb00bea8547e861256f664cad
MD5 3f43981b2368e09091f979865efcdbe8
BLAKE2b-256 fb7ea1158b236190f6ad1ee966d17fbbccf1c2f396c0782d3a0d0da8bb9d0c31

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b2a1d4eba87fb9c23028248fe28aac12f5f25cc389c67f47ce50bf772a91d5bd
MD5 f841479ed3b9b7421000f6e18ff38d63
BLAKE2b-256 7d14a7c157c059731306e4c39e7113614042f92b5a87dffec57046dd7ae5475e

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e8b08870a2c7c237fc4a64e53002f8ecc7ce606b3578c4de29b49f1df9f6246
MD5 22bda29771b340b8520f88b3a097eca2
BLAKE2b-256 f371021d52aa8740138bcefda39e05b557e380b0bc88fadacf111a92fe0c45c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp311-cp311-manylinux_2_27_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp311-cp311-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1acc88789d7a54294a647e13cf5776cbc616552a95981d2bc03f37bc716eb788
MD5 2eff68242ec9c8206d9128a1eb6f6e46
BLAKE2b-256 5c3a868ba16c1a3e1313a847dc35c2f3ee59b62c673865f535fce24f3820af47

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp311-cp311-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp311-cp311-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e4720a6b482775732c25cc7e143efb0c6e17713439542cf8d43fc6209e72af8d
MD5 1a8a0a43ef4aa98508ceab377ff4e317
BLAKE2b-256 117ba5e7050e37856e567df2b3d53fb43caf003b3c0b7ab70eb2af5a4b039f89

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 92878141f4138c0e180180157640ee67aae758531b064c142e672bb67473fda2
MD5 13da0402f3ed7dd3f7f738d71438daf5
BLAKE2b-256 e6a67bcc8f1671ab2c37b3869e425ff04b0e4f10b1b50b13c089b1b9e1a3a102

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 5f6c1fc6d033a4b1e831fdc595138ed2e458be7aff1b057622af8a0c43f9ec13
MD5 628821db6a427b7ab3bb40c2c3f27ee3
BLAKE2b-256 f42ef953f589edc12c207902a601f33de465996c8b4851c42b24315de4082501

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 809e7368354abec0ae78595b40bd42b94fda1bc41251b6c76823d78f625cab57
MD5 2bc7f0fa8bcc7b8783aa7d00db63a45d
BLAKE2b-256 2a19c8a7d9b74cf42998651c011f28d220235ce829f3ad247b7415b8cc96227f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d2d3fbf0be4dfe9cd5b59637d4b8201356c1b97eddd9026b204a31faabd32e96
MD5 7a54e2988fbe9814218980ea232d5827
BLAKE2b-256 90bec49fbddcbda61ef5c4687a13a873bfa4e34aa7232dfda2f034628bc8e5a6

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1867922b102cc345a5e5dc81981db7e2697b88d38ffa380e286d56e98bc5eeb
MD5 68c7f80dada0b8e47af92e0219f8ed9e
BLAKE2b-256 0edc3288dac3eb028c196a59c18e33d2e00e7fb3b2fe41d5bf81339cd28986dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp310-cp310-manylinux_2_27_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp310-cp310-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 71b66dde93ccfc8d12e6d8f1f5fb58a67a55c46fe3a228194b5f1e281c8841b2
MD5 4649dbe714f102492e81c1915850e915
BLAKE2b-256 4bffaa136ad20b19d63d5914e17f91ffa2d134de23d4ebacab93256644df112b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp310-cp310-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp310-cp310-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f23a55ea47c04476d02a163b2b22f068b7e93342e956dbd25bcb20ad0bd8fabe
MD5 d9f8e5b21ecf8bed68a8fe3b8483d9bf
BLAKE2b-256 cc83dec07d030e85d96e26457244a811169670ea6985b4f68aa314f60fd72e7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 890a0c2466493b8e4804ee3d06234dea08e850a7d07884bc6b9f00d74a29b8e5
MD5 28fe2f7d5c4e9a028aa37e4b9e19221d
BLAKE2b-256 4614044368a74ccb62ff162c852357c34f89ae428fa52446dab98a5b4bd04aef

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 75ca64937f16b46afe8dd2cfa37abd1f64104decab68225b5a7ad3be973d2a76
MD5 4c3ee33d5bc441f8f80c285bd7fa4805
BLAKE2b-256 45243b06fbf2b112fe094a5d2e95bf0ded6251b420a780a11181ccfd621a5ece

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2420482c1c17f00af4326937d2c467b7e1f7fcc520993adea14ea2f056b3c73
MD5 6608ce156aa6c131dd5f0418f595207a
BLAKE2b-256 3aa9a56400b32a48ccec2ba1504cb922d33f9eaa903d5125a777b2e91044c499

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mqt_qecc-1.8.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1f1e304a8ca65cdbaf644d6441c77cbd62f81d16af9bfaf1782dd59b3a618049
MD5 4ec6a0358fac3c67589abc1cc6f5af8d
BLAKE2b-256 10e5ff5760c7b55d3b5b1f30ae1aaf1b8f103cdc3d77fd607d9d38cb6d6d9903

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b7f3a15b042f50dfade79715ab6e1a8b3d13f6d093fa2ba152b2b9d9c0c15b9
MD5 267fbe667edfed9730d67cfa40180788
BLAKE2b-256 aae9ebea2e8fa3e5204ed06a742528beec18c10040a2c014e07f72a7175a70bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp39-cp39-manylinux_2_27_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp39-cp39-manylinux_2_27_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 46687c9b80ef455c2d44b2bcfc8207f80e48f7827905d31b6b007e25531c021d
MD5 a5144d37ecb12819b090105176366f0b
BLAKE2b-256 d2ad92d66234013673a032d06613b67e10e81310bbc4ee1b58ebe937e632af5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp39-cp39-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp39-cp39-manylinux_2_27_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a561f0ab784ea632fa7ae7658b99627405a9126b0906749a599a8edfa16551b2
MD5 71c11192229692d2fc792094e6982ae8
BLAKE2b-256 ae513d187dac49cba7a79f09f9993e2f21dd13967dba7055e20e7a79504369be

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48ca15da5c987db13f78944f5fa297af15c7e49c9857c08754f08f7110085c5e
MD5 adf9182e3b22cbcb30d66bc0471dc6fa
BLAKE2b-256 1b6666b4ca454b3eaf83247c1de980b0c5a8d73f918d6825beead6629473e0ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 4dd64f8cf0e9ed45c555229a4941144d98a662c861e862c94094714b751ea95b
MD5 a5623c8b9fb4f54980150f217a5e32b7
BLAKE2b-256 858621feee29336d323b924d32015eb9a45d340e4f2c7a848c64b6e20a5683ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mqt_qecc-1.8.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb0b36f1ecae84816ada6caba745fef29770ab1a752106a384bd535b7d3298b8
MD5 20b6eaf41f87916f518c4a9b9ca722bc
BLAKE2b-256 a038bb00a14b2016a4626d007bbe89b50ae5ea3d1d0a8f6141efa9ffd9de2ddd

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qecc-1.8.1-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