#[repr(C)]pub enum cudnnConvolutionFwdAlgo_t {
CUDNN_CONVOLUTION_FWD_ALGO_IMPLICIT_GEMM = 0,
CUDNN_CONVOLUTION_FWD_ALGO_IMPLICIT_PRECOMP_GEMM = 1,
CUDNN_CONVOLUTION_FWD_ALGO_GEMM = 2,
CUDNN_CONVOLUTION_FWD_ALGO_DIRECT = 3,
CUDNN_CONVOLUTION_FWD_ALGO_FFT = 4,
CUDNN_CONVOLUTION_FWD_ALGO_FFT_TILING = 5,
}Variants§
CUDNN_CONVOLUTION_FWD_ALGO_IMPLICIT_GEMM = 0
CUDNN_CONVOLUTION_FWD_ALGO_IMPLICIT_PRECOMP_GEMM = 1
CUDNN_CONVOLUTION_FWD_ALGO_GEMM = 2
CUDNN_CONVOLUTION_FWD_ALGO_DIRECT = 3
CUDNN_CONVOLUTION_FWD_ALGO_FFT = 4
CUDNN_CONVOLUTION_FWD_ALGO_FFT_TILING = 5
Trait Implementations§
Source§impl Clone for cudnnConvolutionFwdAlgo_t
impl Clone for cudnnConvolutionFwdAlgo_t
Source§fn clone(&self) -> cudnnConvolutionFwdAlgo_t
fn clone(&self) -> cudnnConvolutionFwdAlgo_t
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for cudnnConvolutionFwdAlgo_t
impl Debug for cudnnConvolutionFwdAlgo_t
impl Copy for cudnnConvolutionFwdAlgo_t
impl StructuralPartialEq for cudnnConvolutionFwdAlgo_t
Auto Trait Implementations§
impl Freeze for cudnnConvolutionFwdAlgo_t
impl RefUnwindSafe for cudnnConvolutionFwdAlgo_t
impl Send for cudnnConvolutionFwdAlgo_t
impl Sync for cudnnConvolutionFwdAlgo_t
impl Unpin for cudnnConvolutionFwdAlgo_t
impl UnwindSafe for cudnnConvolutionFwdAlgo_t
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more