Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug fix for cutensornet v2.5.0 #845

Merged
merged 5 commits into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@

### Bug fixes

* Set the `immutable` parameter value as `false` for the `cutensornetStateApplyTensorOperator` to allow the following `cutensornetStateUpdateTensorOperator` call.
[(#845)](https://github.com/PennyLaneAI/pennylane-lightning/pull/845)

* Fix cuQuantum SDK path pass-though in CMake.
[(#831)](https://github.com/PennyLaneAI/pennylane-lightning/pull/831)

Expand Down
2 changes: 1 addition & 1 deletion pennylane_lightning/core/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
Version number (major.minor.patch[-label])
"""

__version__ = "0.38.0-dev27"
__version__ = "0.38.0-dev28"
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ class TNCudaBase : public TensornetBase<PrecisionT, Derived> {
/* const int32_t * stateModes */ stateModes.data(),
/* void * */ static_cast<void *>(dummy_device_data.getData()),
/* const int64_t *tensorModeStrides */ nullptr,
/* const int32_t immutable */ 1,
/* const int32_t immutable */ 0,
/* const int32_t adjoint */ 0,
/* const int32_t unitary */ 1,
/* int64_t * */ &id));
Expand Down
Loading