summaryrefslogtreecommitdiff
path: root/candle-core/src/dummy_cuda_backend.rs
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2023-09-13 17:50:39 +0200
committerGitHub <noreply@github.com>2023-09-13 16:50:39 +0100
commit9a465e1b2601195b65f1422f16793d6825252231 (patch)
tree79b0b49e2fe25976b5de5259fc3cd6ebee5ffe88 /candle-core/src/dummy_cuda_backend.rs
parent31ab2ddaebe632f06f647c470259364eb53ca9e8 (diff)
downloadcandle-9a465e1b2601195b65f1422f16793d6825252231.tar.gz
candle-9a465e1b2601195b65f1422f16793d6825252231.tar.bz2
candle-9a465e1b2601195b65f1422f16793d6825252231.zip
Add 1d upsampling. (#839)
* Add 1d upsampling. * Add the interpolate functions.
Diffstat (limited to 'candle-core/src/dummy_cuda_backend.rs')
-rw-r--r--candle-core/src/dummy_cuda_backend.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/candle-core/src/dummy_cuda_backend.rs b/candle-core/src/dummy_cuda_backend.rs
index 6c896653..5cc9c6d8 100644
--- a/candle-core/src/dummy_cuda_backend.rs
+++ b/candle-core/src/dummy_cuda_backend.rs
@@ -152,6 +152,10 @@ impl crate::backend::BackendStorage for CudaStorage {
Err(Error::NotCompiledWithCudaSupport)
}
+ fn upsample_nearest1d(&self, _: &Layout, _: usize) -> Result<Self> {
+ Err(Error::NotCompiledWithCudaSupport)
+ }
+
fn upsample_nearest2d(&self, _: &Layout, _: usize, _: usize) -> Result<Self> {
Err(Error::NotCompiledWithCudaSupport)
}