#[non_exhaustive]#[repr(u32)]pub enum cudnnConvolutionBwdDataAlgo_t {
CUDNN_CONVOLUTION_BWD_DATA_ALGO_0 = 0,
CUDNN_CONVOLUTION_BWD_DATA_ALGO_1 = 1,
CUDNN_CONVOLUTION_BWD_DATA_ALGO_FFT = 2,
CUDNN_CONVOLUTION_BWD_DATA_ALGO_FFT_TILING = 3,
CUDNN_CONVOLUTION_BWD_DATA_ALGO_WINOGRAD = 4,
CUDNN_CONVOLUTION_BWD_DATA_ALGO_WINOGRAD_NONFUSED = 5,
CUDNN_CONVOLUTION_BWD_DATA_ALGO_COUNT = 6,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
CUDNN_CONVOLUTION_BWD_DATA_ALGO_0 = 0
CUDNN_CONVOLUTION_BWD_DATA_ALGO_1 = 1
CUDNN_CONVOLUTION_BWD_DATA_ALGO_FFT = 2
CUDNN_CONVOLUTION_BWD_DATA_ALGO_FFT_TILING = 3
CUDNN_CONVOLUTION_BWD_DATA_ALGO_WINOGRAD = 4
CUDNN_CONVOLUTION_BWD_DATA_ALGO_WINOGRAD_NONFUSED = 5
CUDNN_CONVOLUTION_BWD_DATA_ALGO_COUNT = 6
Trait Implementations§
source§impl Clone for cudnnConvolutionBwdDataAlgo_t
impl Clone for cudnnConvolutionBwdDataAlgo_t
source§fn clone(&self) -> cudnnConvolutionBwdDataAlgo_t
fn clone(&self) -> cudnnConvolutionBwdDataAlgo_t
Returns a copy 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 Hash for cudnnConvolutionBwdDataAlgo_t
impl Hash for cudnnConvolutionBwdDataAlgo_t
source§impl PartialEq for cudnnConvolutionBwdDataAlgo_t
impl PartialEq for cudnnConvolutionBwdDataAlgo_t
source§fn eq(&self, other: &cudnnConvolutionBwdDataAlgo_t) -> bool
fn eq(&self, other: &cudnnConvolutionBwdDataAlgo_t) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for cudnnConvolutionBwdDataAlgo_t
impl Eq for cudnnConvolutionBwdDataAlgo_t
impl StructuralPartialEq for cudnnConvolutionBwdDataAlgo_t
Auto Trait Implementations§
impl RefUnwindSafe for cudnnConvolutionBwdDataAlgo_t
impl Send for cudnnConvolutionBwdDataAlgo_t
impl Sync for cudnnConvolutionBwdDataAlgo_t
impl Unpin for cudnnConvolutionBwdDataAlgo_t
impl UnwindSafe for cudnnConvolutionBwdDataAlgo_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