diff options
Diffstat (limited to 'candle-core/src/dummy_cuda_backend.rs')
-rw-r--r-- | candle-core/src/dummy_cuda_backend.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/candle-core/src/dummy_cuda_backend.rs b/candle-core/src/dummy_cuda_backend.rs index 99cb7c4e..ae4dd09f 100644 --- a/candle-core/src/dummy_cuda_backend.rs +++ b/candle-core/src/dummy_cuda_backend.rs @@ -75,6 +75,16 @@ impl crate::backend::BackendStorage for CudaStorage { Err(Error::NotCompiledWithCudaSupport) } + fn conv2d( + &self, + _: &Layout, + _: &Self, + _: &Layout, + _: &crate::conv::ParamsConv2D, + ) -> Result<Self> { + Err(Error::NotCompiledWithCudaSupport) + } + fn index_select(&self, _: &Self, _: &Layout, _: &Layout, _: usize) -> Result<Self> { Err(Error::NotCompiledWithCudaSupport) } |