Enum collenchyma_nn::ConvForwardAlgo [] [src]

pub enum ConvForwardAlgo {
    Auto,
    GEMM,
    ImplicitGEMM,
    ImplicitPrecompiledGEMM,
    FFT,
    FFTTiling,
    Direct,
}

Different algorithms to compute the convolution forward algorithm.

Variants

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

Compute the convolution as explicit matrix product.

Needs a significant memory workspace.

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

Does not need any memory workspace.

Similar to ImplicitGEMM but needs some workspace to precompile the implicit indices.

Compute the convolution as Fast-Fourier Transform.

Needs a significant memory workspace.

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

Needs a significant memory workspace.

Compute the convolution without implicit or explicit matrix-multiplication. Do not try to use this.

Listed in cuDNN docs but cuDNN does not provide a implementation.

Methods

impl ConvForwardAlgo
[src]

Check if algorithim should be chosen automatically.

Trait Implementations

impl Debug for ConvForwardAlgo
[src]

Formats the value using the given formatter.

impl Copy for ConvForwardAlgo
[src]

impl Clone for ConvForwardAlgo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more