Enum collenchyma_nn::ConvBackwardDataAlgo [] [src]

pub enum ConvBackwardDataAlgo {
    Auto,
    ImplicitGEMM,
    ImplicitGEMMSum,
    FFT,
    FFTTiling,
}

Different algorithms to compute the gradient with respect to the filter.

Variants

Attempt to automatically find the best algorithm of all the other available ones.

Compute the convolution as matrix product without forming the matrix that holds the input data.

Does not need any memory workspace.

The results are deterministic.

Compute the convolution as sum of matrix product without forming the matrix that holds the input data.

Does not need any memory workspace.

The results are non-deterministic.

Compute the convolution as Fast-Fourier Transform.

Needs a significant memory workspace.

The results are deterministic.

Compute the convolution as Fast-Fourier Transform with 32x32 tiles.

Needs a significant memory workspace.

The results are deterministic.

Methods

impl ConvBackwardDataAlgo
[src]

Check if algorithim should be chosen automatically.

Trait Implementations

impl Debug for ConvBackwardDataAlgo
[src]

Formats the value using the given formatter.

impl Copy for ConvBackwardDataAlgo
[src]

impl Clone for ConvBackwardDataAlgo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more