Skip to main content

A high-level quantum programming language

Project description


License PyPI - Version Discord Pytest Downloads CodeFactor

Paper Forks Open Issues Stars Contributors

About

Qrisp is a high-level quantum programming framework that allows for intuitive development of quantum algorithms. It provides a rich set of tools and abstractions to make quantum computing more accessible to developers and researchers. By automating many steps one usually encounters when programming a quantum computer, introducing quantum types, and many more features Qrisp makes quantum programming more user-friendly yet stays performant when it comes to compiling programs to the circuit level.

Features

  • Intuitive quantum program design
  • High-level quantum programming
  • Efficient quantum algorithm implementation
  • Extensive documentation and examples

Installation

You can install Qrisp using pip:

pip install qrisp

Qrisp has been confirmed to work with Python version 3.11 & 3.12.

Qrisp is compatible with any QASM-capable quantum backend! In particular, it offers convenient interfaces for using IBM, IQM and AQT quantum computers, and any quantum backend provider is invited to reach out for a tight integration!

Additional backends require extra dependencies:

pip install qrisp[aqt]     # AQT quantum hardware
pip install qrisp[iqm]     # IQM quantum hardware
pip install qrisp[qiskit]  # Qiskit Aer simulator + IBM Quantum Runtime

Documentation

The full documentation, alongside with many tutorials and examples, is available under Qrisp Documentation.

Shor's Algorithm with Qrisp

Shor's algorithm is among the most famous quantum algorithm since it provides a provably exponential speed-up for a practically relevant problem: Facotrizing integers. This is an important application because much of modern cryptography is based on RSA, which heavily relies on integer factorization being insurmountable.

Despite this importance, the amount of software that is actually able to compile the algorithm to the circuit level is extremely limited. This is because a key operation within the algorithm (modular in-place multiplication) is difficult to implement and has strong requirements for the underlying compiler. These problems highlight how the Qrisp programming-model delivers significant advantages to quantum programmers because the quantum part of the algorithm can be expressend within a few lines of code:

from qrisp import QuantumFloat, QuantumModulus, h, QFT, control

def find_order(a, N):
    qg = QuantumModulus(N)
    qg[:] = 1
    qpe_res = QuantumFloat(2*qg.size + 1, exponent = -(2*qg.size + 1))
    h(qpe_res)
    for i in range(len(qpe_res)):
        with control(qpe_res[i]):
            qg *= a
        a = (a*a)%N
    QFT(qpe_res, inv = True)
    return qpe_res.get_measurement()

To find out how this can be used to break encryption be sure to check the tutorial.

Qrisp offers much more than just factoring! More examples, like simulating molecules at the quantum level or how to solve the Travelling Salesman Problem, can be found here.

Feedback and Contact

If you have comments, questions or love letters, here is how you can engange with the Qrisp Community and Developers:

  • Join the Discussions on Discord.
  • Join the bi-weekly Developer Call.
  • Ask a question, request a new feature and file a bug with GitHub issues.
  • Vote on existing GitHub issues by reacting with a 👍. We regularly check issues with votes!
  • Star the repository to show your support.

Authors and Citation

Qrisp is the work of many people.

If you want to cite Qrisp in your work, please use:

@misc{seidel2024qrisp,
      title={Qrisp: A Framework for Compilable High-Level Programming of Gate-Based Quantum Computers}, 
      author={Raphael Seidel and Sebastian Bock and René Zander and Matic Petrič and Niklas Steinmann and Nikolay Tcholtchev and Manfred Hauswirth},
      year={2024},
      eprint={2406.14792},
      archivePrefix={arXiv},
      primaryClass={quant-ph},
      url={https://arxiv.org/abs/2406.14792}, 
}

License

Eclipse Public License 2.0

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

qrisp-0.9.4.tar.gz (848.9 kB view details)

Uploaded Source

Built Distribution

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

qrisp-0.9.4-py3-none-any.whl (1.1 MB view details)

Uploaded Python 3

File details

Details for the file qrisp-0.9.4.tar.gz.

File metadata

  • Download URL: qrisp-0.9.4.tar.gz
  • Upload date:
  • Size: 848.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.10

File hashes

Hashes for qrisp-0.9.4.tar.gz
Algorithm Hash digest
SHA256 c8ad608e06043052c25f7b0a2f4679721777d28cce5ea34aa35b24136c42b269
MD5 03a9064b02dc93f4c733c49edc801dec
BLAKE2b-256 ba66d5a84df602b70b821384170b9e13a5c800917dd141388c04ad90151693b9

See more details on using hashes here.

File details

Details for the file qrisp-0.9.4-py3-none-any.whl.

File metadata

  • Download URL: qrisp-0.9.4-py3-none-any.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.10

File hashes

Hashes for qrisp-0.9.4-py3-none-any.whl
Algorithm Hash digest
SHA256 e8b05e0fda47c40dc39fa9f6758c8f7a25acaa8d56566b1b90a05150189985cb
MD5 10669872684be0527a2bbf29d067ae18
BLAKE2b-256 ab9c22057f4607d58f52808d3ccf64c9fa52b15c785b31935ec83bd52cc58236

See more details on using hashes here.

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