Pennylane

Latest version: v0.40.0

Safety actively analyzes 723685 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 10 of 12

0.5.0

New features since last release

* Adds a new optimizer, `qml.QNGOptimizer`, which optimizes QNodes using quantum natural gradient descent. See https://arxiv.org/abs/1909.02108 for more details. [#295](https://github.com/XanaduAI/pennylane/pull/295) [#311](https://github.com/XanaduAI/pennylane/pull/311)

* Adds a new QNode method, `QNode.metric_tensor()`, which returns the block-diagonal approximation to the Fubini-Study metric tensor evaluated on the attached device. [295](https://github.com/XanaduAI/pennylane/pull/295)

* Sampling support: QNodes can now return a specified number of samples from a given observable via the top-level `pennylane.sample()` function. To support this on plugin devices, there is a new `Device.sample` method.

Calculating gradients of QNodes that involve sampling is not possible. [256](https://github.com/XanaduAI/pennylane/pull/256)

* `default.qubit` has been updated to provide support for sampling. [256](https://github.com/XanaduAI/pennylane/pull/256)

* Added controlled rotation gates to PennyLane operations and `default.qubit` plugin. [251](https://github.com/XanaduAI/pennylane/pull/251)

Breaking changes

* The method `Device.supported` was removed, and replaced with the methods `Device.supports_observable` and `Device.supports_operation`. Both methods can be called with string arguments (`dev.supports_observable('PauliX')`) and class arguments (`dev.supports_observable(qml.PauliX)`). [276](https://github.com/XanaduAI/pennylane/pull/276)

* The following CV observables were renamed to comply with the new Operation/Observable scheme: `MeanPhoton` to `NumberOperator`, `Homodyne` to `QuadOperator` and `NumberState` to `FockStateProjector`. [243](https://github.com/XanaduAI/pennylane/pull/254)

Improvements

* The `AmplitudeEmbedding` function now provides options to normalize and pad features to ensure a valid state vector is prepared. [275](https://github.com/XanaduAI/pennylane/pull/275)

* Operations can now optionally specify generators, either as existing PennyLane operations, or by providing a NumPy array. [295](https://github.com/XanaduAI/pennylane/pull/295) [#313](https://github.com/XanaduAI/pennylane/pull/313)

* Adds a `Device.parameters` property, so that devices can view a dictionary mapping free parameters to operation parameters. This will allow plugin devices to take advantage of parametric compilation. [283](https://github.com/XanaduAI/pennylane/pull/283)

* Introduces two enumerations: `Any` and `All`, representing any number of wires and all wires in the system respectively. They can be imported from `pennylane.operation`, and can be used when defining the `Operation.num_wires` class attribute of operations. [277](https://github.com/XanaduAI/pennylane/pull/277)

As part of this change:

- `All` is equivalent to the integer 0, for backwards compatibility with the existing test suite

- `Any` is equivalent to the integer -1 to allow numeric comparison operators to continue working

- An additional validation is now added to the `Operation` class, which will alert the user that an operation with `num_wires = All` is being incorrectly.

* The one-qubit rotations in `pennylane.plugins.default_qubit` no longer depend on Scipy's `expm`. Instead they are calculated with Euler's formula. [292](https://github.com/XanaduAI/pennylane/pull/292)

* Creates an `ObservableReturnTypes` enumeration class containing `Sample`, `Variance` and `Expectation`. These new values can be assigned to the `return_type` attribute of an `Observable`. [290](https://github.com/XanaduAI/pennylane/pull/290)

* Changed the signature of the `RandomLayer` and `RandomLayers` templates to have a fixed seed by default. [258](https://github.com/XanaduAI/pennylane/pull/258)

* `setup.py` has been cleaned up, removing the non-working shebang, and removing unused imports. [262](https://github.com/XanaduAI/pennylane/pull/262)

Documentation

* A documentation refactor to simplify the tutorials and include Sphinx-Gallery. [291](https://github.com/XanaduAI/pennylane/pull/291)

- Examples and tutorials previously split across the `examples/` and `doc/tutorials/` directories, in a mixture of ReST and Jupyter notebooks, have been rewritten as Python scripts with ReST comments in a single location, the `examples/` folder.

- Sphinx-Gallery is used to automatically build and run the tutorials. Rendered output is displayed in the Sphinx documentation.

- Links are provided at the top of every tutorial page for downloading the tutorial as an executable python script, downloading the tutorial as a Jupyter notebook, or viewing the notebook on GitHub.

- The tutorials table of contents have been moved to a single quick start page.

* Fixed a typo in `QubitStateVector`. [295](https://github.com/XanaduAI/pennylane/pull/296)

* Fixed a typo in the `default_gaussian.gaussian_state` function. [293](https://github.com/XanaduAI/pennylane/pull/293)

* Fixed a typo in the gradient recipe within the `RX`, `RY`, `RZ` operation docstrings. [248](https://github.com/XanaduAI/pennylane/pull/248)

* Fixed a broken link in the tutorial documentation, as a result of the `qml.expval.Observable` deprecation. [246](https://github.com/XanaduAI/pennylane/pull/246)

Bug fixes

* Fixed a bug where a `PolyXP` observable would fail if applied to subsets of wires on `default.gaussian`. [277](https://github.com/XanaduAI/pennylane/pull/277)

Contributors

This release contains contributions from (in alphabetical order):

Simon Cross, Aroosa Ijaz, Josh Izaac, Nathan Killoran, Johannes Jakob Meyer, Rohit Midha, Nicolás Quesada, Maria Schuld, Antal Száva, Roeland Wiersema.

0.4.1

<h3>Improvements</h3>

* Catalyst wheels are now packaged with OpenMP and ZStd, which avoids installing additional requirements separately in order to use pre-packaged Catalyst binaries. [(457)](https://github.com/PennyLaneAI/catalyst/pull/457) [(#478)](https://github.com/PennyLaneAI/catalyst/pull/478)

Note that OpenMP support for the `lightning.kokkos` backend has been disabled on macOS x86_64, due to memory issues in the computation of Lightning's adjoint-jacobian in the presence of multiple OMP threads.

<h3>Bug fixes</h3>

* Resolve an infinite recursion in the decomposition of the `Controlled` operator whenever computing a Unitary matrix for the operator fails. [(468)](https://github.com/PennyLaneAI/catalyst/pull/468)

* Resolve a failure to generate gradient code for specific input circuits. [(439)](https://github.com/PennyLaneAI/catalyst/issues/439)

In this case, [`jnp.mod`](https://github.com/PennyLaneAI/catalyst/issues/437) was used to compute wire values in a for loop, which prevented the gradient architecture from fully separating quantum and classical code. The following program is now supported:

py
qjit
grad
qml.qnode(dev)
def f(x):
def cnot_loop(j):
qml.CNOT(wires=[j, jnp.mod((j + 1), 4)])

for_loop(0, 4, 1)(cnot_loop)()

return qml.expval(qml.PauliZ(0))


* Resolve unpredictable behaviour when importing libraries that share Catalyst's LLVM dependency (e.g. TensorFlow). In some cases, both packages exporting the same symbols from their shared libraries can lead to process crashes and other unpredictable behaviour, since the wrong functions can be called if both libraries are loaded in the current process. The fix involves building shared libraries with hidden (macOS) or protected (linux) symbol visibility by default, exporting only what is necessary. [(465)](https://github.com/PennyLaneAI/catalyst/pull/465)

* Resolve a failure to find the SciPy OpenBLAS library when running Catalyst, due to a different SciPy version being used to build Catalyst than to run it. [(471)](https://github.com/PennyLaneAI/catalyst/pull/471)

* Resolve a memory leak in the runtime stemming from missing calls to device destructors at the end of programs. [(446)](https://github.com/PennyLaneAI/catalyst/pull/446)

<h3>Contributors</h3>

This release contains contributions from (in alphabetical order):

Ali Asadi, David Ittah.

0.4.0

New features since last release

* `pennylane.expval()` is now a top-level *function*, and is no longer a package of classes. For now, the existing `pennylane.expval.Observable` interface continues to work, but will raise a deprecation warning. [232](https://github.com/XanaduAI/pennylane/pull/232)

* Variance support: QNodes can now return the variance of observables, via the top-level `pennylane.var()` function. To support this on plugin devices, there is a new `Device.var` method.

The following observables support analytic gradients of variances:

- All qubit observables (requiring 3 circuit evaluations for involutory observables such as `Identity`, `X`, `Y`, `Z`; and 5 circuit evals for non-involutary observables, currently only `qml.Hermitian`)

- First-order CV observables (requiring 5 circuit evaluations)

Second-order CV observables support numerical variance gradients.

* `pennylane.about()` function added, providing details on current PennyLane version, installed plugins, Python,
platform, and NumPy versions [186](https://github.com/XanaduAI/pennylane/pull/186)

* Removed the logic that allowed `wires` to be passed as a positional argument in quantum operations. This allows us to raise more useful error messages for the user if incorrect syntax is used. [188](https://github.com/XanaduAI/pennylane/pull/188)

* Adds support for multi-qubit expectation values of the `pennylane.Hermitian()` observable [192](https://github.com/XanaduAI/pennylane/pull/192)

* Adds support for multi-qubit expectation values in `default.qubit`. [202](https://github.com/XanaduAI/pennylane/pull/202)

* Organize templates into submodules [195](https://github.com/XanaduAI/pennylane/pull/195). This included the following improvements:

- Distinguish embedding templates, layer templates, and parameter templates.

- New random initialization functions supporting the templates available in the new submodule `pennylane.init`.

- Added a random circuit template (`RandomLayers()`), in which rotations and 2-qubit gates are randomly distributed over the wires

- Add various embedding strategies

Breaking changes

* The `Device` methods `expectations`, `pre_expval`, and `post_expval` have been renamed to `observables`, `pre_measure`, and `post_measure` respectively. [232](https://github.com/XanaduAI/pennylane/pull/232)

Improvements

* `default.qubit` plugin now uses `np.tensordot` when applying quantum operations and evaluating expectations, resulting in significant speedup [239](https://github.com/XanaduAI/pennylane/pull/239), [#241](https://github.com/XanaduAI/pennylane/pull/241)

* Allows division of quantum operation parameters by a constant [179](https://github.com/XanaduAI/pennylane/pull/179)

* Portions of the test suite are in the process of being ported to pytest. Note: this is still a work in progress.

Ported tests include:

- `test_ops.py`
- `test_about.py`
- `test_classical_gradients.py`
- `test_observables.py`
- `test_measure.py`
- `test_init.py`
- `test_templates*.py`
- `test_ops.py`
- `test_variable.py`
- `test_qnode.py` (partial)

Bug fixes

* Fixes a bug in `Device.supported`, which would incorrectly mark an operation as supported if it shared a name with an observable [203](https://github.com/XanaduAI/pennylane/pull/203)

* Fixes a bug in `Operation.wires`, by explicitly casting the type of each wire to an integer [206](https://github.com/XanaduAI/pennylane/pull/206)

* Removes code in PennyLane which configured the logger, as this would clash with users' configurations [208](https://github.com/XanaduAI/pennylane/pull/208)

* Fixes a bug in `default.qubit`, in which `QubitStateVector` operations were accidentally being cast to `np.float` instead of `np.complex`. [211](https://github.com/XanaduAI/pennylane/pull/211)


Contributors

This release contains contributions from:

Shahnawaz Ahmed, riveSunder, Aroosa Ijaz, Josh Izaac, Nathan Killoran, Maria Schuld.

0.3.2post1

This post-release updates the docs with up-to-date information & additional sections for the installation guide.

0.3.2

<h3>New features</h3>

* The experimental AutoGraph feature now supports Python `while` loops, allowing native Python loops to be captured and compiled with Catalyst. [(318)](https://github.com/PennyLaneAI/catalyst/pull/318)

python
dev = qml.device("lightning.qubit", wires=4)

qjit(autograph=True)
qml.qnode(dev)
def circuit(n: int, x: float):
i = 0

while i < n:
qml.RX(x, wires=i)
i += 1

return qml.expval(qml.PauliZ(0))


pycon
>>> circuit(4, 0.32)
array(0.94923542)


This feature extends the existing AutoGraph support for Python `for` loops and `if` statements introduced in v0.3. Note that TensorFlow must be installed for AutoGraph support.

For more details, please see the [AutoGraph guide](https://docs.pennylane.ai/projects/catalyst/en/stable/dev/autograph.html).

* In addition to loops and conditional branches, AutoGraph now supports native Python `and`, `or` and `not` operators in Boolean expressions. [(325)](https://github.com/PennyLaneAI/catalyst/pull/325)

python
dev = qml.device("lightning.qubit", wires=1)

qjit(autograph=True)
qml.qnode(dev)
def circuit(x: float):

if x >= 0 and x < jnp.pi:
qml.RX(x, wires=0)

return qml.probs()


pycon
>>> circuit(0.43)
array([0.95448287, 0.04551713])
>>> circuit(4.54)
array([1., 0.])


Note that logical Boolean operators will only be captured by AutoGraph if all operands are dynamic variables (that is, a value known only at runtime, such as a measurement result or function argument). For other use cases, it is recommended to use the `jax.numpy.logical_*` set of functions where appropriate.

* Debug compiled programs and print dynamic values at runtime with ``debug.print`` [(279)](https://github.com/PennyLaneAI/catalyst/pull/279) [(#356)](https://github.com/PennyLaneAI/catalyst/pull/356)

You can now print arbitrary values from your running program, whether they are arrays, constants, strings, or abitrary Python objects. Note that while non-array Python objects *will* be printed at runtime, their string representation is captured at compile time, and thus will always be the same regardless of program inputs. The output for arrays optionally includes a descriptor for how the data is stored in memory ("memref").

python
qjit
def func(x: float):
debug.print(x, memref=True)
debug.print("exit")


pycon
>>> func(jnp.array(0.43))
MemRef: base = 0x5629ff2b6680 rank = 0 offset = 0 sizes = [] strides = [] data =
0.43
exit


* Catalyst now officially supports macOS X86_64 devices, with macOS binary wheels available for both AARCH64 and X86_64. [(347)](https://github.com/PennyLaneAI/catalyst/pull/347) [(#313)](https://github.com/PennyLaneAI/catalyst/pull/313)

* It is now possible to dynamically load third-party Catalyst compatible devices directly into a pre-installed Catalyst runtime on Linux. [(327)](https://github.com/PennyLaneAI/catalyst/pull/327)

To take advantage of this, third-party devices must implement the `Catalyst::Runtime::QuantumDevice` interface, in addition to defining the following method:

cpp
extern "C" Catalyst::Runtime::QuantumDevice*
getCustomDevice() { return new CustomDevice(); }


This support can also be integrated into existing PennyLane Python devices that inherit from the `QuantumDevice` class, by defining the `get_c_interface` static method.

For more details, see the [custom devices documentation](https://docs.pennylane.ai/projects/catalyst/en/stable/dev/custom_devices.html).

<h3>Improvements</h3>

* Return values of conditional functions no longer need to be of exactly the same type. Type promotion is automatically applied to branch return values if their types don't match. [(333)](https://github.com/PennyLaneAI/catalyst/pull/333)

python
qjit
def func(i: int, f: float):

cond(i < 3)
def cond_fn():
return i

cond_fn.otherwise
def otherwise():
return f

return cond_fn()


pycon
>>> func(1, 4.0)
array(1.0)


Automatic type promotion across conditional branches also works with AutoGraph:

python
qjit(autograph=True)
def func(i: int, f: float):

if i < 3:
i = i
else:
i = f

return i


pycon
>>> func(1, 4.0)
array(1.0)


* AutoGraph now supports converting functions even when they are invoked through functional wrappers such as `adjoint`, `ctrl`, `grad`, `jacobian`, etc. [(336)](https://github.com/PennyLaneAI/catalyst/pull/336)

For example, the following should now succeed:

python
def inner(n):
for i in range(n):
qml.T(i)

qjit(autograph=True)
qml.qnode(dev)
def f(n: int):
adjoint(inner)(n)
return qml.state()


* To prepare for Catalyst's frontend being integrated with PennyLane, the appropriate plugin entry point interface has been added to Catalyst. [(331)](https://github.com/PennyLaneAI/catalyst/pull/331)

For any compiler packages seeking to be registered in PennyLane, the `entry_points` metadata under the the group name `pennylane.compilers` must be added, with the following try points:

- `context`: Path to the compilation evaluation context manager. This context manager should have the method `context.is_tracing()`, which returns True if called within a program that is being traced or captured.

- `ops`: Path to the compiler operations module. This operations module may contain compiler specific versions of PennyLane operations. Within a JIT context, PennyLane operations may dispatch to these.

- `qjit`: Path to the JIT compiler decorator provided by the compiler. This decorator should have the signature `qjit(fn, *args, **kwargs)`, where `fn` is the function to be compiled.

* The compiler driver diagnostic output has been improved, and now includes failing IR as well as the names of failing passes. [(349)](https://github.com/PennyLaneAI/catalyst/pull/349)

* The scatter operation in the Catalyst dialect now uses an SCF for loop to avoid ballooning the compiled code. [(307)](https://github.com/PennyLaneAI/catalyst/pull/307)

* The `CopyGlobalMemRefPass` pass of our MLIR processing pipeline now supports dynamically shaped arrays. [(348)](https://github.com/PennyLaneAI/catalyst/pull/348)

* The Catalyst utility dialect is now included in the Catalyst MLIR C-API. [(345)](https://github.com/PennyLaneAI/catalyst/pull/345)

* Fix an issue with the AutoGraph conversion system that would prevent the fallback to Python from working correctly in certain instances. [(352)](https://github.com/PennyLaneAI/catalyst/pull/352)

The following type of code is now supported:

python
qjit(autograph=True)
def f():
l = jnp.array([1, 2])
for _ in range(2):
l = jnp.kron(l, l)
return l


<h3>Breaking changes</h3>

* The axis ordering for `catalyst.jacobian` is updated to match `jax.jacobian`. Assuming we have parameters of shape `[a,b]` and results of shape `[c,d]`, the returned Jacobian will now have shape `[c, d, a, b]` instead of `[a, b, c, d]`. [(283)](https://github.com/PennyLaneAI/catalyst/pull/283)

<h3>Bug fixes</h3>

* An upstream change in the PennyLane-Lightning project was addressed to prevent compilation issues in the `StateVectorLQubitDynamic` class in the runtime. The issue was introduced in [499](https://github.com/PennyLaneAI/pennylane-lightning/pull/499). [(#322)](https://github.com/PennyLaneAI/catalyst/pull/322)

* The `requirements.txt` file to build Catalyst from source has been updated with a minimum pip version, `>=22.3`. Previous versions of pip are unable to perform editable installs when the system-wide site-packages are read-only, even when the `--user` flag is provided. [(311)](https://github.com/PennyLaneAI/catalyst/pull/311)

* The frontend has been updated to make it compatible with PennyLane `MeasurementProcess` objects now being PyTrees in PennyLane version 0.33. [(315)](https://github.com/PennyLaneAI/catalyst/pull/315)

<h3>Contributors</h3>

This release contains contributions from (in alphabetical order):

Ali Asadi,
David Ittah,
Sergei Mironov,
Romain Moyard,
Erick Ochoa Lopez.

0.3.1post1

This post-release updates the docs to include the AutoGraph guide.

Page 10 of 12

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.