diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2024-03-23 14:16:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-23 14:16:19 +0100 |
commit | fdfe8fd129a0f755f380d4a38f11207c28fc8ee4 (patch) | |
tree | 658355e82443fc141246c3860221fd777a803bd9 /candle-core/src/tensor.rs | |
parent | 790037390ca81a9cf32f35c03f514452d1366e4f (diff) | |
download | candle-fdfe8fd129a0f755f380d4a38f11207c28fc8ee4.tar.gz candle-fdfe8fd129a0f755f380d4a38f11207c28fc8ee4.tar.bz2 candle-fdfe8fd129a0f755f380d4a38f11207c28fc8ee4.zip |
Preliminary support for inplace ops. (#1921)
* Preliminary support for inplace ops.
* Add a test.
Diffstat (limited to 'candle-core/src/tensor.rs')
-rw-r--r-- | candle-core/src/tensor.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/candle-core/src/tensor.rs b/candle-core/src/tensor.rs index 6b5aed96..92c931eb 100644 --- a/candle-core/src/tensor.rs +++ b/candle-core/src/tensor.rs @@ -2254,6 +2254,10 @@ impl Tensor { self.storage.read().unwrap() } + pub(crate) fn storage_mut(&self) -> std::sync::RwLockWriteGuard<'_, Storage> { + self.storage.write().unwrap() + } + // If we extend the visibility of this function to be usable outside of this crate, we should // make it unsafe. pub(crate) fn storage_mut_and_layout( |