Pennylane-lightning

Latest version: v0.40.0

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

Scan your dependencies

Page 4 of 7

0.27.0

Not secure
New features since last release

* Enable building of python 3.11 wheels and upgrade python on CI/CD workflows to 3.8. [(381)](https://github.com/PennyLaneAI/pennylane-lightning/pull/381)

Improvements

* Update clang-tools version in Github workflows. [(351)](https://github.com/PennyLaneAI/pennylane-lightning/pull/351)

* Improve tests and checks CI/CD pipelines. [(353)](https://github.com/PennyLaneAI/pennylane-lightning/pull/353)

* Implement 3 Qubit gates (CSWAP & Toffoli) & 4 Qubit gates (DoubleExcitation, DoubleExcitationMinus, DoubleExcitationPlus) using (low-memory) LM architecture. [(362)](https://github.com/PennyLaneAI/pennylane-lightning/pull/362)

* Upgrade Kokkos and Kokkos Kernels to 3.7.00, and improve sparse matrix-vector multiplication performance and memory usage. [(361)](https://github.com/PennyLaneAI/pennylane-lightning/pull/361)

* Update Linux (ubuntu-latest) architecture x86_64 wheel-builder from GCC 10.x to GCC 11.x. [(373)](https://github.com/PennyLaneAI/pennylane-lightning/pull/373)

* Update gcc and g++ 10.x to 11.x in CI tests. This update brings improved support for newer C++ features. [(370)](https://github.com/PennyLaneAI/pennylane-lightning/pull/370)

* Change Lightning to inherit from QubitDevice instead of DefaultQubit. [(365)](https://github.com/PennyLaneAI/pennylane-lightning/pull/365)

Bug fixes

* Use mutex when accessing cache in KernelMap. [(382)](https://github.com/PennyLaneAI/pennylane-lightning/pull/382)

Contributors

This release contains contributions from (in alphabetical order):

Amintor Dusko, Chae-Yeun Park, Monit Sharma, Shuli Shu

0.26.1

Not secure
Bug fixes

* Fixes the transposition method used in the probability calculation.
[(377)](https://github.com/PennyLaneAI/pennylane-lightning/pull/377)

Contributor

Amintor Dusko

0.26.0

Not secure
Improvements

* Introduces requirements-dev.txt and improves dockerfile. [(330)](https://github.com/PennyLaneAI/pennylane-lightning/pull/330)

* Support `expval` for a Hamiltonian. [(333)](https://github.com/PennyLaneAI/pennylane-lightning/pull/333)

* Implements caching for Kokkos installation. [(316)](https://github.com/PennyLaneAI/pennylane-lightning/pull/316)

* Supports measurements of operator arithmetic classes such as `Sum`, `Prod`,
and `SProd` by deferring handling of them to `DefaultQubit`. [(349)](https://github.com/PennyLaneAI/pennylane-lightning/pull/349)


qml.qnode(qml.device('lightning.qubit', wires=2))
def circuit():
obs = qml.s_prod(2.1, qml.PauliZ(0)) + qml.op_sum(qml.PauliX(0), qml.PauliZ(1))
return qml.expval(obs)


Bug fixes

* Test updates to reflect new measurement error messages. [(334)](https://github.com/PennyLaneAI/pennylane-lightning/pull/334)

* Updates to the release tagger to fix incompatibilities with RTD. [(344)](https://github.com/PennyLaneAI/pennylane-lightning/pull/344)

* Update cancel-workflow-action and bot credentials. [(345)](https://github.com/PennyLaneAI/pennylane-lightning/pull/345)

Contributors

This release contains contributions from (in alphabetical order):

Amintor Dusko, Christina Lee, Lee J. O'Riordan, Chae-Yeun Park

0.25.1

Not secure
Bug fixes

* Ensure build type for CMake in all compilers and operational systems.
[(341)](https://github.com/PennyLaneAI/pennylane-lightning/pull/341)

Contributor

Amintor Dusko

0.25.0

Not secure
New features since last release

Breaking changes

* We explicitly disable support for PennyLane's parameter broadcasting. [317](https://github.com/PennyLaneAI/pennylane-lightning/pull/317)

* We explicitly remove support for PennyLane's `Sum`, `SProd` and `Prod`
as observables. [(326)](https://github.com/PennyLaneAI/pennylane-lightning/pull/326)

Improvements

* CI builders use a reduced set of resources and redundant tests for PRs. [(319)](https://github.com/PennyLaneAI/pennylane-lightning/pull/319)

* Parallelize wheel-builds where applicable. [(314)](https://github.com/PennyLaneAI/pennylane-lightning/pull/314)

* AVX2/512 kernels are now available on Linux/MacOS with x86-64 architecture. [(313)](https://github.com/PennyLaneAI/pennylane-lightning/pull/313)

Documentation

* Updated ReadTheDocs runner version from Ubuntu 20.04 to 22.04 [(327)](https://github.com/PennyLaneAI/pennylane-lightning/pull/327)

Bug fixes

* Test updates to reflect new additions to PennyLane. [(318)](https://github.com/PennyLaneAI/pennylane-lightning/pull/318)

Contributors

This release contains contributions from (in alphabetical order):

Amintor Dusko, Christina Lee, Rashid N H M, Lee J. O'Riordan, Chae-Yeun Park

0.24.0

Not secure
New features since last release

* Add `SingleExcitation` and `DoubleExcitation` qchem gates and generators. [(289)](https://github.com/PennyLaneAI/pennylane-lightning/pull/289)

* Add a new dispatch mechanism for future kernels. [(291)](https://github.com/PennyLaneAI/pennylane-lightning/pull/291)

* Add `IsingXY` gate operation. [(303)](https://github.com/PennyLaneAI/pennylane-lightning/pull/303)

* Support `qml.state()` in vjp and Hamiltonian in adjoint jacobian. [(294)](https://github.com/PennyLaneAI/pennylane-lightning/pull/294)

Breaking changes

* Codebase is now moving to C++20. The default compiler for Linux is now GCC10. [(295)](https://github.com/PennyLaneAI/pennylane-lightning/pull/295)

* Minimum macOS version is changed to 10.15 (Catalina). [(295)](https://github.com/PennyLaneAI/pennylane-lightning/pull/295)

Improvements

* Split matrix operations, refactor dispatch mechanisms, and add a benchmark suite. [(274)](https://github.com/PennyLaneAI/pennylane-lightning/pull/274)

* Add native support for the calculation of sparse Hamiltonians' expectation values. Sparse operations are offloaded to [Kokkos](https://github.com/kokkos/kokkos) and [Kokkos-Kernels](https://github.com/kokkos/kokkos-kernels). [(#283)](https://github.com/PennyLaneAI/pennylane-lightning/pull/283)

* Device `lightning.qubit` now accepts a datatype for a statevector. [(290)](https://github.com/PennyLaneAI/pennylane-lightning/pull/290)

python
dev1 = qml.device('lightning.qubit', wires=4, c_dtype=np.complex64) for single precision
dev2 = qml.device('lightning.qubit', wires=4, c_dtype=np.complex128) for double precision


Documentation

* Use the centralized [Xanadu Sphinx Theme](https://github.com/XanaduAI/xanadu-sphinx-theme) to style the Sphinx documentation. [(#287)](https://github.com/PennyLaneAI/pennylane-lightning/pull/287)

Bug fixes

* Fix the issue with using available `clang-format` version in format. [(288)](https://github.com/PennyLaneAI/pennylane-lightning/pull/288)

* Fix a bug in the generator of `DoubleExcitationPlus`. [(298)](https://github.com/PennyLaneAI/pennylane-lightning/pull/298)

Contributors

This release contains contributions from (in alphabetical order):
Mikhail Andrenkov, Ali Asadi, Amintor Dusko, Lee James O'Riordan, Chae-Yeun Park, and Shuli Shu

Page 4 of 7

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.