diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2024-03-22 07:25:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-22 07:25:23 +0100 |
commit | 6708870e633af636660c556c19703c38cbe2af8d (patch) | |
tree | 5b1f7e3eac1e0be5cc25a5d16db43cc717ff6ee0 /candle-core/src/dummy_metal_backend.rs | |
parent | a00e24d752f3f62978c878859a01a4246244d4bc (diff) | |
download | candle-6708870e633af636660c556c19703c38cbe2af8d.tar.gz candle-6708870e633af636660c556c19703c38cbe2af8d.tar.bz2 candle-6708870e633af636660c556c19703c38cbe2af8d.zip |
Add the alloc_uninit function. (#1901)
* Add the alloc_uninit function.
* Dummy metal fix.
* Lazy initialization.
Diffstat (limited to 'candle-core/src/dummy_metal_backend.rs')
-rw-r--r-- | candle-core/src/dummy_metal_backend.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/candle-core/src/dummy_metal_backend.rs b/candle-core/src/dummy_metal_backend.rs index 33c6c9fe..322f81d2 100644 --- a/candle-core/src/dummy_metal_backend.rs +++ b/candle-core/src/dummy_metal_backend.rs @@ -222,6 +222,10 @@ impl crate::backend::BackendDevice for MetalDevice { Err(Error::NotCompiledWithMetalSupport) } + unsafe fn alloc_uninit(&self, _shape: &Shape, _dtype: DType) -> Result<Self::Storage> { + Err(Error::NotCompiledWithMetalSupport) + } + fn storage_from_cpu_storage(&self, _: &CpuStorage) -> Result<Self::Storage> { Err(Error::NotCompiledWithMetalSupport) } |