Show / Hide Table of Contents

    Struct cudnnConvolutionFwdAlgoPerf

    cudnnConvolutionFwdAlgoPerf is a structure containing performance results returned by cudnnFindConvolutionForwardAlgorithm().

    Inherited Members
    System.ValueType.Equals(System.Object)
    System.ValueType.GetHashCode()
    System.ValueType.ToString()
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetType()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: ManagedCuda.CudaDNN
    Assembly: CudaDNN.dll
    Syntax
    public struct cudnnConvolutionFwdAlgoPerf

    Fields

    | Improve this Doc View Source

    algo

    The algorithm run to obtain the associated performance metrics.

    Declaration
    public cudnnConvolutionFwdAlgo algo
    Field Value
    Type Description
    cudnnConvolutionFwdAlgo
    | Improve this Doc View Source

    determinism

    The determinism of the algorithm.

    Declaration
    public cudnnDeterminism determinism
    Field Value
    Type Description
    cudnnDeterminism
    | Improve this Doc View Source

    mathType

    Declaration
    public cudnnMathType mathType
    Field Value
    Type Description
    cudnnMathType
    | Improve this Doc View Source

    memory

    The workspace size (in bytes).

    Declaration
    public SizeT memory
    Field Value
    Type Description
    SizeT
    | Improve this Doc View Source

    status

    If any error occurs during the workspace allocation or timing of cudnnConvolutionForward(), this status will represent that error. Otherwise, this status will be the return status of cudnnConvolutionForward().

    • CUDNN_STATUS_ALLOC_FAILED if any error occured during workspace allocation or deallocation.

    • CUDNN_STATUS_EXECUTION_FAILED if any error occured during timing calculations.

    • Otherwise, this will be the return status of cudnnConvolutionForward().

    Declaration
    public cudnnStatus status
    Field Value
    Type Description
    cudnnStatus
    | Improve this Doc View Source

    time

    The execution time of cudnnConvolutionForward() (in milliseconds).

    Declaration
    public float time
    Field Value
    Type Description
    System.Single
    • Improve this Doc
    • View Source
    Back to top Generated by DocFX