Metadata-Version: 2.1
Name: mitiq
Version: 0.9.1
Summary: UNKNOWN
Home-page: https://unitary.fund
Author: Unitary Fund
License: GPL v3.0
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: MacOS
Classifier: Operating System :: Unix
Classifier: Operating System :: Microsoft :: Windows
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: numpy (~=1.20.1)
Requires-Dist: scipy (~=1.4.1)
Requires-Dist: cirq (~=0.10.0)
Provides-Extra: development
Requires-Dist: myst-nb (~=0.12.3) ; extra == 'development'
Requires-Dist: sphinx-autodoc-typehints (~=1.12.0) ; extra == 'development'
Requires-Dist: pydata-sphinx-theme (~=0.6.3) ; extra == 'development'
Requires-Dist: flake8 (~=3.7.9) ; extra == 'development'
Requires-Dist: black (~=19.10b0) ; extra == 'development'
Requires-Dist: pyquil (~=2.28.0) ; extra == 'development'
Requires-Dist: sphinx-copybutton (~=0.3.0) ; extra == 'development'
Requires-Dist: qiskit-terra (~=0.16.4) ; extra == 'development'
Requires-Dist: sphinxcontrib-bibtex (~=2.2.0) ; extra == 'development'
Requires-Dist: pytest-xdist[psutil] (~=2.2.1) ; extra == 'development'
Requires-Dist: qiskit-ibmq-provider (~=0.12.2) ; extra == 'development'
Requires-Dist: amazon-braket-sdk (~=1.5.10) ; extra == 'development'
Requires-Dist: qiskit-aer (~=0.7.6) ; extra == 'development'
Requires-Dist: pytest-cov (~=2.11.1) ; extra == 'development'

# Mitiq
[![build](https://github.com/unitaryfund/mitiq/workflows/build/badge.svg)](https://github.com/unitaryfund/mitiq/actions)
[![codecov](https://codecov.io/gh/unitaryfund/mitiq/branch/master/graph/badge.svg)](https://codecov.io/gh/unitaryfund/mitiq)
[![Documentation Status](https://readthedocs.org/projects/mitiq/badge/?version=stable)](https://mitiq.readthedocs.io/en/stable/)
[![PyPI version](https://badge.fury.io/py/mitiq.svg)](https://badge.fury.io/py/mitiq)
[![arXiv](https://img.shields.io/badge/arXiv-2009.04417-<COLOR>.svg)](https://arxiv.org/abs/2009.04417)
[![Downloads](https://static.pepy.tech/personalized-badge/mitiq?period=total&units=international_system&left_color=black&right_color=green&left_text=Downloads)](https://pepy.tech/project/mitiq)
[![Repository](https://img.shields.io/badge/GitHub-5C5C5C.svg?logo=github
)](https://github.com/unitaryfund/mitiq)


[![Unitary Fund](https://img.shields.io/badge/Supported%20By-UNITARY%20FUND-brightgreen.svg?style=for-the-badge)](http://unitary.fund)

![logo](docs/source/img/mitiq-logo.png)

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](https://mitiq.readthedocs.io/en/stable/guide/guide-overview.html).

## Installation

Mitiq can be installed from PyPi via

```bash
pip install mitiq
```

To build from source, see these [installation
instructions](https://mitiq.readthedocs.io/en/latest/contributing.html#development-install). To test installation, run

```python
import mitiq
mitiq.about()
```

This prints out version information about core requirements and optional
quantum software packages which Mitiq can interface with.

If you would like to contribute to Mitiq, check out the [contribution
guidelines](https://mitiq.readthedocs.io/en/stable/toc_contributing.html) for
more information.

### Supported quantum programming libraries

Mitiq can currently interface with:

* [Cirq](https://github.com/quantumlib/Cirq),
* [Qiskit](https://qiskit.org/),
* [pyQuil](https://github.com/rigetti/pyquil),
* [Braket](https://github.com/aws/amazon-braket-sdk-python).

Cirq is a core requirement of Mitiq and is automatically installed. To use
Mitiq with other quantum programming libraries, install the optional package(s)
following the instructions linked above.

### Supported quantum processors

Mitiq can be used on any quantum processor which can be accessed by supported
quantum programming libraries and is available to the user.

## Getting started

See the [getting
started](https://mitiq.readthedocs.io/en/stable/guide/guide-getting-started.html)
guide in [Mitiq's documentation](https://mitiq.readthedocs.io) for a complete
walkthrough of how to use Mitiq. For a quick preview, check out the following
snippet:

```python
import numpy as np
from cirq import depolarize, Circuit, DensityMatrixSimulator, LineQubit, X
from mitiq.zne import execute_with_zne

def noisy_simulation(circ: Circuit) -> float:
    """Simulates a circuit with depolarizing noise.

    Args:
        circ: The quantum program as a Cirq Circuit.

    Returns:
        The expectation value of the |0><0| observable.
    """
    circuit = circ.with_noise(depolarize(p=0.001))
    rho = DensityMatrixSimulator().simulate(circuit).final_density_matrix
    return np.real(np.trace(rho @ np.diag([1, 0])))

# simple circuit that should compose to the identity when noiseless
circ = Circuit(X(LineQubit(0)) for _ in range(80))

# run the circuit using a density matrix simulator with depolarizing noise
unmitigated = noisy_simulation(circ)
print(f"Error in simulation (w/o  mitigation): {1.0 - unmitigated:.{3}}")

# run again, but using mitiq's zero-noise extrapolation to mitigate errors
mitigated = execute_with_zne(circ, noisy_simulation)
print(f"Error in simulation (with mitigation): {1.0 - mitigated:.{3}}")
```
Sample output:
```
Error in simulation (w/o  mitigation): 0.0506
Error in simulation (with mitigation): 0.000519
```

### Example with Qiskit

![Alt Text](docs/source/img/qiskit.gif)


### Example with Cirq

![Alt Text](docs/source/img/cirq.gif)


## Error mitigation techniques

Mitiq currently implements:
* [Zero-Noise Extrapolation](https://mitiq.readthedocs.io/en/stable/guide/guide-zne.html),
* [Probabilistic Error Cancellation](https://mitiq.readthedocs.io/en/stable/guide/guide-getting-started.html#error-mitigation-with-probabilistic-error-cancellation),

and is designed to support [additional techniques](https://github.com/unitaryfund/mitiq/wiki).

## Documentation

Mitiq's documentation is hosted at [mitiq.readthedocs.io](https://mitiq.readthedocs.io).

## Developer information

We welcome contributions to Mitiq including bug fixes, feature requests, etc.
Please see the [contribution
guidelines](https://mitiq.readthedocs.io/en/stable/toc_contributing.html) for
more details. To contribute to the documentation, please see these
[documentation
guidelines](https://mitiq.readthedocs.io/en/stable/contributing_docs.html).

## Authors

An up-to-date list of authors can be found
[here](https://github.com/unitaryfund/mitiq/graphs/contributors).

## Research

We look forward to adding new features to Mitiq. If you have a proposal
for implementing a new quantum error mitigation technique, or adding an example
used in your research, please read our
[guidelines](https://mitiq.readthedocs.io/en/stable/research.html) for
contributing.

### Citing Mitiq

If you use Mitiq in your research, please reference the [Mitiq preprint][arxiv]
as follows:

```bibtex
@misc{larose2020mitiq,
    title={Mitiq: A software package for error mitigation on noisy quantum computers},
    author={Ryan LaRose and Andrea Mari and Peter J. Karalekas
            and Nathan Shammah and William J. Zeng},
    year={2020},
    eprint={2009.04417},
    archivePrefix={arXiv},
    primaryClass={quant-ph}
}
```

A list of papers citing Mitiq can be found [here][papers_with_mitiq].

[arxiv]: https://arxiv.org/abs/2009.04417

[papers_with_mitiq]: https://mitiq.readthedocs.io/en/stable/research.html#papers-citing-or-using-mitiq

## License

[GNU GPL v.3.0.](https://github.com/unitaryfund/mitiq/blob/master/LICENSE)

### unitaryHACK

Mitiq is participating in [unitaryHACK](http://hack2021.unitary.fund/), check
out and contribute on open issues labeled
[`unitaryhack`](https://github.com/unitaryfund/mitiq/labels/unitaryhack)!


