diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2024-03-21 13:09:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-21 13:09:42 +0100 |
commit | ec97c98e81707c8f66db6be22d2df7c8791c55b8 (patch) | |
tree | 70c7e70f0333b387ef8d1bd6de7209641ba53549 /candle-core/src/backend.rs | |
parent | bb3ee48039ed040da48def94f57a6cf1eb0e7911 (diff) | |
download | candle-ec97c98e81707c8f66db6be22d2df7c8791c55b8.tar.gz candle-ec97c98e81707c8f66db6be22d2df7c8791c55b8.tar.bz2 candle-ec97c98e81707c8f66db6be22d2df7c8791c55b8.zip |
Async tensor copying. (#1900)
Diffstat (limited to 'candle-core/src/backend.rs')
-rw-r--r-- | candle-core/src/backend.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/candle-core/src/backend.rs b/candle-core/src/backend.rs index ea1ac1a9..c63aad54 100644 --- a/candle-core/src/backend.rs +++ b/candle-core/src/backend.rs @@ -129,6 +129,8 @@ pub trait BackendDevice: Sized + std::fmt::Debug + Clone { fn storage_from_cpu_storage(&self, _: &CpuStorage) -> Result<Self::Storage>; + fn storage_from_cpu_storage_owned(&self, _: CpuStorage) -> Result<Self::Storage>; + fn rand_uniform(&self, _: &Shape, _: DType, _: f64, _: f64) -> Result<Self::Storage>; fn rand_normal(&self, _: &Shape, _: DType, _: f64, _: f64) -> Result<Self::Storage>; |