From b52c2c60508325431df5e05eca9801060fdbcc1c Mon Sep 17 00:00:00 2001 From: Laurent Mazare Date: Fri, 29 Nov 2024 09:01:34 +0100 Subject: Clippy fixes for the cuda feature. (#2650) --- candle-core/src/cuda_backend/mod.rs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'candle-core/src/cuda_backend') diff --git a/candle-core/src/cuda_backend/mod.rs b/candle-core/src/cuda_backend/mod.rs index 37fef507..2cd97c18 100644 --- a/candle-core/src/cuda_backend/mod.rs +++ b/candle-core/src/cuda_backend/mod.rs @@ -255,7 +255,7 @@ impl Map1 for Powf { } struct FastReduce<'a>(&'a [usize], ReduceOp); -impl<'a> Map1Any for FastReduce<'a> { +impl Map1Any for FastReduce<'_> { fn f) -> S>( &self, src: &CudaSlice, @@ -350,7 +350,7 @@ impl Map1 for U { } struct IndexSelect<'a>(&'a CudaStorage, &'a Layout, usize); -impl<'a> Map1 for IndexSelect<'a> { +impl Map1 for IndexSelect<'_> { fn f( &self, src: &CudaSlice, @@ -410,7 +410,7 @@ impl<'a> Map1 for IndexSelect<'a> { } struct Gather<'a>(&'a CudaStorage, &'a Layout, usize); -impl<'a> Map1 for Gather<'a> { +impl Map1 for Gather<'_> { fn f( &self, src: &CudaSlice, @@ -461,7 +461,7 @@ impl<'a> Map1 for Gather<'a> { } struct IndexAdd<'a>(&'a CudaStorage, &'a Layout, usize); -impl<'a> Map2InPlace for IndexAdd<'a> { +impl Map2InPlace for IndexAdd<'_> { fn f( &self, dst: &mut CudaSlice, @@ -509,7 +509,7 @@ impl<'a> Map2InPlace for IndexAdd<'a> { } struct ScatterAdd<'a>(&'a CudaStorage, &'a Layout, usize); -impl<'a> Map2InPlace for ScatterAdd<'a> { +impl Map2InPlace for ScatterAdd<'_> { fn f( &self, dst: &mut CudaSlice, @@ -554,7 +554,7 @@ impl<'a> Map2InPlace for ScatterAdd<'a> { } struct Conv1D<'a>(&'a crate::conv::ParamsConv1D); -impl<'a> Map2 for Conv1D<'a> { +impl Map2 for Conv1D<'_> { fn f( &self, inp: &CudaSlice, @@ -595,7 +595,7 @@ impl<'a> Map2 for Conv1D<'a> { } struct Conv2D<'a>(&'a crate::conv::ParamsConv2D); -impl<'a> Map2 for Conv2D<'a> { +impl Map2 for Conv2D<'_> { fn f( &self, inp: &CudaSlice, @@ -660,7 +660,7 @@ impl Map1 for Col2Im1D { } struct ConvTranspose1D<'a>(&'a crate::conv::ParamsConvTranspose1D); -impl<'a> Map2 for ConvTranspose1D<'a> { +impl Map2 for ConvTranspose1D<'_> { fn f( &self, inp: &CudaSlice, @@ -709,7 +709,7 @@ impl<'a> Map2 for ConvTranspose1D<'a> { } struct ConvTranspose2D<'a>(&'a crate::conv::ParamsConvTranspose2D); -impl<'a> Map2 for ConvTranspose2D<'a> { +impl Map2 for ConvTranspose2D<'_> { fn f( &self, inp: &CudaSlice, @@ -850,7 +850,7 @@ impl Map1 for UpsampleNearest2D { } struct WhereCond<'a>(&'a CudaStorage, &'a Layout); -impl<'a> Map2 for WhereCond<'a> { +impl Map2 for WhereCond<'_> { fn f( &self, t: &CudaSlice, -- cgit v1.2.3