diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index 063e22e5cd..b12135199a 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -4,6 +4,9 @@ ### Breaking changes +* We explicitly disable support for PennyLane's parameter broadcasting. +[#317](https://github.com/PennyLaneAI/pennylane-lightning/pull/317) + ### Improvements * Parallelize wheel-builds where applicable. @@ -17,7 +20,7 @@ This release contains contributions from (in alphabetical order): -Amintor Dusko +Amintor Dusko, Lee James O'Riordan --- diff --git a/pennylane_lightning/_version.py b/pennylane_lightning/_version.py index 36495dc9c3..9fc7d267e8 100644 --- a/pennylane_lightning/_version.py +++ b/pennylane_lightning/_version.py @@ -16,4 +16,4 @@ Version number (major.minor.patch[-label]) """ -__version__ = "0.25.0-dev2" +__version__ = "0.25.0-dev3" diff --git a/pennylane_lightning/lightning_qubit.py b/pennylane_lightning/lightning_qubit.py index fc0b836823..668258b02c 100644 --- a/pennylane_lightning/lightning_qubit.py +++ b/pennylane_lightning/lightning_qubit.py @@ -139,6 +139,7 @@ def capabilities(cls): supports_reversible_diff=False, supports_inverse_operations=True, supports_analytic_computation=True, + supports_broadcasting=False, returns_state=True, ) capabilities.pop("passthru_devices", None)