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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12+ Windows x86-64

mqt_qmap-2.4.0-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.0-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.0-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.0-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.0-cp312-abi3-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.12+ macOS 11.0+ ARM64

mqt_qmap-2.4.0-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.0-cp311-cp311-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.11 Windows x86-64

mqt_qmap-2.4.0-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.0-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.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

mqt_qmap-2.4.0-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.0-cp310-cp310-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.10 Windows x86-64

mqt_qmap-2.4.0-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.0-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.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

mqt_qmap-2.4.0-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.0-cp39-cp39-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.9 Windows x86-64

mqt_qmap-2.4.0-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.0-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.0-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.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

mqt_qmap-2.4.0-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.0-cp38-cp38-win_amd64.whl (7.8 MB view details)

Uploaded CPython 3.8 Windows x86-64

mqt_qmap-2.4.0-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.0-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.0-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.0-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.0-cp38-cp38-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

mqt_qmap-2.4.0-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.0.tar.gz.

File metadata

  • Download URL: mqt_qmap-2.4.0.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.0.tar.gz
Algorithm Hash digest
SHA256 f138863ed40214125e7afc0c8ce2e7b309713895278aebfcb460dc7fdd901018
MD5 d116a51c4daa441b9cff23f62ce6af72
BLAKE2b-256 f4eefd652cdd982b8466e9fcc1cd5b4bf79bfc2c7a174297934de8a23021eed7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mqt_qmap-2.4.0-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.0-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 968ee0ecf64f2e0fff14a9eea71a7fb19e78d9c9df7478809a3f17413e1a4fa2
MD5 05c9b0663dc4b0355129de4937110ec5
BLAKE2b-256 9fe16693074049bb72218794e4a40a8d7540af3a64880e5ba4f46dba18e4a290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6dbc225c47bf5ea3e6186c6256c796a2556f874a2e8db2ef9a8717960ed4e619
MD5 76d59c24580408733800fe559a3fbbcc
BLAKE2b-256 fac204661acd12248eb3b5f9cf1628ada9c1e08404cae782340da8dd01646af2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp312-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f8f594c1fa459dfd5266c0e89481a60d3cd9e4c73fa5ef82b337ef2fadc6213d
MD5 8829f80a481fa70f00bba1b5dbc4309e
BLAKE2b-256 f826297d2a9c278ea5e82dafaa9667b22f824524fa029047a16b082dae4f0ef6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp312-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 83e9d66da485b521b9331cd0a4ed91855a1f0580278219b150644206e264b13c
MD5 50f88d94ccbf0574c3353586701545cb
BLAKE2b-256 fdc4782625c853997edba8b1cac83ca2d97dc1ddeeb497c581145c56bddba848

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 184b3395cac92249826a537f931d9bf7fa2eb838a1ed322865ef81f99e861ebc
MD5 daf25563639ca89d580d8fcfaece2387
BLAKE2b-256 2982f4678544a59b80fdfad3828da94c1ba71757f5e7baf24be78de353c739ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 721f3cbf53d80ba478dcb5f796b936589d90eb9574f3c439ffb450e8763acc26
MD5 68f9411f5d7bc734876834f3a235a018
BLAKE2b-256 24921dd82039091b472ecdcc2f53a177627693a506e68f7c237842df2d45929c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp312-abi3-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d98b9b591c0bc77b52ad292f7ca1443167ac47a30709c3e5ec8dd2726a69e863
MD5 511b5117dc4c44395e9608c26b405d6d
BLAKE2b-256 ec22d1285f662902f0b0770107ed2501dac6c785939c6d0db08d1a941132e626

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mqt_qmap-2.4.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 64204578b0cc878f7ce64a9edb323ac8d84172f53ca185665362de4832d83e73
MD5 eb6a493618dd2623dd73b30632b32224
BLAKE2b-256 9f312b0ce4a7ed67f14f309592083ca93d73cc53c0594e081daa3c4e4bc6c1b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce9b7e58f6a7c1ff2cd59233fd0ef0fb54d586175448801fc6e59dc57d7285f1
MD5 59bbd0788fc40979d9d3c2626adeb56f
BLAKE2b-256 e4d6ab0c05469f6fe2d7643cd639e3d7242b69f64ba1767a7e8071a10a17d6da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f1b2ab8a8879144f9905f13c1f2ccead4be90a71c4eefd5f0565a0b577a9a1e0
MD5 ca8d8e46f81976fe515d61f8cef67bd6
BLAKE2b-256 6e658da99b1af04c78219a7120c02e56e9b947d90a5358c115893f7f7339bdab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee342074f86e22c9556de540096b0092d2b5b9941f673908d93bc76f49936253
MD5 ac9e67ba81a7db7c6ecbb8c94cd9d337
BLAKE2b-256 967cf7fabf8eba7e9dd0f167209de51d6dd6b6b1cfc80c0dbf9b328fca61d4e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d54e5d8516f3f4db8841df176637d6be28f5c155ad5cf40e7b68a7e2b16f5aa
MD5 b41d7c52fb584245c0f17a3d2c46a8d1
BLAKE2b-256 b3b3f9def418dc9fe71c2e079d897f615b3043ab0d4ba88ea2617e68f1f330b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92f899896ac87294e728bf3550b484fdd6f5e83b0b4c6698331cb969dfcb468c
MD5 9293478a80869edd3732bcaf73f79ea5
BLAKE2b-256 3266b1ac5174bdf28f439b0949ad771571ac8ebae3abef4dfb9dcf9018b5794c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b39a7c7945a67f5b78ec05f98bc92ab04a515250bfd563a11ae961fcfa91a374
MD5 7fc9b83d4130440fa81a96696f876558
BLAKE2b-256 a737695db4ed049d841f1a8233f0172856e67ae4422087c2298f041a3c41084b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mqt_qmap-2.4.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 31e0a47a76677427fc5d86f6a3866a844963c5f0e92b9806122bb96349917d1f
MD5 b95f3eef119626b69b91157e25ef6a3f
BLAKE2b-256 78079be60dfe49c5b50649c238e7441ab74a53c8fe9d2709a1d6488cb567ae8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b95dd5ba3520291a2f736cdd470fc6d02875d50be40f44d2ddd9221f125ec59
MD5 0c674c60ef4294ab926444db934e77e6
BLAKE2b-256 294d2dc6cff11c3453ae38ffebd5b66ddb52c9964604193ae05e575bcfa18425

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7f725fb8ad3dcada9fdcfc66420aab068aff75a0e199f6aeea4ec2f29faf8e52
MD5 c4c45aca75c7d236c5a602341920841d
BLAKE2b-256 d6884b3c8a1bc7cabd9f89c71f6142c4e6f324e854701b5ba3b0f08deab90b74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 20259658784c492ac229d633b2abb23c867c58221efc4e684d36fc383d7e33f3
MD5 f12bcafa5d5c5f9fcd462da6e799c155
BLAKE2b-256 ad50ed9b9d647dfcb378c0b535a3bbf990f905eb2b6c8a55d0156875886ec488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cdacb8227b4c66684579f43002e8df647c3b5c1cb5be7bee961812c3893caef5
MD5 1d221dafacb89a3068ba15e7fc94f3be
BLAKE2b-256 eebc37a3b50edcda881163ec2c66fde732e7e443701a5efac8e009ea3420a7b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf65db932430559e9316642419948b1503ed1161c4d4857d4aa3ee9a2c8528f2
MD5 098e809139e2292e1ace1d5db805827d
BLAKE2b-256 ea8b659541fcb4d17a596438a6ff6cbae0a1a9d600166f5d39eb850c90172079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f673d247b5626fd2c44e00459a64e7fb778d00729ccb3614faaa9c126b8588f2
MD5 5c6594c568023ccef996f02ba772db65
BLAKE2b-256 8112d9a42d971e59f52223c0fcfc254d2882612559393b0e1d3a5afcc62f352d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mqt_qmap-2.4.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 db8ce169cc67c1c8d134a59940d8541f93aaaedc800a1a6ca48daac350b93853
MD5 3d6c6995de07f8482b5761919a5e166b
BLAKE2b-256 5cfdd1e4bf5f74fc6e511f43a9797fa85a4e1cfe1a7f962297f682a07b6d74b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1d43ae5393b5a7e879290d69a4ba7d1029300e63b09ea5b4d6f51306d0d76b9
MD5 4e6d967dee9edd4c37db520174c5bc4c
BLAKE2b-256 d4fcca3d3bec848e15a3f6e86c71fb31c800a30bf7279e394e9ab31d71b0b760

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7fd8cb48f7488b2e24fa88d4cac8b64551ec2863f08119fb1ea089d42074227f
MD5 6a641dc5307646f92180ebb4abe10578
BLAKE2b-256 570b4cdd934fff028e42ec6d63536e69a59a7c32271ccae773ef53fc998ad550

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 932fee150741cdcbbe830ae961135299cf8a3a017574cf17aa46180ad40b4946
MD5 a0a0b09c5534146ff6613474789c88d5
BLAKE2b-256 bcfb8345ecd12fecbfbf5a69f79ee6f60c89d47811c961b0e6e79065c2aedf32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 466cc64ecc4d5a8930b68acc8167f82584fe79bc1c4918d5f0d7284fa1649508
MD5 29c796c541458d0297acb919cb084760
BLAKE2b-256 65e457d71c67117ca6e36b26ad9ea6cbb078b3e4feb99f770b22ee36f478e271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbf3ad6bfb83c0ca5f313ed9601c58a7c49ea32ff0c5bf8cb747d88e4263338d
MD5 b6f93480b99b4f2aa974e27d06fd8c66
BLAKE2b-256 9af3ecebbd7ee3cc724c6cf9ef79f9be9ff5eeaf44ca04bdeea40ab12411299c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ebb861d6e77672ac6f548eb7ad5c1455a0d33f6e5f79f945631724306ae7adb1
MD5 61f4ccba7847a718703275fce51a2568
BLAKE2b-256 bc003d4f4439403a26dfe49b124aa52faaa661fdd3ff22dadc0af0e87a87adf1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mqt_qmap-2.4.0-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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 737c9495ce0992227e05d8b04c5a38f2156d41ad05b18734162a1855b62ba3d0
MD5 0beaab4f4ba7b7de9c949817d0e4f1fa
BLAKE2b-256 501e1523dd185a410185b52e44d213b64885228b91ddbad6dd269c69d8524891

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3230bea75d3c16338aa9d6a96ffc86f5c12540c9cbf6a7f50b5769a8b07aacb7
MD5 0b0d11cd781e2a0d642ff335cbe43ede
BLAKE2b-256 df44f437f57c7f839476a0d9b9aa43fd6777c56af57bbf91df1a9c58e550767e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 12c951626122e9c2cbf63c9a856749c4669aa97905297ffd66a63913b77d7d6e
MD5 a5361eecf124ab8edeb276b9dd04e732
BLAKE2b-256 80d6ed47f3416287d9b64d7b923bc9b15b16ff0efe848c956cceb1999f88439a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 690516847a1fd21b4ab77cc1b37120dd80f71ccff8a659dfab1645a14b96eaa3
MD5 09310ee077973c1cf6341134740209d6
BLAKE2b-256 756bc2f54ae3ebbdbcde13c40df5914220acb8b523d7ecc7bad8b5ee5d036c6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d75c88a9f035f1774a768588776a60227cbbb8a6fd10fb7bacfe7d0d50d8d86
MD5 7ff39dd720935985ce977e0ecf5d495c
BLAKE2b-256 fdc6b6be415799056ab7ade9137c634531f52f2ebac8bc4cb3535e0fb38ab84d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7785abe130a2a32b9e1290397e9cd4a9d93578275666baa7f371e9588fb7a0b2
MD5 4a0d73a0787f23c808c825afaae41e75
BLAKE2b-256 56e26329d92ddeb90c180941dcc2fb4a17b1ae759e1725ef00292a672d19dc7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-2.4.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 743ce0a344c5180c48b41843845b747d9cd2e44d22fdaab8b689283eeef3a872
MD5 94e0860974a2e8697948507ef1b42b62
BLAKE2b-256 464ad326f49cd827da047f886e6acdcc990ab1cbf19d247b68fe9cbefeb98f12

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