diff options
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>; |