Skip to main content

Mitiq is an open source toolkit for implementing error mitigation techniques on most current intermediate-scale quantum computers.

Project description

Mitiq logo

All Contributors

build Documentation Status codecov PyPI version arXiv Downloads Repository Unitary Fund Discord Chat Binder

Mitiq is a Python toolkit for implementing error mitigation techniques on quantum computers.

Current quantum computers are noisy due to interactions with the environment, imperfect gate applications, state preparation and measurement errors, etc. Error mitigation seeks to reduce these effects at the software level by compiling quantum programs in clever ways.

Want to know more? Check out our documentation and chat with us on Discord.

Do you use near-term quantum hardware? Have you tried Mitiq? Either way, take our survey and help make Mitiq better! bit.ly/mitiq-survey

Quickstart

Installation

pip install mitiq

Example

Define a function which inputs a circuit and returns an expectation value you want to compute, then use Mitiq to mitigate errors.

import cirq
from mitiq import zne, benchmarks


def execute(circuit: cirq.Circuit, noise_level: float = 0.001) -> float:
    """Returns Tr[ρ |0⟩⟨0|] where ρ is the state prepared by the circuit with depolarizing noise."""
    noisy_circuit = circuit.with_noise(cirq.depolarize(p=noise_level))
    return cirq.DensityMatrixSimulator().simulate(noisy_circuit).final_density_matrix[0, 0].real


circuit: cirq.Circuit = benchmarks.generate_rb_circuits(n_qubits=1, num_cliffords=50)[0]

true_value = execute(circuit, noise_level=0.0)       # Ideal quantum computer.
noisy_value = execute(circuit)                       # Noisy quantum computer.
zne_value = zne.execute_with_zne(circuit, execute)   # Noisy quantum computer + Mitiq.

print(f"Error (w/o  Mitiq): %0.4f" %abs((true_value - noisy_value) / true_value))
print(f"Error (with Mitiq): %0.4f" %abs((true_value - zne_value) / true_value))

Sample output:

Error (w/o  Mitiq): 0.0688
Error (with Mitiq): 0.0002

See our guides and examples for more explanation, techniques, and benchmarks. The examples and other notebooks can be run interactively on the cloud with mybinder.org.

Quick Tour

Error mitigation techniques

Technique Documentation Mitiq module Paper Reference(s)
Zero-noise extrapolation ZNE mitiq.zne 1611.09301
1612.02058
1805.04492
Probabilistic error cancellation PEC mitiq.pec 1612.02058
1712.09271
1905.10135
(Variable-noise) Clifford data regression CDR mitiq.cdr 2005.10189
2011.01157
Dynamical decoupling (In progress) (In progress) 9803057
1807.08768

See our roadmap for additional candidate techniques to implement. If there is a technique you are looking for, please file a feature request.

Interface

We refer to any programming language you can write quantum circuits in as a frontend, and any quantum computer / simulator you can simulate circuits in as a backend.

Supported frontends

Cirq Qiskit pyQuil Braket PennyLane
Cirq logo Qiskit logo Rigetti logo AWS logo    PennyLane logo

Note: Cirq is a core requirement of Mitiq and is installed when you pip install mitiq.

Supported backends

You can use Mitiq with any backend you have access to that can interface with supported frontends.

Citing Mitiq

If you use Mitiq in your research, please reference the Mitiq preprint (bibtex). A list of papers citing Mitiq can be found on Google Scholar / Semantic Scholar.

License

GNU GPL v.3.0.

Contributing

We welcome contributions to Mitiq including bug fixes, feature requests, etc. To get started, check out our contribution guidelines and/or documentation guidelines. An up-to-date list of contributors can be found here and below.

Contributors ✨

Thanks goes to these wonderful people (emoji key):


Yash-10

⚠️ 💻

Laurent AJDNIK

📖

Tianyi Hao

💻 🐛

Brian Lui

💻 🐛

Cole Kissane

💻 🐛

Michał Stęchły

💻

Kunal Marwaha

📖

k-m-schultz

💡

Bobin Mathew

📖

LogMoss

📖 🐛

DSamuel1

💡 💻

sid1993

💻 🐛

Yousef Hindy

💻 ⚠️ 📖

Mohamed El Mandouh

💻 ⚠️ 📖

Aaron Robertson

💡 ⚠️ 🐛

Ashish Panigrahi

📖

Maxime Tremblay

💻 📖 🤔

Andre

📖 ⚠️

Purva Thakre

📖 🚇 💻 🤔

Peter Karalekas

🚧 💻 📖 🚇 🤔

Sarah Kaiser

🚧 💻 📖 🚇 🤔

Andrea Mari

🚧 💻 📖 🚇 🤔

Will Zeng

🚧 💻 📖 🚇 🤔

Nathan Shammah

🚧 💻 📖 🚇 🤔

Ryan LaRose

🚧 💻 📖 🚇 🤔

francespoblete

🎨

Misty-W

💻 💡

AkashNarayanan B

🚇

This project follows the all-contributors specification. Contributions of any kind welcome!

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

mitiq-0.12.0.tar.gz (94.5 kB view details)

Uploaded Source

Built Distribution

mitiq-0.12.0-py3-none-any.whl (125.2 kB view details)

Uploaded Python 3

File details

Details for the file mitiq-0.12.0.tar.gz.

File metadata

  • Download URL: mitiq-0.12.0.tar.gz
  • Upload date:
  • Size: 94.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for mitiq-0.12.0.tar.gz
Algorithm Hash digest
SHA256 52f7fc84b13fccce59217cadf9c918a14e7efb1bdb5a8a435866312e624ad533
MD5 24626bfcbc23215d2784e49330b0c334
BLAKE2b-256 f2203574569a00f1f066b4279c4231c92455389b90e346544e0e9d0b9067cdae

See more details on using hashes here.

File details

Details for the file mitiq-0.12.0-py3-none-any.whl.

File metadata

  • Download URL: mitiq-0.12.0-py3-none-any.whl
  • Upload date:
  • Size: 125.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for mitiq-0.12.0-py3-none-any.whl
Algorithm Hash digest
SHA256 398f0a0ab3cb14fd52464b219b2a489eb701caacfd76f9c4c5add09c535c57c5
MD5 321a14ed81944a1cf1ca4592c0ef0835
BLAKE2b-256 9853f1c01d4857dd7f1fbb0219207bafc8f89a8350ccf57232b48138f020a8d3

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