Metadata-Version: 2.4
Name: pennylane_catalyst
Version: 0.15.0
Summary: A JIT compiler for hybrid quantum programs in PennyLane
Home-page: https://github.com/PennyLaneAI/catalyst
Maintainer: Xanadu Inc.
Maintainer-email: software@xanadu.ai
License: Apache License 2.0
Classifier: Environment :: Console
Classifier: Natural Language :: English
Classifier: Intended Audience :: Science/Research
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pennylane>=0.45.0
Requires-Dist: pennylane-lightning>=0.45.0
Requires-Dist: jax==0.7.1
Requires-Dist: jaxlib==0.7.1
Requires-Dist: numpy>2.0.0
Requires-Dist: scipy-openblas32!=0.3.33,>=0.3.26
Requires-Dist: diastatic-malt==2.15.3
Requires-Dist: xdsl==0.59.0
Requires-Dist: xdsl-jax==0.5.0
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: maintainer
Dynamic: maintainer-email
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

[![Tests](https://github.com/PennyLaneAI/catalyst/actions/workflows/check-catalyst.yaml/badge.svg?branch=main&event=push)](https://github.com/PennyLaneAI/catalyst/actions/workflows/check-catalyst.yaml)
[![Coverage](https://img.shields.io/codecov/c/github/PennyLaneAI/catalyst/main.svg?logo=codecov&style=flat-square)](https://codecov.io/gh/PennyLaneAI/catalyst)
[![Documentation](https://readthedocs.com/projects/xanaduai-catalyst/badge/?version=latest)](https://docs.pennylane.ai/projects/catalyst)
[![DOI](https://joss.theoj.org/papers/10.21105/joss.06720/status.svg)](https://doi.org/10.21105/joss.06720)
[![PyPI](https://img.shields.io/pypi/v/PennyLane-Catalyst.svg?style=flat-square)](https://pypi.org/project/PennyLane-Catalyst)
[![Forum](https://img.shields.io/discourse/https/discuss.pennylane.ai/posts.svg?logo=discourse&style=flat-square)](https://discuss.pennylane.ai)
[![License](https://img.shields.io/pypi/l/PennyLane.svg?logo=apache&style=flat-square)](https://www.apache.org/licenses/LICENSE-2.0)

<p align="center">
  <img src="https://raw.githubusercontent.com/PennyLaneAI/catalyst/main/doc/_static/pl-catalyst-logo-lightmode.png#gh-light-mode-only" width="700px">
    <!--
    Use a relative import for the dark mode image. When loading on PyPI, this
    will fail automatically and show nothing.
    -->
  <img src="./doc/_static/pl-catalyst-logo-darkmode.png#gh-dark-mode-only" width="700px" onerror="this.style.display='none'" alt=""/>
</p>

Catalyst is an experimental package that enables just-in-time (JIT) compilation of hybrid
quantum-classical programs.

**Catalyst is currently under heavy development — if you have suggestions on the API or use-cases
you'd like to be covered, please open an GitHub issue or reach out. We'd love to hear about how
you're using the library, collaborate on development, or integrate additional devices and
frontends.**

## Key Features

- Compile the entire quantum-classical workflow, including any optimization loops.

- Use Catalyst alongside PennyLane directly from Python. Simply decorate quantum code and hybrid
  functions with `@qjit`, leading to significant performance improvements over standard Python
  execution.

- Access advanced control flow that supports both quantum and classical instructions.

- Infrastructure for both quantum *and* classical compilation, allowing you to compile quantum
  circuits that contain control flow.

- Built to be end-to-end differentiable.

- Support for [PennyLane-Lightning](https://github.com/PennyLaneAI/pennylane-lightning) high performance
  simulators, and [Amazon Braket](https://amazon-braket-pennylane-plugin-python.readthedocs.io)
  devices. Additional hardware support, including QPUs, to come.

## Overview

Catalyst currently consists of the following components:

- [Catalyst Compiler](https://docs.pennylane.ai/projects/catalyst/en/latest/modules/mlir.html).

  The core Catalyst compiler is built using [MLIR](https://mlir.llvm.org/), with the addition of a
  quantum dialect used to represent quantum instructions. This allows for a high-level intermediate
  representation of the classical and quantum components of the program, resulting in advantages
  during optimization. Once optimized, the compiler lowers the representation down to LLVM +
  [QIR](https://www.qir-alliance.org/), and a machine binary is produced.

- [Catalyst
  Runtime](https://docs.pennylane.ai/projects/catalyst/en/latest/modules/runtime.html).

  The runtime is a C++ runtime with multiple-device support based on QIR that enables the execution
  of Catalyst-compiled quantum programs. A complete list of all backend devices along with the quantum
  instruction set supported by these runtime implementations can be found by visiting
  [the runtime documentation](https://docs.pennylane.ai/projects/catalyst/en/latest/modules/runtime.html).

In addition, we also provide a Python frontend for [PennyLane](https://pennylane.ai) and [JAX](https://jax.readthedocs.io):

- [PennyLane JAX frontend](https://docs.pennylane.ai/projects/catalyst/en/latest/modules/frontend.html).

  A Python library that provides a `@qjit` decorator to just-in-time compile PennyLane hybrid
  quantum-classical programs. In addition, the frontend package provides Python functions for
  defining Catalyst-compatible control flow structures, gradient, and mid-circuit measurement.

## Installation

Catalyst is officially supported on Linux (x86_64, aarch64) and macOS (arm64) platforms,
and pre-built binaries are being distributed via the Python Package Index (PyPI) for Python versions 3.11 and
higher. To install it, simply run the following ``pip`` command:

```console
pip install pennylane-catalyst
```

Catalyst no longer supports macOS with x86_64 architecture after 0.11.0. This includes Macs running on Intel processors.
If you would like to use Catalyst on these systems, please install Catalyst version 0.11.0, PennyLane version 0.41.0, PennyLane-Lightning
version 0.41.0, and Jax version 0.4.28:

```console
pip install pennylane-catalyst==0.11.0
pip install pennylane==0.41.0
pip install pennylane-lightning==0.41.0
pip install jax==0.4.28
```

If you wish to contribute to Catalyst or develop against our runtime or compiler, instructions for
[building from source](https://docs.pennylane.ai/projects/catalyst/en/latest/dev/installation.html#minimal-building-from-source-guide)
are also available.

## Trying Catalyst with PennyLane

To get started using the Catalyst JIT compiler from Python, check out our [quick start
guide](https://docs.pennylane.ai/projects/catalyst/en/latest/dev/quick_start.html), as well as our
various examples and tutorials in our [documentation](https://docs.pennylane.ai/projects/catalyst).

For an introduction to quantum computing and quantum machine learning, you can also visit the
PennyLane website for [tutorials, videos, and demonstrations](https://pennylane.ai/qml).

## Roadmap

- **Frontend:** As we continue to build out Catalyst, the PennyLane frontend will likely be
  upstreamed into PennyLane proper, providing native JIT functionality built-in to PennyLane. The
  Catalyst compiler and runtime will remain part of the Catalyst project. *If you are interested in
  working on additional frontends for Catalyst, please get in touch.*

- **Compiler:** We will continue to build out the compiler stack, and add quantum compilation
  routines. This includes an API for providing or writing Catalyst-compatible compilation routines.
  In addition, we will be improving the autodifferentiation support, and adding support for
  classical autodiff, additional quantum gradients, and quantum-aware optimization methods.

- **Runtime:** We will be adding support for more devices, including quantum hardware devices. In
  addition, we will be building out support for hetereogeneous execution. *If you are interested in
  working on connecting a quantum device with Catalyst, please get in touch.*

To get the details right, we need your help — please send us your use cases by starting a
conversation, or trying Catalyst out.

## Contributing to Catalyst

We welcome contributions — simply fork the Catalyst repository, and then make a [pull
request](https://help.github.com/articles/about-pull-requests/) containing your contribution.

We also encourage bug reports, suggestions for new features and enhancements.

## Support

- **Source Code:** https://github.com/PennyLaneAI/catalyst
- **Issue Tracker:** https://github.com/PennyLaneAI/catalyst/issues

If you are having issues, please let us know by posting the issue on our GitHub issue tracker.

We also have a [PennyLane discussion forum](https://discuss.pennylane.ai)—come join the community
and chat with the PennyLane team.

Note that we are committed to providing a friendly, safe, and welcoming environment for all. Please
read and respect the [Code of Conduct](.github/CODE_OF_CONDUCT.md).

## Authors

Catalyst is the work of [many contributors](https://github.com/PennyLaneAI/catalyst/graphs/contributors).

If you are doing research using Catalyst, please cite our paper:

```bibtex
@article{
  Ittah2024,
  doi = {10.21105/joss.06720},
  url = {https://doi.org/10.21105/joss.06720},
  year = {2024},
  publisher = {The Open Journal},
  volume = {9},
  number = {99},
  pages = {6720},
  author = {David Ittah and Ali Asadi and Erick Ochoa Lopez and Sergei Mironov and Samuel Banning and Romain Moyard and Mai Jacob Peng and Josh Izaac},
  title = {Catalyst: a Python JIT compiler for auto-differentiable hybrid quantum programs},
  journal = {Journal of Open Source Software}
}
```

## License

Catalyst is **free** and **open source**, released under the Apache License, Version 2.0.

## Acknowledgements

Catalyst makes use of the following libraries and tools, which are under their own respective
licenses:

- [JAX](https://github.com/jax-ml/jax)
- [TensorFlow](https://github.com/tensorflow/tensorflow)
- [OpenXLA](https://github.com/openxla/xla)
- [LLVM/MLIR](https://github.com/llvm/llvm-project)
- [EnzymeAD](https://github.com/EnzymeAD/Enzyme)
- [pybind11](https://github.com/pybind/pybind11)
- [nanobind](https://github.com/wjakob/nanobind)
- [accelerate-lapacke](https://github.com/lepus2589/accelerate-lapacke)
- [LAPACK](https://github.com/Reference-LAPACK/lapack)
- [TOML++](https://github.com/marzer/tomlplusplus)
- [json](https://github.com/nlohmann/json)
- [stim](https://github.com/quantumlib/Stim)
