diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index 05edc385c6..2e5050a2dd 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -123,6 +123,9 @@ ### Documentation +* Mark ``CUQUANTUM_SDK`` environment variable set as an option. + [(#964)](https://github.com/PennyLaneAI/pennylane-lightning/pull/964) + * Update ``lightning.tensor`` documentation to include all the new features added since pull request #756. The new features are: 1, Finite-shot measurements; 2. Expval-base quantities; 3. Support for ``qml.state()`` and ``qml.stateprep()``; 4. Support for all gates support via Matrix Product Operator (MPO). [(#909)](https://github.com/PennyLaneAI/pennylane-lightning/pull/909) diff --git a/README.rst b/README.rst index f7f09d5fdf..4720c105c0 100644 --- a/README.rst +++ b/README.rst @@ -224,8 +224,7 @@ To install Lightning-GPU from the package sources using the direct SDK path, Lig PL_BACKEND="lightning_qubit" python scripts/configure_pyproject_toml.py SKIP_COMPILATION=True pip install -e . --config-settings editable_mode=compat -vv -Then a ``CUQUANTUM_SDK`` environment variable can be set: - +``CUQUANTUM_SDK`` environment variable set is optional for most cases. *If cuQuantum SDK is not installed in Python environment ``site-packages`` directory*, it has to be set with: .. code-block:: bash export CUQUANTUM_SDK=$(python -c "import site; print( f'{site.getsitepackages()[0]}/cuquantum')") @@ -396,8 +395,7 @@ Lightning-Qubit should be installed before Lightning-Tensor (compilation is not PL_BACKEND="lightning_qubit" python scripts/configure_pyproject_toml.py SKIP_COMPILATION=True pip install -e . --config-settings editable_mode=compat -Then a ``CUQUANTUM_SDK`` environment variable can be set: - +``CUQUANTUM_SDK`` environment variable set is optional for most cases. *If cuQuantum SDK is not installed in Python environment ``site-packages`` directory*, it has to be set with: .. code-block:: bash export CUQUANTUM_SDK=$(python -c "import site; print( f'{site.getsitepackages()[0]}/cuquantum')") diff --git a/pennylane_lightning/core/_version.py b/pennylane_lightning/core/_version.py index eba0279f93..a9b42bc9f7 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.39.0-dev49" +__version__ = "0.39.0-dev50"