Trait ndarray_conv::ConvExt
source · pub trait ConvExt<'a, T, S, SK, const N: usize>{
// Required method
fn conv(
&self,
kernel: impl IntoKernelWithDilation<'a, SK, N>,
conv_mode: ConvMode<N>,
padding_mode: PaddingMode<N, T>
) -> Result<Array<T, Dim<[Ix; N]>>, Error<N>>;
}
Required Methods§
fn conv( &self, kernel: impl IntoKernelWithDilation<'a, SK, N>, conv_mode: ConvMode<N>, padding_mode: PaddingMode<N, T> ) -> Result<Array<T, Dim<[Ix; N]>>, Error<N>>
Object Safety§
This trait is not object safe.