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) 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.


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.

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.5.1.tar.gz (1.4 MB view details)

Uploaded Source

Built Distributions

mqt_qmap-2.5.1-cp312-cp312-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.12 Windows x86-64

mqt_qmap-2.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

mqt_qmap-2.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

mqt_qmap-2.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (11.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

mqt_qmap-2.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

mqt_qmap-2.5.1-cp312-cp312-macosx_11_0_arm64.whl (9.4 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

mqt_qmap-2.5.1-cp312-cp312-macosx_10_15_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.12 macOS 10.15+ x86-64

mqt_qmap-2.5.1-cp311-cp311-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.11 Windows x86-64

mqt_qmap-2.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

mqt_qmap-2.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

mqt_qmap-2.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (11.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

mqt_qmap-2.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

mqt_qmap-2.5.1-cp311-cp311-macosx_11_0_arm64.whl (9.4 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

mqt_qmap-2.5.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.5.1-cp310-cp310-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.10 Windows x86-64

mqt_qmap-2.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

mqt_qmap-2.5.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

mqt_qmap-2.5.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (11.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

mqt_qmap-2.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

mqt_qmap-2.5.1-cp310-cp310-macosx_11_0_arm64.whl (9.4 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

mqt_qmap-2.5.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.5.1-cp39-cp39-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.9 Windows x86-64

mqt_qmap-2.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

mqt_qmap-2.5.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

mqt_qmap-2.5.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (11.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

mqt_qmap-2.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

mqt_qmap-2.5.1-cp39-cp39-macosx_11_0_arm64.whl (9.4 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

mqt_qmap-2.5.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.5.1-cp38-cp38-win_amd64.whl (8.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

mqt_qmap-2.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

mqt_qmap-2.5.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (9.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

mqt_qmap-2.5.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (11.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

mqt_qmap-2.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

mqt_qmap-2.5.1-cp38-cp38-macosx_11_0_arm64.whl (9.4 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

mqt_qmap-2.5.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.5.1.tar.gz.

File metadata

  • Download URL: mqt_qmap-2.5.1.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for mqt_qmap-2.5.1.tar.gz
Algorithm Hash digest
SHA256 672c1230d3c977cee631f14aaea252fcc4890bf74b98774edf8231cf6ef1884f
MD5 69e051ba190d297232312f43acd27a3b
BLAKE2b-256 64ae73035aa247507c5ba27f4c5a6eddbf666969165c4ea4644c01f15d98c948

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.5.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: mqt_qmap-2.5.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for mqt_qmap-2.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3b95f053a04da225f3e740cf09185f4abc9f25a18441271c319ff2ab7bf72321
MD5 de4caca282de22c7356d04f29c1c7bf0
BLAKE2b-256 5901afae172a7384ae48b1727833e5b04caa12e0c2da44e105a659168ddc20b2

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9be43d3fbb31225aa64e8b7c7c6d2ebc7a474f1a614384713c09344ac42c5b5a
MD5 a93b2fc72dfbd9c6bb65179d53b879d0
BLAKE2b-256 ed2adb3270235fb13b74fe6ff9ba9807d57cb4836760ec73c94e6074897bf6f1

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 225e09ce0bd0496a6e681654d28cd79e043040c9ced3de04c92dcdc46d87a4fa
MD5 cc78337dfc2766c8f36a5fd48c37fb0a
BLAKE2b-256 d7213a0cd45bd986bf4f6cbc66acdc84faad85db9c92926502821c9de69a012a

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e5de1ef3c7b704657f7f4ce59cc9511adbbb69b48d30b089b69256a998cff72a
MD5 dc2d6ab7f3addd8cedab481816aeb10e
BLAKE2b-256 e7ac7bd30d69893bb6f70514f37539f58ae77896c903180eee02cf98819155a8

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d612ef843721da050f5cabb2fc6e4a178bd57170e44711d340437ca5b977f04f
MD5 40082f1058374685176cd6911a76909e
BLAKE2b-256 d3ba5cca8f8a2d682d918f7e0ea26cffad3d2d97a99b8b922042f755fb0e0e56

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.5.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 702a1c47b2a7cd777daef77d1440240f76f379af7d6ca7ae3c780f97681efaff
MD5 031445cbc73ead46fccee9d6b16338f6
BLAKE2b-256 536db4b1e7fe737e2aa69447131f5a0722b032cd0ed19441d60468f334d96943

See more details on using hashes here.

File details

Details for the file mqt_qmap-2.5.1-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7eeb43915dc847d240d70d081c4032c39b7ae2da7deb099aba50904fbefcad0f
MD5 e9380fc9b4e1a50299da1fe6334fc02a
BLAKE2b-256 342f36e8b09b7be9e16b142a1fb9270cd91ee1a58410c9c6b5d430f58ec6ab5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mqt_qmap-2.5.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for mqt_qmap-2.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 32789fabb56e587e493f58cf4f63fcd24437403e04bc7d1d5a3a2ba28b07f885
MD5 84cc02464993b3a424eb053b2f678c52
BLAKE2b-256 1631767624b5dd3a13231b620f84cd622993f9fab550e9d5645bd88817833b93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ecc18e9c7d95827834a55f040d4c9c351925e07ea392a13d59675eb69030b33
MD5 c9b46a06a61ead7ae56ea87709fad8d2
BLAKE2b-256 ea995d8f1b3c446de5514898d91ffd42a9c72eeda5dc47e4634b7b0ed63321f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f86350733013a4bdc55ca1879680935fe8482c3c3bc09af86ace79d8bbe40ae
MD5 6c088c9842db2b7d9032cd30561a2b43
BLAKE2b-256 7daaf022b2b01b9f67a98733033177b6e278f80d7bb208902d989d18ab3e7aac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1f4b9d2b42de9ad23675a8107b48b153997d5a1a02c4454987a1902fd06467ba
MD5 016d6884202e426242d0b2a6428ff38c
BLAKE2b-256 41bf9aae0ba3e538a34d151f82e311a1c8e52aa04591f77c803272c62ac8ab69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26a79ac7b65fb34d977f21caec59515aecff388b03ef099ffe48291fb3d2ac53
MD5 790399b95900fcd9f3e02a9545b30169
BLAKE2b-256 88e47727c66cbb139a63fbf68a02f283b41702bdebc763890ff34fe1f9896f84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3886b80e6f3c2d032ecc6e56cc88cfa1d43a78085728f7e894d61c6d4c38a858
MD5 6f0a2fa56f5b700f575dbd754bd93b7f
BLAKE2b-256 001f102fcef8025419c19ff986bb96758c2e878c6f011675a6db2f3711d80d87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9390cfa36c6f6bed8ea63e3fff380a6f13061ff54d3c79753bf1b780447fcf42
MD5 147371a69a850d9f2d0419cc4a52708e
BLAKE2b-256 5517561ba41569b04b9b64fd63c8bb2b4dc2fed5b6e23e31ef2495f5d7e4217e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mqt_qmap-2.5.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for mqt_qmap-2.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 169ea60ffc9d70ee3499eb715f2d1730fedae8ba82b046a6595b8baa2fba1393
MD5 728f1ce5f3bf69e2d858794abb8570b6
BLAKE2b-256 cb4de42f4052d8866c28bcb9abca9adcb9730e91cf6c03c5ec861f2fad4a5703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 813dc107c946961c47b2c94f3a4bcaba0f9c01d5347412956166afe53027b707
MD5 f4828a963fe979a069e34cece4ff3059
BLAKE2b-256 b5f8131d1e4388bffaf1d98456a276acf922a51d96d71417c66f118467498093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 02210e099d9499babe27c07eb21d870213a9b309faf14617580bb263c8ec1346
MD5 d2e1a728544c77de24aa1264f0807ca9
BLAKE2b-256 5e8a0ace72aca21d6680bb3a143eeb282c793e4ce02fd5719cf11855cfaafd32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7aba7179e752cc1469e58b591d30c5197e18e475bdd0d9e352c7fa8fc52d3327
MD5 3d7be756a0132253a7fa8c4ef41e0f66
BLAKE2b-256 bc26191b2c6c1f9410ceb1e44c491e23c18406e8e6adb77bad933ce4c6ddb00f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0099ca63cb0afbf9ad6fddf2b5e98a0383cd4db913e29d8e3e716bdec34a0a1
MD5 4dee251c211b313b9dc58edbbb58d803
BLAKE2b-256 104c0ea2eb1e9879d2175dc9549767bc4370053c5a58ae7a9c56c04ef381bcfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e30d03680e96ca8213d87954c003577a7899b1f0e43e1a9d59c493562ee37590
MD5 1c5d63aafc7d81d0f57a3e57dfe4c1d3
BLAKE2b-256 ed73e057b79a04dd78bbee03547e020c8d2a9ffe73f5667187c0ff1c845cd9e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 86c6028ca1bee9a0949b0fff0e9b56f1dfdaf9ed84cfd3764fd763ceac3347d0
MD5 8f9420fb3476d5940f6c3ccf201827e7
BLAKE2b-256 dccadea282fea349f47c6703ba8db9b0c49d1c32f6d34a20dfe7a170f7c61dd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mqt_qmap-2.5.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for mqt_qmap-2.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4cfb8c83a044cde1b85f2074e337a15fac393fde46b6b1d1ccf78456e7d4af5f
MD5 c1a507ccec885cce9b74154588742011
BLAKE2b-256 180d4dbc2c7569fb58208698df19b35a2ddc5ddb3b59944f50186a7ab86549f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a548188a20fe3ea74f7275b48e39802df4f0f59eac14d49484c18edaa7726bb
MD5 dd9c747c64663da3b9a9c613d0ee0d3e
BLAKE2b-256 8aaeebee4d5611f6d09b368746913597cc36e11af02b05cd1cd9dd5d496e0ce9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 53ab23588642bf54ffce97df1109259e00042e92b09b64256834b5bab447057e
MD5 5c701ef17d7bd9e8394042b0b8e809f9
BLAKE2b-256 9670bb770310ac4beb2250ee651d0bc446fdc0b28706676695e9ee680f4cd8d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d57abda92ae36d2fea721c5969a175507f858c079c4747daa9f9678e148e419c
MD5 5346ca22e354552b836ab37d87b4f345
BLAKE2b-256 66c2d729282a37fea0b2bb2b67222ffce0cb216c8e2ce30062f1435d49cc454e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d594e74975bca0c1ab71f7ce535b3aba41c17cca27aad9b8d85d8fbb6c7d49b
MD5 aea1dad14e07a2803929f1d6ce8e3d17
BLAKE2b-256 8d5a60bb8d011534ec854ea617b170f5740701c633a8585247e8206d589361ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b3013193040c3c590a07fa74915800fa88fb2ecc213fb50f3cb439f1c8075c3
MD5 caa99530f41f0e0f15c5727a578f26f1
BLAKE2b-256 684d42b894b65b116c095c775b5316a354c2a4c6f51f82e0b6868758ffc7173e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 56083c4b87051c358216ff07a5b3ae7e64156c85d8bc3a06c8e6db2fbda78e72
MD5 16e01df00b7c967e7b85e43c4b8a1f21
BLAKE2b-256 4abebfb132c9adb379e1f4aab0b63be5b1f717def93a9755e146a0a0e98bc380

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mqt_qmap-2.5.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 8.0 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for mqt_qmap-2.5.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 013d4406261720e0600e24d8b2cfdd1696ace0a3e164b54a679b7c203eef09fc
MD5 25b9f50c8802045c734f457fdaf16f7a
BLAKE2b-256 683f61a1cf55455bde99e11908ee7af35745ae2543a61c0857d61cc27c918029

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca0e1826739d71c9a3062233b70db6a917de3fc88216fe99bfeda1463e5a8b9a
MD5 15a685edadc3fae97aa3a0aa6e671305
BLAKE2b-256 ddd7e5738d38ff5011b4127dd0d51fd092b087e0c20a4b259a7fa0504daf4dcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0c5cd7d6816b9ddf4c58830007c8cbe729f51c0ad0ffb37d375f954dc7b36088
MD5 0287671f32fa6b674004a51e2da07ec2
BLAKE2b-256 5eca119cad21fcea03191b9414e115669b5489ac1037abe7220c7f362a75a9a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1bf24196f9f8e88448dc534691b99655780de45b3b7fd1515f2c8d6d12b92bf3
MD5 9ae3dab02437c2f2959fc22664c65f75
BLAKE2b-256 2525c3f8afb0a11cb72f85753cbfcba7811d592c360b2e2a6e50b707c851dde8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3d07bc23d83bf466d179267b2bf6a6f33d0a9c3456657da940baae5ff7e2307
MD5 20488c1275e4295be31c35257469670c
BLAKE2b-256 98e2d8296ec6f39476400bcd9dd43c4b51abf2a180c25398ccd4064ede04e05f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60da0cdc610dcb4aacf163375959c9a2d05346d501355c3af72fb3b4bc708ad6
MD5 98083de5d205c2a7ca0b8165464417d5
BLAKE2b-256 1ec2f2eb293fb6fcf78eaf7e1f1b17712066d14ec38e6ab73e2a13186dd12e6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.5.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1d0ef88fa798107c7f7750d538d996caa724aa8be5ff30bf1fcc32b0e29d8d89
MD5 24b279acf9eae058def6291c0dbfd6c9
BLAKE2b-256 7353bff22dd35127a0f809795e988a2487207250bc9cbb23c39063bf3da379d2

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