summaryrefslogtreecommitdiff
path: root/candle-core/src/dummy_cuda_backend.rs
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2023-07-20 13:28:45 +0200
committerGitHub <noreply@github.com>2023-07-20 12:28:45 +0100
commit2a8f28d687b5a33c6c91f40100a42baf6e2fc10a (patch)
treeee76b9df39f52212666ad6f2096be541973cdafd /candle-core/src/dummy_cuda_backend.rs
parente9c052bf94521b418852a1c5231c12ddce99a78f (diff)
downloadcandle-2a8f28d687b5a33c6c91f40100a42baf6e2fc10a.tar.gz
candle-2a8f28d687b5a33c6c91f40100a42baf6e2fc10a.tar.bz2
candle-2a8f28d687b5a33c6c91f40100a42baf6e2fc10a.zip
Op refactor (#208)
* Add the binary and unary op enums to factorize some code. * Bugfix.
Diffstat (limited to 'candle-core/src/dummy_cuda_backend.rs')
-rw-r--r--candle-core/src/dummy_cuda_backend.rs11
1 files changed, 3 insertions, 8 deletions
diff --git a/candle-core/src/dummy_cuda_backend.rs b/candle-core/src/dummy_cuda_backend.rs
index 942e82ed..8f1a9916 100644
--- a/candle-core/src/dummy_cuda_backend.rs
+++ b/candle-core/src/dummy_cuda_backend.rs
@@ -1,5 +1,5 @@
#![allow(dead_code)]
-use crate::op::{CmpOp, ReduceOp};
+use crate::op::{BinaryOpT, CmpOp, ReduceOp, UnaryOpT};
use crate::{CpuStorage, DType, Error, Layout, Result, Shape};
#[derive(Debug, Clone)]
@@ -57,16 +57,11 @@ impl crate::backend::BackendStorage for CudaStorage {
Err(Error::NotCompiledWithCudaSupport)
}
- fn unary_impl<B: crate::op::UnaryOp>(&self, _: &Layout) -> Result<Self> {
+ fn unary_impl<B: UnaryOpT>(&self, _: &Layout) -> Result<Self> {
Err(Error::NotCompiledWithCudaSupport)
}
- fn binary_impl<B: crate::op::BinaryOp>(
- &self,
- _: &Self,
- _: &Layout,
- _: &Layout,
- ) -> Result<Self> {
+ fn binary_impl<B: BinaryOpT>(&self, _: &Self, _: &Layout, _: &Layout) -> Result<Self> {
Err(Error::NotCompiledWithCudaSupport)
}