Metadata-Version: 2.4
Name: mrmustard
Version: 1.0.0a1
Summary: Differentiable quantum Gaussian circuits
Author-email: Xanadu <filippo@xanadu.ai>
License: Apache License 2.0
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Scientific/Engineering :: Physics
Requires-Python: <3.13,>=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: equinox>=0.11.10
Requires-Dist: grpcio==1.60.0
Requires-Dist: importlib-resources<7,>=6.5.2
Requires-Dist: ipython>=8.18.1
Requires-Dist: ipywidgets<9,>=8.1.3
Requires-Dist: matplotlib<4,>=3.5.0
Requires-Dist: nbformat<6,>=5.10
Requires-Dist: networkx<4,>=3.1
Requires-Dist: numba<1,>=0.59
Requires-Dist: numpy<3,>=2.0.0
Requires-Dist: optax<0.3,>=0.2.4
Requires-Dist: platformdirs>=2.2.0
Requires-Dist: plotly<6,>=5.20.0
Requires-Dist: rich<14,>=13.9.0
Requires-Dist: scipy<2,>=1.8.0
Requires-Dist: semantic-version<3,>=2.10.0
Requires-Dist: tensorflow<2.19.0,>=2.15.0
Requires-Dist: tensorflow-intel<3,>=2.15.0; sys_platform == "win32"
Requires-Dist: tensorflow-io-gcs-filesystem<0.32.0; sys_platform == "win32" and python_version < "3.12"
Requires-Dist: tensorflow-io-gcs-filesystem>=0.23.1; sys_platform != "win32" and python_version < "3.12"
Requires-Dist: tensorflow-probability[tf]<1.0,>=0.22.0
Requires-Dist: thewalrus<1,>=0.19.0
Dynamic: license-file

![Logo](https://github.com/XanaduAI/MrMustard/blob/main/mm_white.png#gh-light-mode-only)
![Logo](https://github.com/XanaduAI/MrMustard/blob/main/mm_dark.png#gh-dark-mode-only)

[![Apache-2.0](https://img.shields.io/badge/License-Apache--2.0-blue)](https://opensource.org/licenses/Apache-2.0)
[![Actions Status](https://github.com/XanaduAI/MrMustard/workflows/Numpy%20tests/badge.svg)](https://github.com/XanaduAI/MrMustard/actions/workflows/tests_numpy.yml)
[![Actions Status](https://github.com/XanaduAI/MrMustard/workflows/Jax%20tests/badge.svg)](https://github.com/XanaduAI/MrMustard/actions/workflows/tests_jax.yml)
[![Actions Status](https://github.com/XanaduAI/MrMustard/workflows/Tensorflow%20tests/badge.svg)](https://github.com/XanaduAI/MrMustard/actions/workflows/tests_tensorflow.yml)
[![Python version](https://img.shields.io/pypi/pyversions/mrmustard.svg?style=popout-square)](https://pypi.org/project/MrMustard/)

# Mr Mustard: Your Universal Differentiable Toolkit for Quantum Optics

Mr Mustard is a differentiable simulator with a sophisticated built-in optimizer, that operates seamlessly across phase space and Fock space. It is built on top of an agnostic autodiff interface, to allow for plug-and-play backends (`numpy` (default), `tensorflow`, `jax`).

## Installation

### For Users

```bash
pip install mrmustard
```

### For Developers

```bash
git clone https://github.com/XanaduAI/MrMustard.git
cd MrMustard
uv sync
```

> [!WARNING]
> This project uses `uv` for package management. Make sure to activate the virtual environment with `source .venv/bin/activate` before development.

## Quick Start

Make a four-lobed cat state:

```python
import numpy as np
from mrmustard.lab.states import Coherent, Number
from mrmustard.lab.transformations import BSgate

# Create cat states
cat_horizontal = (Coherent(mode=0, x=2) + Coherent(mode=0, x=-2)).normalize()
cat_vertical = (Coherent(mode=1, y=2) + Coherent(mode=1, y=-2)).normalize()

# merge with beamsplitter
both_modes = cat_vertical >> cat_horizontal >> BSgate(modes=(0, 1), theta=np.pi/4)

# Wigner function of the marginal
both_modes[0]
```

<img width="571" alt="Wigner function of the marginal" src="https://github.com/user-attachments/assets/85477eef-abd3-4fe3-a00f-c0a6b1dc0260" />

```python
# Wigner function of the projected state
both_modes >> Number(mode=0, n=3).dual
```

<img width="571" alt="Wigner function of the projected state" src="https://github.com/user-attachments/assets/1f4367d2-1dbd-4088-baed-d66e294b554b" />

```python
# Fock amplitudes of the projected state (exact down to machine precision)
both_modes.fock_array(shape=(100, 4))[:,3]
```

## Why Mr Mustard?

### 🔄 **Universal Representation Compatibility**

- Initialize any component from any representation: `Ket.from_quadrature(...)`, `Channel.from_bargmann(...)`
- Convert between representations seamlessly: `my_component.to_fock(...)`, `my_component.to_quadrature(...)`
- Supported representations: Bargmann, Phase space, Characteristic functions, Quadrature, Fock

### ⚡ **Fast & Exact**

- State-of-the-art algorithms for Fock amplitudes of Gaussian components
- Exact computation up to arbitrary cutoff
- Batch processing support

### 🎯 **Built-in Optimization**

- Differentiable with respect to all parameters
- Riemannian optimization on symplectic/unitary/orthogonal groups
- Cost functions can mix different representations

### 🧩 **Flexible Circuit Construction**

- Contract components in any order
- Linear superpositions of compatible objects
- Plug-and-play backends (`numpy`, `tensorflow`, `jax`)

## Available Components

**Gates & Transformations:**

- **Single-mode**: Squeezing, displacement, phase rotation, attenuator, amplifier, noise
- **Two-mode**: Beam splitter, Mach-Zehnder, two-mode squeezing, CX, CZ, CPHASE
- **N-mode**: Interferometer (unitary), RealInterferometer (orthogonal), Ggate (symplectic)

**States:**

- **Single-mode**: Vacuum, Coherent, SqueezedVacuum, DisplacedSqueezed, Thermal, Number, Sauron, QuadratureEigenstate, BargmannEigenstate
- **Two-mode**: TwoModeSqueezedVacuum,
- **N-mode**: GDM (Gaussian density matrix), GKet (Gaussian ket)

**Measurements:**

- **Projectors** implemented "for free" as dual pure density matrices.
- **POVMs** implemented "for free" as dual density matrices.
- **Detectors** HomodyneSampler, PNRSampler, ThresholdSampler

## Examples

### Circuit Simulation

```python
from mrmustard.lab.states import Vacuum
from mrmustard.lab.transformations import BSgate, Dgate, Sgate
from mrmustard.lab.samplers import HomodyneSampler

# Create and apply a circuit
input_state = Vacuum(modes=(0, 1))
output_state = input_state >> BSgate(modes=(0, 1)) >> Sgate(mode=0, r=0.5) >> Dgate(mode=1, x=0.5)

# Measure the result
homodyne = HomodyneSampler()
samples = homodyne.sample(state=output_state, n_samples=100)
```

### Optimization

Transform any simulation into an optimization by marking parameters as trainable:

```python
from mrmustard import math
from mrmustard.lab.states import DisplacedSqueezed
from mrmustard.lab.transformations import Dgate, Ggate
from mrmustard.training import OptimizerJax

math.change_backend("jax")

# Create trainable gates
D = Dgate(mode=0, x=0.1, y=-0.5, x_trainable=True, y_trainable=True)
G = Ggate(modes=0, symplectic_trainable=True)

# Define cost function
def cost_fn(G, D):
    state_out = Vacuum(modes=0) >> G >> D
    target = DisplacedSqueezed(mode=0, r=0.3, phi=1.1, x=0.4, y=-0.2)
    return 1 - state_out.fidelity(target)

# Optimize
opt = Optimizer(symplectic_lr=0.1, euclidean_lr=0.01)
(G, D) = opt.minimize(cost_fn, by_optimizing=[G, D])
```

### Advanced: Circuit Optimization

```python
from mrmustard.lab.circuits import Circuit
from mrmustard.lab.states import Coherent, Number
from mrmustard.lab.transformations import Sgate

# Optimize contraction path and Fock shapes
circ = Circuit([Number(0, n=15), Sgate(0, r=1.0), Coherent(0, x=1.0).dual])
circ.optimize(n_init=100, with_BF_heuristic=True, verbose=True)
```

## Backend Flexibility

Switch between numerical backends seamlessly:

```python
import mrmustard.math as math

# Default numpy backend
math.cos(0.1)  # numpy

# Switch to tensorflow
math.change_backend("tensorflow")
math.cos(0.1)  # tensorflow

# Switch to jax
math.change_backend("jax")
math.cos(0.1)  # jax
```

## Architecture

### The `lab` Module

Contains components you'd find in a quantum optics lab: states, transformations, measurements, and circuits. States can be used as initial conditions or as measurements (projections).

### The `physics` Module

Contains the core quantum optics functionality, including the `Ansatz` class responsible for handling the numerics of circuit components.

### The `math` Module

The backbone providing plug-and-play backend support. Acts as a drop-in replacement for `numpy`, `tensorflow`, or `jax`.

## Getting Started

1. **Install**: `pip install mrmustard`
2. **Try the examples** above
3. **Read the docs**: <https://mrmustard.readthedocs.io/en/stable/>

---
