diff options
Diffstat (limited to 'candle-core/src/cpu_backend.rs')
-rw-r--r-- | candle-core/src/cpu_backend.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/candle-core/src/cpu_backend.rs b/candle-core/src/cpu_backend.rs index 1504d5b8..fa48577c 100644 --- a/candle-core/src/cpu_backend.rs +++ b/candle-core/src/cpu_backend.rs @@ -2814,6 +2814,10 @@ impl BackendDevice for CpuDevice { Ok(s.clone()) } + fn storage_from_cpu_storage_owned(&self, s: CpuStorage) -> Result<Self::Storage> { + Ok(s) + } + fn new(_: usize) -> Result<Self> { Ok(Self) } |