Show / Hide Table of Contents

    Enum cudnnDirectionMode

    cudnnDirectionMode_t is an enumerated type used to specify the recurrence pattern in the cudnnRNNForwardInference(), cudnnRNNForwardTraining(), cudnnRNNBackwardData() and cudnnRNNBackwardWeights() routines.

    Namespace: ManagedCuda.CudaDNN
    Assembly: CudaDNN.dll
    Syntax
    public enum cudnnDirectionMode

    Fields

    Name Description
    Bidirectional

    Each layer of the the network iterates recurrently from the first input to the last and separately from the last input to the first. The outputs of the two are concatenated at each iteration giving the output of the layer.

    Unidirectional

    The network iterates recurrently from the first input to the last.

    • Improve this Doc
    • View Source
    Back to top Generated by DocFX