diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-07-12 09:54:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-12 09:54:33 +0100 |
commit | bcf96e3cf302e8226a498300535ccca537d4b298 (patch) | |
tree | d8461221f032ea824d8280de0bef074614d0cb1c /candle-core/src/backend.rs | |
parent | a76ec797da866d92a39ca41a2c9e70de6d6d7df7 (diff) | |
download | candle-bcf96e3cf302e8226a498300535ccca537d4b298.tar.gz candle-bcf96e3cf302e8226a498300535ccca537d4b298.tar.bz2 candle-bcf96e3cf302e8226a498300535ccca537d4b298.zip |
Implement the backend trait for the cpu backend. (#143)
Diffstat (limited to 'candle-core/src/backend.rs')
-rw-r--r-- | candle-core/src/backend.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/candle-core/src/backend.rs b/candle-core/src/backend.rs index aa35703d..c897510e 100644 --- a/candle-core/src/backend.rs +++ b/candle-core/src/backend.rs @@ -9,6 +9,7 @@ pub(crate) trait BackendStorage: Sized { fn device(&self) -> &Self::Device; + // Maybe this should return a Cow instead so that no copy is done on the cpu case. fn to_cpu_storage(&self) -> Result<CpuStorage>; fn affine(&self, _: &Layout, _: f64, _: f64) -> Result<Self>; |