Skip to main content

A tool for Quantum Circuit Mapping

Project description

PyPI OS License: MIT CI CD Documentation codecov

MQT QMAP - A tool for Quantum Circuit Compilation

A tool for quantum circuit compilation developed as part of the Munich Quantum Toolkit (MQT)[^1] by the Chair for Design Automation at the Technical University of Munich. It builds upon MQT Core, which forms the backbone of the MQT.

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

Overview Paper

QMAP is available via PyPI for Linux, macOS, and Windows and supports Python 3.8 to 3.12.

(venv) $ pip install mqt.qmap

Compiling a given quantum circuit to a certain device is as easy as

from mqt import qmap
from qiskit import QuantumCircuit
from qiskit.providers.fake_provider import FakeLondon

circ = QuantumCircuit(3)
circ.h(0)
circ.cx(0, 1)
circ.cx(0, 2)

circ_mapped, results = qmap.compile(circ, arch=FakeLondon())

Optimizing a Clifford circuit is as easy as

from mqt import qmap
from qiskit import QuantumCircuit

circ = QuantumCircuit(2)
circ.h(1)
circ.cx(0, 1)
circ.h(0)
circ.h(1)

circ_opt, results = qmap.optimize_clifford(circ)

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.8+. Please refer to the documentation on how to build the project.

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

References

QMAP has been developed based on methods proposed in the following papers:

[1] R. Wille and L. Burgholzer. MQT QMAP: Efficient Quantum Circuit Mapping. In International Symposium on Physical Design (ISPD), 2023.

[2] A. Zulehner, A. Paler, and R. Wille. An Efficient Methodology for Mapping Quantum Circuits to the IBM QX Architectures. IEEE Transactions on Computer Aided Design of Integrated Circuits and Systems (TCAD), 2018.

[3] R. Wille, L. Burgholzer, and A. Zulehner. Mapping Quantum Circuits to IBM QX Architectures Using the Minimal Number of SWAP and H Operations. In Design Automation Conference (DAC), 2019.

[4] S. Hillmich, A. Zulehner, and R. Wille. Exploiting Quantum Teleportation in Quantum Circuit Mapping. In Asia and South Pacific Design Automation Conference (ASP-DAC), 2021.

[5] L. Burgholzer, S. Schneider, and R. Wille. Limiting the Search Space in Optimal Quantum Circuit Mapping. In Asia and South Pacific Design Automation Conference (ASP-DAC), 2022.

[6] T. Peham, L. Burgholzer, and R. Wille. On Optimal Subarchitectures for Quantum Circuit Mapping. arXiv:2210.09321, 2022.

[7] S. Schneider, L. Burgholzer, and R. Wille. A SAT Encoding for Optimal Clifford Circuit Synthesis. In Asia and South Pacific Design Automation Conference (ASP-DAC), 2023.

[^1]: The Munich Quantum Toolkit was formerly known under the acronym JKQ and developed by the Institute for Integrated Circuits at the Johannes Kepler University Linz).

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_qmap-2.4.1.tar.gz (3.2 MB view details)

Uploaded Source

Built Distributions

mqt_qmap-2.4.1-cp312-abi3-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.12+ Windows x86-64

mqt_qmap-2.4.1-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ x86-64

mqt_qmap-2.4.1-cp312-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.3 MB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ s390x

mqt_qmap-2.4.1-cp312-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.8 MB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ ppc64le

mqt_qmap-2.4.1-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ ARM64

mqt_qmap-2.4.1-cp312-abi3-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.12+ macOS 11.0+ ARM64

mqt_qmap-2.4.1-cp312-abi3-macosx_10_15_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.12+ macOS 10.15+ x86-64

mqt_qmap-2.4.1-cp311-cp311-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.11 Windows x86-64

mqt_qmap-2.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

mqt_qmap-2.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

mqt_qmap-2.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

mqt_qmap-2.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

mqt_qmap-2.4.1-cp311-cp311-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

mqt_qmap-2.4.1-cp311-cp311-macosx_10_15_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.11 macOS 10.15+ x86-64

mqt_qmap-2.4.1-cp310-cp310-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.10 Windows x86-64

mqt_qmap-2.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

mqt_qmap-2.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

mqt_qmap-2.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

mqt_qmap-2.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

mqt_qmap-2.4.1-cp310-cp310-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

mqt_qmap-2.4.1-cp310-cp310-macosx_10_15_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

mqt_qmap-2.4.1-cp39-cp39-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.9 Windows x86-64

mqt_qmap-2.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

mqt_qmap-2.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

mqt_qmap-2.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

mqt_qmap-2.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

mqt_qmap-2.4.1-cp39-cp39-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

mqt_qmap-2.4.1-cp39-cp39-macosx_10_15_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

mqt_qmap-2.4.1-cp38-cp38-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.8 Windows x86-64

mqt_qmap-2.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

mqt_qmap-2.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

mqt_qmap-2.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (10.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

mqt_qmap-2.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

mqt_qmap-2.4.1-cp38-cp38-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

mqt_qmap-2.4.1-cp38-cp38-macosx_10_15_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

File details

Details for the file mqt_qmap-2.4.1.tar.gz.

File metadata

  • Download URL: mqt_qmap-2.4.1.tar.gz
  • Upload date:
  • Size: 3.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for mqt_qmap-2.4.1.tar.gz
Algorithm Hash digest
SHA256 5c8cc7b2430a3f26cc5982c8570264ae464cb768217066a55c2a123bb9603f03
MD5 e6cc17eb51a9aaf24926ea1aeef572a8
BLAKE2b-256 7c2e3ae984d3d98e7b03bbc81192af78f010c2bbee10c2e2ccf3e4fe61dfbabc

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp312-abi3-win_amd64.whl.

File metadata

  • Download URL: mqt_qmap-2.4.1-cp312-abi3-win_amd64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.12+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for mqt_qmap-2.4.1-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 8f65c8bef430b6dd1fc8b54e080b960841f7aaaac3bc033ccc25c5ca2fbbd981
MD5 36172a9910b6eaf3a8a7c7b6992ace9b
BLAKE2b-256 1815d64b8d26aba3d7789756e61f0e4a0f157e8c40e6e51768f232b582b42971

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3cc8bcaaae873288dcf119f6bc784c759d99645850bf8d88a4590ff747fec785
MD5 9931245a6b12dde103998055870f861b
BLAKE2b-256 9b65403c5986e0c21f3d9629d2996c819c9a0df6c6a743fb032e17da4310f669

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp312-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp312-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e5c26a4a361d60065665f7f40137ec821233df0cd8b4fb9f2f989a19a9fd3e49
MD5 cc47fae9ac796273064a495cafa2718a
BLAKE2b-256 10783ddcf6394377fdcd6f7ff383fae9633f545c46c6c5dc320f8d6855317a76

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp312-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp312-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e3350751cd1a9600d44ebb02ec6bc4d634fea31636364c62f785ce0d690668de
MD5 bd16feb41e901c2955cf707181581e42
BLAKE2b-256 450cffeef3e4d95f910d794f674bceca7cedd7fac6e2b0986b2d66d4e851ae85

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea394eb263b695fded075e1e49fa89301af6eeb6183220fdb82d31542e98fc6a
MD5 53590e33fdf914ca3fe2089670ce667e
BLAKE2b-256 5d32218ddb1001e87d1665c9c035f91584cd19c01e5f6cca167162b687c1621e

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp312-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee28594919af9aa4167920187792f143d10931a37e42c62d4f68984034afd472
MD5 7ace68815e7ffbc373356ea21c561f0d
BLAKE2b-256 b241a5fe2d656433521288550b37e706e43c20bf7f8bf0c4cb4405c6404e5f31

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp312-abi3-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp312-abi3-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 22a7cf78b790823290dfbbbdcb77a6fcb19b37b50815a7658067962575c93dd9
MD5 6ac8b1ea892483b882c9c2a1019f718f
BLAKE2b-256 b9d1b94b9527a83e195fb18a3a81bbb09a34a1f7d671c99356aef8c9c18243dd

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: mqt_qmap-2.4.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for mqt_qmap-2.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 44e8008eb921dfc56392742d76810c753f5697f02a99c6d497fbf1f858262bee
MD5 25c085ca7ae97ad9460c05a2f9ac2912
BLAKE2b-256 74c3df2bfb9bce98ad58a8cce5a5fe16054b83ba62b83a8ecba28da97236df97

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2aa7ceeeb2e27ef1adf2b7a9ac732343456d083a7640b135a3141b0202c61fe
MD5 804d53f8ed781b28e53659e61a42419a
BLAKE2b-256 4b654acfaed72e401abbb8b6fcc7db969d66c97fc201ca8405f10884f3779120

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 be11146c22c898e4f9268cb619339ee94cc9e2d54f853e999160317a5c1788aa
MD5 00c5e379ec2e70e43f5becdc920e7e64
BLAKE2b-256 41cf3c78294c8b7efd5aad89b136e0cb0eeb09e88e2e5ad730dba49e4e9e198e

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 250175354c01717ec0723bb59ffe81eb6a144cc4dbfbb13a06eacf9dd2903d58
MD5 b711651b82bb569384ecc09e9939e965
BLAKE2b-256 9e28d6485975c54a7b9d8649b3757b40707f229fd2114296bd0a0db3c78e2543

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41de1bd2e58fd3dc6f56ea7e895486068416dd1c658f6961804d1a5c31169d03
MD5 023c42329b103762ac70fdf124908f12
BLAKE2b-256 c2320e9ba38bb1391ba13caf6936f2861a064cecee2061ef19dbb4e774ea60e4

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 264f49fced714f6c96d840bba040234759bae746d5bf23e2d1de66d29dc147e8
MD5 6fdd8e15cd32d1abda6bca5d6c0cc101
BLAKE2b-256 031fa1e6fdf925fd6d93c3761e99232cb3c8032fbc7f5aa62f0f47172294cc65

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8b5209c6885bf6564d750b656e1d3370a8e042e519f9d47315a73564020ad4a1
MD5 3ba71d336cbe3f7d46ea9cbe18f0c20c
BLAKE2b-256 f08c957c73c8936723fb6d858c9f87dbbef4a9c0a036b6070490bb9113f677a0

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mqt_qmap-2.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for mqt_qmap-2.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bedd11a73315a999507b821e6a3b657ee45e11314e80a4a296cf17e513c6c246
MD5 a620ff3da3927e0daf60f9378ddd6794
BLAKE2b-256 d1eb9c7bf7981937fe7718b7357ced3d2ad3dad542a39fc3f06c1099a144568f

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01fcbddec615aea34e492e1dec1c0c642c1c97e6f804014ea216f932477b8c4e
MD5 95cc1657155a9abcba0bdef00b3edd85
BLAKE2b-256 a032c123bdecd4c0b390ccf8e5ab1187995a7b20dcc8fd34cbe5305547ea48d0

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f1f51e85cad761c7a847715f4a3685d2bdbea33fc89cfb09462cd9230c937baa
MD5 fc16ea01f1439459fd9dc7bcc7ac52e6
BLAKE2b-256 97c4e6f084672660a43fa6965dd0981891a779fbda8fb07cbd8ac0c09479c63c

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2cb4638a0a596a99f72d2394e60786e3977f359ac070dfed2bb639d40022c246
MD5 3cad3583f7b85da6232033333af0afa6
BLAKE2b-256 2672a09a256e3a253691358ff435353a946ec68d44a8d1b209f8572fc642a788

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ded6c9635fa0819c6e8d2ff8c24ed9a49b1877a2fe53b4c358f2dd59474c2f2
MD5 562807aa4d6d0dcb7fccc9d6020d7c62
BLAKE2b-256 adc2353db03d987e0c1273e1edd5074571e255109566f339733f5c4c3173f50d

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c94805394289cf29a2139ab27063954c10771f2431d2fa5197285ec4851d27fe
MD5 2091061c40195b8b7e524c5d81b2fc99
BLAKE2b-256 50f974f01a27f4934249703033fda75d96ed880d98f701553a494b5a64cd4118

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 76503820a76e968426bcdff35cd3df76200fcce5c3c893e5a7320b59b1b69abe
MD5 52a52f3d772450de158de086421d2e81
BLAKE2b-256 31af575eda24f52cd517b22cb67b3af8a937feac1f3280614de12908c36a04a6

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mqt_qmap-2.4.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for mqt_qmap-2.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fb384860535fbcb574b0766f96e735af7b49700ee53b970a781fd138d3b9662e
MD5 1f2ea0e49b39edaff333ce123b1a47a8
BLAKE2b-256 3ec1afb1a2e0504bd04c250d171581e477e1791aba8ec1fde0bc45c8ede77179

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 659b1873a8ead4f9c5da53fdf5a0dafe59d7b7147f43429c03e7adf6ea1f420e
MD5 3c00e50b0a4f938cb5c6a6de8941d2a0
BLAKE2b-256 d4fadd16fa8ac5aca5824a2f2cca8d5239d2a1d91269ab95d6545adf98c9ab3b

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0662822868c85cfe107be1ade3af536290b34c9e15f41a55f0e73785b94bbb23
MD5 98838335c11e89551d4f50810f798f2d
BLAKE2b-256 c230623704fbd699706b59f0d5710bc7fad7676713a914df47f444603b9f8696

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b257560ee7b7bcf409622d8ed83992a6cf8830cf196f957a8e63383758b1c726
MD5 7e97cfd234608eea3d5f2e83b19e602c
BLAKE2b-256 f37cc7c3390d43ea9ccf12c602322c0f8c32c70d03ccbf2e0cfb3344f9fd4612

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45008d6191a0ddc1a17da32a87befd5ef8cb8923ed25830923a0264b091a1ddd
MD5 fab12cac9a53c38d9d15ad64d6294ad3
BLAKE2b-256 c4f84c0b549fd14d4b7c4be0b0ce3074fb997e3a0b0f96dc31fc43caaffe8b05

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb11f9b6422c4b2f09377e694747af8c843d8e2502ae59504322b840c4b3b935
MD5 db47ab3bb5f0855169aada3cc1914331
BLAKE2b-256 94739124997eef634cef091ff863e9f53d839f2eaed45eac6dd8ee95f1f22f48

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cab93e1efecca529d752d9e1f48038d41a7772306f2879560e739e788d6e868e
MD5 594d7e36887cbf39019ddf7a5955e43c
BLAKE2b-256 59110e7565fac6aeeb0ad1e65cd4a7c7b05e92734ad9b69b5db53df7db58388a

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: mqt_qmap-2.4.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for mqt_qmap-2.4.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c91e4278ee9c2b154924c1c5efd1f7f96042fabe98809a9f02d6c56a97fdde94
MD5 9113883632ba3238a137379e00e52153
BLAKE2b-256 76f6143560258afd3b140eb09f4ade38223adf72b932c7cf83296b8b7a46c172

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b71c9a40d47659cf238aac32445c61f59b4d10c67788ab08efb612ff0dd1e3a3
MD5 1474f25e32b273edf69176115849df7e
BLAKE2b-256 62d8d21f488b4ceb85e124257956d0e6959929f48dee760bd5b1724906715873

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f6c627dacb3d98fafd924d5077aa748661d453bbf40d9770760f690263045ab8
MD5 a070956c1352cdddedd65df0346cc00f
BLAKE2b-256 479fb3fea2058d9a8732dd3eee9fd0779981faa1e18b5372dc86a5eb484d4b89

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 86f8f0b756688b3e58e37ccc22c7f370eb2e48d4edc58fdca5590504a16c23fb
MD5 89a71d260216c03d9b18cd4fde2eac22
BLAKE2b-256 23413a802f5451bac72a9b6f1548f54f5c0ba8381dcf1035985db58d1cd4cca8

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6cfd6dc62a52ddaec25398f3fee38af6ca65684db662fd4724a357404dc94516
MD5 d3531bb218d2e315fb4ea7a5de231af5
BLAKE2b-256 99f4ad369eff24728b23107432cefc60ab5a1bda6279283d9652de1def305d35

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e50602b9803c6dd68e57381043511a8a6c1cdcfafc7370cc3ada309534b323a4
MD5 a37fdf25ba1b66a3affb8685b36e6cd2
BLAKE2b-256 809fac6ebde47b47516013de3260e926123257cba09a4b7c000b7446306f9185

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.4.1-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.4.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6ee2c9b3d7ce1213dc0681f0c413fb33632d49a3a0a8c6d270ed0605535c8882
MD5 4452599a6334d618fb381b5388a17d84
BLAKE2b-256 764ae4e8a85336ccf365ea86ca53c2962dffe30e0bb8686cdb01f37fa794e8c3

See more details on using hashes here.

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