Show / Hide Table of Contents

    Enum cudnnPoolingMode

    cudnnPoolingMode is an enumerated type passed to cudnnSetPoolingDescriptor() to select the pooling method to be used by cudnnPoolingForward() and cudnnPoolingBackward().

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

    Fields

    Name Description
    AverageCountExcludePadding

    The values inside the pooling window will be averaged. The number of padded values will not be taken into account when computing the average value.

    AverageCountIncludePadding

    The values inside the pooling window will be averaged. The number of padded values will be taken into account when computing the average value.

    Max

    The maximum value inside the pooling window will be used.

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