summaryrefslogtreecommitdiff
path: root/candle-core/src/conv.rs
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2023-10-09 20:49:57 +0200
committerGitHub <noreply@github.com>2023-10-09 19:49:57 +0100
commitb34d7f0248d88d4cccbd0509a1865196b61de5d8 (patch)
tree8d7d06cf7c8a90d447113e5edb4d047a0e1ae22f /candle-core/src/conv.rs
parent4d04ac83c7fd65c6f6e5f08ab87f27ab6e5af21b (diff)
downloadcandle-b34d7f0248d88d4cccbd0509a1865196b61de5d8.tar.gz
candle-b34d7f0248d88d4cccbd0509a1865196b61de5d8.tar.bz2
candle-b34d7f0248d88d4cccbd0509a1865196b61de5d8.zip
Remove some unusued bits. (#1067)
Diffstat (limited to 'candle-core/src/conv.rs')
-rw-r--r--candle-core/src/conv.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/candle-core/src/conv.rs b/candle-core/src/conv.rs
index f92c05b2..8e987664 100644
--- a/candle-core/src/conv.rs
+++ b/candle-core/src/conv.rs
@@ -25,7 +25,6 @@ impl ParamsConv1D {
}
}
-#[allow(unused)]
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum CudnnFwdAlgo {
ImplicitGemm,
@@ -51,7 +50,7 @@ pub struct ParamsConv2D {
pub(crate) padding: usize,
pub(crate) stride: usize,
pub(crate) dilation: usize,
- pub(crate) cudnn_fwd_algo: Option<CudnnFwdAlgo>,
+ pub cudnn_fwd_algo: Option<CudnnFwdAlgo>,
}
impl ParamsConv2D {