Skip to main content

A tool for Quantum Circuit Mapping

Project description

PyPI OS License: MIT CI CD Documentation codecov

MQT Banner

MQT QMAP - A tool for Quantum Circuit Compilation

A tool for quantum circuit compilation developed as part of the Munich Quantum Toolkit (MQT). It builds upon MQT Core, which forms the backbone of the MQT.

Documentation

Key Features

  • Exact and heuristic circuit mapping to superconducting devices: gate-optimal MaxSAT/SMT-based mapping with Z3 for small circuits and scalable A*-search–based mapping for larger ones. GuideExactHeuristic
  • Clifford circuit synthesis and optimization: SAT-based depth/gate-optimal Clifford synthesis with optional destabilizer preservation, plus a fast heuristic splitter for larger circuits. Guide
  • Zoned neutral-atom compilers: routing-agnostic and routing-aware flows that place, route, and schedule atom transfers between storage/entanglement zones. Guide
  • Neutral-atom logical state preparation (NASP): SMT-based generator for optimal preparation schedules of logical graph states on zoned architectures. Guide
  • Hybrid circuit mapper for neutral atom quantum computers: a hybrid approach combining superconducting mapping techniques with atom shuttling. Guide
  • Python-first API with Qiskit integration: pass QuantumCircuit or OpenQASM; one-call compile() or optimize_clifford() via plugin wrappers. API
  • Efficient and portable: C++20 core with Z3-backed solvers, prebuilt wheels for Linux/macOS/Windows via PyPI.

If you have any questions, feel free to create a discussion or an issue on GitHub.

Contributors and Supporters

The Munich Quantum Toolkit (MQT) is developed by the Chair for Design Automation at the Technical University of Munich and supported by the Munich Quantum Software Company (MQSC). Among others, it is part of the Munich Quantum Software Stack (MQSS) ecosystem, which is being developed as part of the Munich Quantum Valley (MQV) initiative.

MQT Partner Logos

Thank you to all the contributors who have helped make MQT QMAP a reality!

Contributors to munich-quantum-toolkit/qmap

The MQT will remain free, open-source, and permissively licensed—now and in the future. We are firmly committed to keeping it open and actively maintained for the quantum computing community.

To support this endeavor, please consider:

Sponsor the MQT

Getting Started

MQT QMAP is available via PyPI.

(venv) $ pip install mqt.qmap

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

from mqt.qmap.plugins.qiskit.sc import compile
from qiskit import QuantumCircuit
from qiskit.providers.fake_provider import GenericBackendV2

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

arch = GenericBackendV2(
    num_qubits=5,
    coupling_map=[[0, 1], [1, 0], [1, 2], [2, 1], [1, 3], [3, 1], [3, 4], [4, 3]],
)
circ_mapped, results = compile(circ, arch=arch)

Optimizing a Clifford circuit is as easy as

from mqt.qmap.plugins.qiskit.clifford_synthesis import optimize_clifford
from qiskit import QuantumCircuit

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

circ_opt, results = optimize_clifford(circ)

Detailed documentation and examples are available at ReadTheDocs.

System Requirements and Building

Building the project requires a C++ compiler with support for C++20 and CMake 3.24 or newer. For details on how to build the project, please refer to the documentation. Building (and running) is continuously tested under Linux, macOS, and Windows using the latest available system versions for GitHub Actions. MQT QMAP is compatible with all officially supported Python versions.

Cite This

Please cite the work that best fits your use case.

MQT QMAP (the tool)

When citing the software itself or results produced with it, cite the MQT QMAP paper:

@inproceedings{wille2023qmap,
  title        = {{{MQT QMAP}}: {{Efficient}} quantum circuit mapping},
  author       = {Wille, Robert and Burgholzer, Lukas},
  year         = 2023,
  booktitle    = {International Symp. on Physical Design},
  doi          = {10.1145/3569052.3578928}
}

The Munich Quantum Toolkit (the project)

When discussing the overall MQT project or its ecosystem, cite the MQT Handbook:

@inproceedings{mqt,
  title        = {The {{MQT}} Handbook: {{A}} Summary of Design Automation Tools and Software for Quantum Computing},
  shorttitle   = {{The MQT Handbook}},
  author       = {Wille, Robert and Berent, Lucas and Forster, Tobias and Kunasaikaran, Jagatheesan and Mato, Kevin and Peham, Tom and Quetschlich, Nils and Rovara, Damian and Sander, Aaron and Schmid, Ludwig and Schoenberger, Daniel and Stade, Yannick and Burgholzer, Lukas},
  year         = 2024,
  booktitle    = {IEEE International Conference on Quantum Software (QSW)},
  doi          = {10.1109/QSW62656.2024.00013},
  eprint       = {2405.17543},
  eprinttype   = {arxiv},
  addendum     = {A live version of this document is available at \url{https://mqt.readthedocs.io}}
}

Peer-Reviewed Research

When citing the underlying methods and research, please reference the most relevant peer-reviewed publications from the list below:

[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. ACM Transactions on Quantum Computing (TQC), 2023.

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

[8] T. Peham, N. Brandl, R. Kueng, R. Wille, and L. Burgholzer. Depth-Optimal Synthesis of Clifford Circuits with SAT Solvers. In IEEE International Conference on Quantum Computing and Engineering (QCE), 2023.

[9] L. Schmid, D. F. Locher, M. Rispler, S. Blatt, J. Zeiher, M. Müller, and R. Wille. Computational Capabilities and Compiler Development for Neutral Atom Quantum Processors: Connecting Tool Developers and Hardware Experts. Quantum Science and Technology, 2024.

[10] L. Schmid, S. Park, S. Kang, and R. Wille. Hybrid Circuit Mapping: Leveraging the Full Spectrum of Computational Capabilities of Neutral Atom Quantum Computers. In Design Automation Conference (DAC), 2024.

[11] Y. Stade, L. Schmid, L. Burgholzer, and R. Wille. An Abstract Model and Efficient Routing for Logical Entangling Gates on Zoned Neutral Atom Architectures. In Int'l Conf. on Quantum Computing and Engineering, 2024.

[12] Y. Stade, L. Schmid, L. Burgholzer, and R. Wille. Optimal State Preparation for Logical Arrays on Zoned Neutral Atom Quantum Computers. In Design, Automation and Test in Europe, 2024.

[13] Y. Stade, W.-H. Lin, J. Cong, and R. Wille. Routing-Aware Placement for Zoned Neutral Atom-based Quantum Computing. In Int'l Conference on CAD, 2025.


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.

MQT Funding Footer

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

mqt_qmap-3.6.0-cp314-cp314t-win_arm64.whl (8.2 MB view details)

Uploaded CPython 3.14tWindows ARM64

mqt_qmap-3.6.0-cp314-cp314t-win_amd64.whl (9.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

mqt_qmap-3.6.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (14.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

mqt_qmap-3.6.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

mqt_qmap-3.6.0-cp314-cp314t-macosx_11_0_x86_64.whl (11.5 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

mqt_qmap-3.6.0-cp314-cp314t-macosx_11_0_arm64.whl (10.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

mqt_qmap-3.6.0-cp312-abi3-win_arm64.whl (8.0 MB view details)

Uploaded CPython 3.12+Windows ARM64

mqt_qmap-3.6.0-cp312-abi3-win_amd64.whl (8.7 MB view details)

Uploaded CPython 3.12+Windows x86-64

mqt_qmap-3.6.0-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (14.5 MB view details)

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

mqt_qmap-3.6.0-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.12+manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

mqt_qmap-3.6.0-cp312-abi3-macosx_11_0_x86_64.whl (11.5 MB view details)

Uploaded CPython 3.12+macOS 11.0+ x86-64

mqt_qmap-3.6.0-cp312-abi3-macosx_11_0_arm64.whl (10.2 MB view details)

Uploaded CPython 3.12+macOS 11.0+ ARM64

mqt_qmap-3.6.0-cp311-cp311-win_arm64.whl (8.0 MB view details)

Uploaded CPython 3.11Windows ARM64

mqt_qmap-3.6.0-cp311-cp311-win_amd64.whl (8.7 MB view details)

Uploaded CPython 3.11Windows x86-64

mqt_qmap-3.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (14.6 MB view details)

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

mqt_qmap-3.6.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

mqt_qmap-3.6.0-cp311-cp311-macosx_11_0_x86_64.whl (11.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

mqt_qmap-3.6.0-cp311-cp311-macosx_11_0_arm64.whl (10.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mqt_qmap-3.6.0-cp310-cp310-win_arm64.whl (8.0 MB view details)

Uploaded CPython 3.10Windows ARM64

mqt_qmap-3.6.0-cp310-cp310-win_amd64.whl (8.7 MB view details)

Uploaded CPython 3.10Windows x86-64

mqt_qmap-3.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (14.5 MB view details)

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

mqt_qmap-3.6.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

mqt_qmap-3.6.0-cp310-cp310-macosx_11_0_x86_64.whl (11.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

mqt_qmap-3.6.0-cp310-cp310-macosx_11_0_arm64.whl (10.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: mqt_qmap-3.6.0.tar.gz
  • Upload date:
  • Size: 1.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mqt_qmap-3.6.0.tar.gz
Algorithm Hash digest
SHA256 6f21fa291cf4ccf63efb4d5b51e0f985fd32e717e51ca66813f6921a1740e4c9
MD5 2993f07e56b4fb35f562a1315f3a7900
BLAKE2b-256 4a35f5d99e3589bde6da112eb36d5d62ea544eb42c299b0244c590eefe1fe8ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0.tar.gz:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mqt_qmap-3.6.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: mqt_qmap-3.6.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mqt_qmap-3.6.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 b4d7d54a0c99141a1673b45b497bd8478b4f92123bc78d227cdccfa2c18ebdbe
MD5 6aeb441ac62f39db19bb2195dec231e3
BLAKE2b-256 b6af823749ba3db903d2de54f827e14378cbadf4f371b70563ecf4b3b28efe9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp314-cp314t-win_arm64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mqt_qmap-3.6.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: mqt_qmap-3.6.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mqt_qmap-3.6.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 bb65f412042bec954c0252fb7876cf6f75de12247c6621a22a847518ff82a598
MD5 4799e1a28f3cf86749085b8f947d6de4
BLAKE2b-256 e8ade5b32338ecdc05ee5b7699d1a1e2ba42e843e7a869f6ad4e0c2c8ae96865

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp314-cp314t-win_amd64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mqt_qmap-3.6.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qmap-3.6.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1c5f11213f6bb5d1c6ad060088fcdb267249e5620c6a5e49552b11b089082558
MD5 b7c25b20b2833490cff5b2a948576eb8
BLAKE2b-256 dbdadfce4299568d886b66c194ea6f032661b741a2f6aef7a2152dfce1c49790

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mqt_qmap-3.6.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qmap-3.6.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 849b5ca9eee20201b47f4219127c4bb652abd4277e30a6459c4e5e6c209b48cc
MD5 536052edc36de3529d50fab5b13dbbf0
BLAKE2b-256 5b5cb915bfc21bc00f44a5dbe8b7196d4bc5da62d11a74dc32550fe5574c4bf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mqt_qmap-3.6.0-cp314-cp314t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qmap-3.6.0-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 aa06f479f5f0922478a675a59ea32e6252946fd39752a2f6dcdb6bd1aa15f81b
MD5 3fb378c152e1a417a53762ea6ce4443e
BLAKE2b-256 316daeedf958bc6261d269f2ddf75b657d6afcdee147fda44ef807e0e89e3bf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp314-cp314t-macosx_11_0_x86_64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mqt_qmap-3.6.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mqt_qmap-3.6.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9f35455f5a150006648c84b5efee8a7e64d0c2cee2b318c6f7d43d25a842779
MD5 4f1fd3d0da6c4747dee74631ec9084df
BLAKE2b-256 27dcd8c429f5b4379f88463446b8b22e41a01d4d36c5ffa8f06806820498e0f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mqt_qmap-3.6.0-cp312-abi3-win_arm64.whl.

File metadata

  • Download URL: mqt_qmap-3.6.0-cp312-abi3-win_arm64.whl
  • Upload date:
  • Size: 8.0 MB
  • Tags: CPython 3.12+, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mqt_qmap-3.6.0-cp312-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 7c7a2bf72e817184dcda4e133a590cbd7cb69bf5ed322a989659b3d7d0ca68fc
MD5 f64ca4ad160fa82e38ee9ec20236f6bf
BLAKE2b-256 9a300087a63f6ef5c8027289e66660f91517f15349146e826bc70c1fa8ffb738

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp312-abi3-win_arm64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

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

File hashes

Hashes for mqt_qmap-3.6.0-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 4c660e295e0cb949ed0c6fdedb4c395536044016d77a55311c8e2d70c4e3b7af
MD5 2cbd3dd6e8a72afbf0c4458973b37b12
BLAKE2b-256 e92b3204607e5adfc0049d08809aee3ace6448ad4ccd4fc5b0982dbbb86526cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp312-abi3-win_amd64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mqt_qmap-3.6.0-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qmap-3.6.0-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d21e5ea7edd3a634c75d3caa2e36c10eabc3b7060bb15a3d71a5df26feba8b5e
MD5 c2ab0ede4296c6e1ff20ee89a1020beb
BLAKE2b-256 331e8c1086f63f1a9b8ee83d7811d8d8dfa8416370ef4d47acb55fae489553e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mqt_qmap-3.6.0-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qmap-3.6.0-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 130df38bcca4755aeda6dc081d942f3b663fd20cd4a0161c3e8941e94dd0176f
MD5 5faf932a188d2de8d87b60da91ec47d8
BLAKE2b-256 3138c739ca595ee21b7c640e4a9b59faa93cef0c78bba8ab6a14f48867da9eee

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mqt_qmap-3.6.0-cp312-abi3-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qmap-3.6.0-cp312-abi3-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 94a1d6f53ca7450cbbe04ebee9ec8ac82bab4bcdc66609b521e59a4f9b18bf20
MD5 ec862b76490f9551255767b905a4dd9d
BLAKE2b-256 c5c8da14bbed7085fdc112f8202956a473e43a9ee60fd9dfacfff5d498ebd382

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp312-abi3-macosx_11_0_x86_64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-3.6.0-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67c8ba5491af035fb0ad1ed050768280d8a2c1bf5ab439773fe54b704533e257
MD5 9e1e31e20d7875fba0549b4d7e1a7a51
BLAKE2b-256 7ce903ca0de7226916a560da0f44e6734db468f494b0d3a01284befb0b6f4332

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp312-abi3-macosx_11_0_arm64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mqt_qmap-3.6.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: mqt_qmap-3.6.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 8.0 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mqt_qmap-3.6.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 f78b780521075cffaed50e7eda140a2d6d784e53d2a65ce76321acf3cdfba723
MD5 9d69efc4af7d1f94a00d2febcd230587
BLAKE2b-256 b3fa74859b6792331ec19d5a27ae8ab133baf130e5d96ad539938414dd7c8175

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp311-cp311-win_arm64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: mqt_qmap-3.6.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mqt_qmap-3.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b5029dab6a2ae1913baf4656a311b9d057434bf0cfd180ef05310a87d5a13b93
MD5 6daa1aeb7ca1d1e08552fe746ba5e067
BLAKE2b-256 00b3742ebc5640b94e7610353b4d048f3223f9b525625cb3bd9ee27ca11c23e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp311-cp311-win_amd64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mqt_qmap-3.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qmap-3.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 27516db62ef7479818f1eaea815765f0747723c5bea4e7f4753c9ea24052184b
MD5 46cf93d85f6ce867d63992cb5716400e
BLAKE2b-256 f2f88a6456bc6b10bdea854e08708742b977808b4988f5f7348585789ee34828

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mqt_qmap-3.6.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qmap-3.6.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 91a55f7e430f8403879ea738cc6b80d8fc0986818121ac73c72e364af37e0f44
MD5 6643ea8302acc67d522a67939956c9d8
BLAKE2b-256 c80f1d60c3dce661bd273b92f04428f16ba2c5eccc699c0b52567ae035bc58a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mqt_qmap-3.6.0-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qmap-3.6.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 0ef5573f42e2ab2e0a07be7f22713adc860bfbf5e8afc2d6b69cd5ef0cb71efc
MD5 c74a26756e6b84b61bb0bf32f80a77d1
BLAKE2b-256 fca18a521b4d1ba133e2964286575ac0ecdd81ba3a3deab928ce0f452b71bcc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp311-cp311-macosx_11_0_x86_64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-3.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fe0cb921be848b4eb49fc3aa99b07a636a9486d23d4f5d246567f836db90d9e
MD5 804ca6649f9847065de44621b2b4199b
BLAKE2b-256 882965bc18656daee09876fdadbd653ffe9a21b8c488d3a1bee17acebadda6cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mqt_qmap-3.6.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: mqt_qmap-3.6.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 8.0 MB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mqt_qmap-3.6.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4cf9594d87da57c18d0eb8e53a7ddae181aafb66527598146aa9ec37a36546a7
MD5 dd426a248ce72a70bd3b1ed4f88ea7be
BLAKE2b-256 18bf2535044feac69848a7ac2dc138ff3df56776715b25167efb9409d5480bdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp310-cp310-win_arm64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: mqt_qmap-3.6.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mqt_qmap-3.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eac8c2123c99bacb8cb1695a254b35314a47276dfd2a71de09e2d600a1ae520b
MD5 2819d760ef77e902ac111c919a714df3
BLAKE2b-256 a57c95b39b81457e8a74c3f222c181cf64cb3172774b0821f99a3e973f637c0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp310-cp310-win_amd64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mqt_qmap-3.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qmap-3.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 99c70edcd264aa967ca1891c0129daefca71d4cf61655b117e7bc97b36a899cb
MD5 fe05888d0026a17707906c86b2ee07a0
BLAKE2b-256 65be2c386c2e5520ee1293e28334786391f1543a1c5c12151d9387c31500ba28

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mqt_qmap-3.6.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mqt_qmap-3.6.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76b45f78e29899dbefb81124c9d3c2c228b3f11a25651066655faa75efb991df
MD5 8860d70ab376e3451ba6048d40bbf99c
BLAKE2b-256 01196a5541ac111756caf3fef71dec72c9e9947a3660d9516396bc31a7fe5d55

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mqt_qmap-3.6.0-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for mqt_qmap-3.6.0-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 2fa4de7c56c08fe35b831a5f165184b697602f232f90052a90bea8713bbff8fc
MD5 98c2f3cafb5eda67c4be97f87626265f
BLAKE2b-256 eb9107028b147b9ae1917f3a57d44ebd64ee4efdeaaa793ff057538c4e1bb4f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp310-cp310-macosx_11_0_x86_64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for mqt_qmap-3.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d170e76a312ad13f994a795876eea93bc8e0111f6ee130a2dc5a94050f6bc07
MD5 b2ca04bc43982906b8fdfde0e895cc04
BLAKE2b-256 71a010acd2be179791e5d08d49dcf3c7204612cf2bce624fdd4b5dadb03553e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mqt_qmap-3.6.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: cd.yml on munich-quantum-toolkit/qmap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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