From 655d53706ac47a95667c543c12c4dc873a50f4e0 Mon Sep 17 00:00:00 2001 From: Isaac De Vlugt <34751083+isaacdevlugt@users.noreply.github.com> Date: Tue, 21 Nov 2023 16:58:57 -0500 Subject: [PATCH] Very small typo in devices doc page (#563) * typo in devices doc page * Auto update version * changelog * name --------- Co-authored-by: Dev version update bot --- .github/CHANGELOG.md | 5 ++++- doc/lightning_gpu/device.rst | 2 +- pennylane_lightning/core/_version.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index d40aad0c43..0bc27c0897 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -35,6 +35,9 @@ ### Documentation +* Fixed a small typo in the documentation page for the PennyLane-Lightning GPU device. + [(#563)](https://github.com/PennyLaneAI/pennylane-lightning/pull/563) + ### Bug fixes * Move deprecated `stateprep` `QuantumScript` argument into the operation list in `mpitests/test_adjoint_jacobian.py`. @@ -47,7 +50,7 @@ This release contains contributions from (in alphabetical order): -Vincent Michaud-Rioux, Shuli Shu +Isaac De Vlugt, Vincent Michaud-Rioux, Shuli Shu --- diff --git a/doc/lightning_gpu/device.rst b/doc/lightning_gpu/device.rst index 02eb1dcd4e..6ac52272ce 100644 --- a/doc/lightning_gpu/device.rst +++ b/doc/lightning_gpu/device.rst @@ -17,7 +17,7 @@ The ``lightning.gpu`` device also directly supports quantum circuit gradients us .. code-block:: python - qml.qnode(dev, diff_method="adjoint") + @qml.qnode(dev, diff_method="adjoint") def circuit(params): ... diff --git a/pennylane_lightning/core/_version.py b/pennylane_lightning/core/_version.py index 226ada7853..e3668fdf7b 100644 --- a/pennylane_lightning/core/_version.py +++ b/pennylane_lightning/core/_version.py @@ -16,4 +16,4 @@ Version number (major.minor.patch[-label]) """ -__version__ = "0.34.0-dev8" +__version__ = "0.34.0-dev9"