C# Class ManagedCuda.CudaDNN.CudaDNNNativeMethods

Datei anzeigen Open project: kunzmi/managedCuda Class Usage Examples

Public Methods

Method Description
cudnnGetErrorString ( cudnnStatus status ) : string

This function returns a human-readable character string describing the cudnnStatus enumerate passed as input parameter.

cudnnGetVersion ( ) : System.Version

This function returns the version number of the cuDNN Library. It returns the CUDNN_VERSION define present in the cudnn.h header file. Starting with release R2, the routine can be used to identify dynamically the current cuDNN Library used by the application. The define CUDNN_VERSION can be used to have the same application linked against different cuDNN versions using conditional compilation statements.

Private Methods

Method Description
cudnnActivationBackward ( cudnnHandle handle, cudnnActivationDescriptor activationDesc, double &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, cudnnTensorDescriptor srcDiffDesc, ManagedCuda.BasicTypes.CUdeviceptr srcDiffData, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData, double &beta, cudnnTensorDescriptor destDiffDesc, ManagedCuda.BasicTypes.CUdeviceptr destDiffData ) : cudnnStatus
cudnnActivationBackward ( cudnnHandle handle, cudnnActivationDescriptor activationDesc, float &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, cudnnTensorDescriptor srcDiffDesc, ManagedCuda.BasicTypes.CUdeviceptr srcDiffData, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData, float &beta, cudnnTensorDescriptor destDiffDesc, ManagedCuda.BasicTypes.CUdeviceptr destDiffData ) : cudnnStatus
cudnnActivationForward ( cudnnHandle handle, cudnnActivationDescriptor activationDesc, double &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, double &beta, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData ) : cudnnStatus
cudnnActivationForward ( cudnnHandle handle, cudnnActivationDescriptor activationDesc, float &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, float &beta, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData ) : cudnnStatus
cudnnAddTensor ( cudnnHandle handle, double &alpha, cudnnTensorDescriptor biasDesc, ManagedCuda.BasicTypes.CUdeviceptr biasData, double &beta, cudnnTensorDescriptor srcDestDesc, ManagedCuda.BasicTypes.CUdeviceptr srcDestData ) : cudnnStatus
cudnnAddTensor ( cudnnHandle handle, float &alpha, cudnnTensorDescriptor biasDesc, ManagedCuda.BasicTypes.CUdeviceptr biasData, float &beta, cudnnTensorDescriptor srcDestDesc, ManagedCuda.BasicTypes.CUdeviceptr srcDestData ) : cudnnStatus
cudnnBatchNormalizationBackward ( cudnnHandle handle, cudnnBatchNormMode mode, double &alphaDataDiff, double &betaDataDiff, double &alphaParamDiff, double &betaParamDiff, cudnnTensorDescriptor xDesc, ManagedCuda.BasicTypes.CUdeviceptr x, cudnnTensorDescriptor dyDesc, ManagedCuda.BasicTypes.CUdeviceptr dy, cudnnTensorDescriptor dxDesc, ManagedCuda.BasicTypes.CUdeviceptr dx, cudnnTensorDescriptor dBnScaleBiasDesc, ManagedCuda.BasicTypes.CUdeviceptr bnScale, ManagedCuda.BasicTypes.CUdeviceptr dBnScaleResult, ManagedCuda.BasicTypes.CUdeviceptr dBnBiasResult, double epsilon, ManagedCuda.BasicTypes.CUdeviceptr savedMean, ManagedCuda.BasicTypes.CUdeviceptr savedInvVariance ) : cudnnStatus
cudnnBatchNormalizationBackward ( cudnnHandle handle, cudnnBatchNormMode mode, float &alphaDataDiff, float &betaDataDiff, float &alphaParamDiff, float &betaParamDiff, cudnnTensorDescriptor xDesc, ManagedCuda.BasicTypes.CUdeviceptr x, cudnnTensorDescriptor dyDesc, ManagedCuda.BasicTypes.CUdeviceptr dy, cudnnTensorDescriptor dxDesc, ManagedCuda.BasicTypes.CUdeviceptr dx, cudnnTensorDescriptor dBnScaleBiasDesc, ManagedCuda.BasicTypes.CUdeviceptr bnScale, ManagedCuda.BasicTypes.CUdeviceptr dBnScaleResult, ManagedCuda.BasicTypes.CUdeviceptr dBnBiasResult, double epsilon, ManagedCuda.BasicTypes.CUdeviceptr savedMean, ManagedCuda.BasicTypes.CUdeviceptr savedInvVariance ) : cudnnStatus
cudnnBatchNormalizationForwardInference ( cudnnHandle handle, cudnnBatchNormMode mode, double &alpha, double &beta, cudnnTensorDescriptor xDesc, ManagedCuda.BasicTypes.CUdeviceptr x, cudnnTensorDescriptor yDesc, ManagedCuda.BasicTypes.CUdeviceptr y, cudnnTensorDescriptor bnScaleBiasMeanVarDesc, ManagedCuda.BasicTypes.CUdeviceptr bnScale, ManagedCuda.BasicTypes.CUdeviceptr bnBias, ManagedCuda.BasicTypes.CUdeviceptr estimatedMean, ManagedCuda.BasicTypes.CUdeviceptr estimatedInvVariance, double epsilon ) : cudnnStatus
cudnnBatchNormalizationForwardInference ( cudnnHandle handle, cudnnBatchNormMode mode, float &alpha, float &beta, cudnnTensorDescriptor xDesc, ManagedCuda.BasicTypes.CUdeviceptr x, cudnnTensorDescriptor yDesc, ManagedCuda.BasicTypes.CUdeviceptr y, cudnnTensorDescriptor bnScaleBiasMeanVarDesc, ManagedCuda.BasicTypes.CUdeviceptr bnScale, ManagedCuda.BasicTypes.CUdeviceptr bnBias, ManagedCuda.BasicTypes.CUdeviceptr estimatedMean, ManagedCuda.BasicTypes.CUdeviceptr estimatedInvVariance, double epsilon ) : cudnnStatus
cudnnBatchNormalizationForwardTraining ( cudnnHandle handle, cudnnBatchNormMode mode, double &alpha, double &beta, cudnnTensorDescriptor xDesc, ManagedCuda.BasicTypes.CUdeviceptr x, cudnnTensorDescriptor yDesc, ManagedCuda.BasicTypes.CUdeviceptr y, cudnnTensorDescriptor bnScaleBiasMeanVarDesc, ManagedCuda.BasicTypes.CUdeviceptr bnScale, ManagedCuda.BasicTypes.CUdeviceptr bnBias, double exponentialAverageFactor, ManagedCuda.BasicTypes.CUdeviceptr resultRunningMean, ManagedCuda.BasicTypes.CUdeviceptr resultRunningInvVariance, double epsilon, ManagedCuda.BasicTypes.CUdeviceptr resultSaveMean, ManagedCuda.BasicTypes.CUdeviceptr resultSaveInvVariance ) : cudnnStatus
cudnnBatchNormalizationForwardTraining ( cudnnHandle handle, cudnnBatchNormMode mode, float &alpha, float &beta, cudnnTensorDescriptor xDesc, ManagedCuda.BasicTypes.CUdeviceptr x, cudnnTensorDescriptor yDesc, ManagedCuda.BasicTypes.CUdeviceptr y, cudnnTensorDescriptor bnScaleBiasMeanVarDesc, ManagedCuda.BasicTypes.CUdeviceptr bnScale, ManagedCuda.BasicTypes.CUdeviceptr bnBias, double exponentialAverageFactor, ManagedCuda.BasicTypes.CUdeviceptr resultRunningMean, ManagedCuda.BasicTypes.CUdeviceptr resultRunningInvVariance, double epsilon, ManagedCuda.BasicTypes.CUdeviceptr resultSaveMean, ManagedCuda.BasicTypes.CUdeviceptr resultSaveInvVariance ) : cudnnStatus
cudnnConvolutionBackwardBias ( cudnnHandle handle, double &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, double &beta, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData ) : cudnnStatus
cudnnConvolutionBackwardBias ( cudnnHandle handle, float &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, float &beta, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData ) : cudnnStatus
cudnnConvolutionBackwardData ( cudnnHandle handle, double &alpha, cudnnFilterDescriptor filterDesc, ManagedCuda.BasicTypes.CUdeviceptr filterData, cudnnTensorDescriptor diffDesc, ManagedCuda.BasicTypes.CUdeviceptr diffData, cudnnConvolutionDescriptor convDesc, cudnnConvolutionBwdDataAlgo algo, ManagedCuda.BasicTypes.CUdeviceptr workSpace, ManagedCuda.BasicTypes.SizeT workSpaceSizeInBytes, double &beta, cudnnTensorDescriptor gradDesc, ManagedCuda.BasicTypes.CUdeviceptr gradData ) : cudnnStatus
cudnnConvolutionBackwardData ( cudnnHandle handle, float &alpha, cudnnFilterDescriptor filterDesc, ManagedCuda.BasicTypes.CUdeviceptr filterData, cudnnTensorDescriptor diffDesc, ManagedCuda.BasicTypes.CUdeviceptr diffData, cudnnConvolutionDescriptor convDesc, cudnnConvolutionBwdDataAlgo algo, ManagedCuda.BasicTypes.CUdeviceptr workSpace, ManagedCuda.BasicTypes.SizeT workSpaceSizeInBytes, float &beta, cudnnTensorDescriptor gradDesc, ManagedCuda.BasicTypes.CUdeviceptr gradData ) : cudnnStatus
cudnnConvolutionBackwardFilter ( cudnnHandle handle, double &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, cudnnTensorDescriptor diffDesc, ManagedCuda.BasicTypes.CUdeviceptr diffData, cudnnConvolutionDescriptor convDesc, cudnnConvolutionBwdFilterAlgo algo, ManagedCuda.BasicTypes.CUdeviceptr workSpace, ManagedCuda.BasicTypes.SizeT workSpaceSizeInBytes, double &beta, cudnnFilterDescriptor gradDesc, ManagedCuda.BasicTypes.CUdeviceptr gradData ) : cudnnStatus
cudnnConvolutionBackwardFilter ( cudnnHandle handle, float &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, cudnnTensorDescriptor diffDesc, ManagedCuda.BasicTypes.CUdeviceptr diffData, cudnnConvolutionDescriptor convDesc, cudnnConvolutionBwdFilterAlgo algo, ManagedCuda.BasicTypes.CUdeviceptr workSpace, ManagedCuda.BasicTypes.SizeT workSpaceSizeInBytes, float &beta, cudnnFilterDescriptor gradDesc, ManagedCuda.BasicTypes.CUdeviceptr gradData ) : cudnnStatus
cudnnConvolutionForward ( cudnnHandle handle, double &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, cudnnFilterDescriptor filterDesc, ManagedCuda.BasicTypes.CUdeviceptr filterData, cudnnConvolutionDescriptor convDesc, cudnnConvolutionFwdAlgo algo, ManagedCuda.BasicTypes.CUdeviceptr workSpace, ManagedCuda.BasicTypes.SizeT workSpaceSizeInBytes, double &beta, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData ) : cudnnStatus
cudnnConvolutionForward ( cudnnHandle handle, float &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, cudnnFilterDescriptor filterDesc, ManagedCuda.BasicTypes.CUdeviceptr filterData, cudnnConvolutionDescriptor convDesc, cudnnConvolutionFwdAlgo algo, ManagedCuda.BasicTypes.CUdeviceptr workSpace, ManagedCuda.BasicTypes.SizeT workSpaceSizeInBytes, float &beta, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData ) : cudnnStatus
cudnnCreate ( cudnnHandle &handle ) : cudnnStatus
cudnnCreateActivationDescriptor ( cudnnActivationDescriptor &activationDesc ) : cudnnStatus
cudnnCreateConvolutionDescriptor ( cudnnConvolutionDescriptor &convDesc ) : cudnnStatus
cudnnCreateDropoutDescriptor ( cudnnDropoutDescriptor &dropoutDesc ) : cudnnStatus
cudnnCreateFilterDescriptor ( cudnnFilterDescriptor &filterDesc ) : cudnnStatus
cudnnCreateLRNDescriptor ( cudnnLRNDescriptor &normDesc ) : cudnnStatus
cudnnCreateOpTensorDescriptor ( cudnnOpTensorDescriptor &opTensorDesc ) : cudnnStatus
cudnnCreatePoolingDescriptor ( cudnnPoolingDescriptor &poolingDesc ) : cudnnStatus
cudnnCreateRNNDescriptor ( cudnnRNNDescriptor &rnnDesc ) : cudnnStatus
cudnnCreateSpatialTransformerDescriptor ( cudnnSpatialTransformerDescriptor &stDesc ) : cudnnStatus
cudnnCreateTensorDescriptor ( cudnnTensorDescriptor &tensorDesc ) : cudnnStatus
cudnnDeriveBNTensorDescriptor ( cudnnTensorDescriptor derivedBnDesc, cudnnTensorDescriptor xDesc, cudnnBatchNormMode mode ) : cudnnStatus
cudnnDestroy ( cudnnHandle handle ) : cudnnStatus
cudnnDestroyActivationDescriptor ( cudnnActivationDescriptor activationDesc ) : cudnnStatus
cudnnDestroyConvolutionDescriptor ( cudnnConvolutionDescriptor convDesc ) : cudnnStatus
cudnnDestroyDropoutDescriptor ( cudnnDropoutDescriptor dropoutDesc ) : cudnnStatus
cudnnDestroyFilterDescriptor ( cudnnFilterDescriptor filterDesc ) : cudnnStatus
cudnnDestroyLRNDescriptor ( cudnnLRNDescriptor lrnDesc ) : cudnnStatus
cudnnDestroyOpTensorDescriptor ( cudnnOpTensorDescriptor opTensorDesc ) : cudnnStatus
cudnnDestroyPoolingDescriptor ( cudnnPoolingDescriptor poolingDesc ) : cudnnStatus
cudnnDestroyRNNDescriptor ( cudnnRNNDescriptor rnnDesc ) : cudnnStatus
cudnnDestroySpatialTransformerDescriptor ( cudnnSpatialTransformerDescriptor stDesc ) : cudnnStatus
cudnnDestroyTensorDescriptor ( cudnnTensorDescriptor tensorDesc ) : cudnnStatus
cudnnDivisiveNormalizationBackward ( cudnnHandle handle, cudnnLRNDescriptor normDesc, cudnnDivNormMode mode, double &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, ManagedCuda.BasicTypes.CUdeviceptr srcMeansData, ManagedCuda.BasicTypes.CUdeviceptr srcDiffData, ManagedCuda.BasicTypes.CUdeviceptr tempData, ManagedCuda.BasicTypes.CUdeviceptr tempData2, double &beta, cudnnTensorDescriptor destDataDesc, ManagedCuda.BasicTypes.CUdeviceptr destDataDiff, ManagedCuda.BasicTypes.CUdeviceptr destMeansDiff ) : cudnnStatus
cudnnDivisiveNormalizationBackward ( cudnnHandle handle, cudnnLRNDescriptor normDesc, cudnnDivNormMode mode, float &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, ManagedCuda.BasicTypes.CUdeviceptr srcMeansData, ManagedCuda.BasicTypes.CUdeviceptr srcDiffData, ManagedCuda.BasicTypes.CUdeviceptr tempData, ManagedCuda.BasicTypes.CUdeviceptr tempData2, float &beta, cudnnTensorDescriptor destDataDesc, ManagedCuda.BasicTypes.CUdeviceptr destDataDiff, ManagedCuda.BasicTypes.CUdeviceptr destMeansDiff ) : cudnnStatus
cudnnDivisiveNormalizationForward ( cudnnHandle handle, cudnnLRNDescriptor normDesc, cudnnDivNormMode mode, double &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, ManagedCuda.BasicTypes.CUdeviceptr srcMeansData, ManagedCuda.BasicTypes.CUdeviceptr tempData, ManagedCuda.BasicTypes.CUdeviceptr tempData2, double &beta, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData ) : cudnnStatus
cudnnDivisiveNormalizationForward ( cudnnHandle handle, cudnnLRNDescriptor normDesc, cudnnDivNormMode mode, float &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, ManagedCuda.BasicTypes.CUdeviceptr srcMeansData, ManagedCuda.BasicTypes.CUdeviceptr tempData, ManagedCuda.BasicTypes.CUdeviceptr tempData2, float &beta, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData ) : cudnnStatus
cudnnDropoutBackward ( cudnnHandle handle, cudnnDropoutDescriptor dropoutDesc, cudnnTensorDescriptor dydesc, ManagedCuda.BasicTypes.CUdeviceptr dy, cudnnTensorDescriptor dxdesc, ManagedCuda.BasicTypes.CUdeviceptr dx, ManagedCuda.BasicTypes.CUdeviceptr reserveSpace, ManagedCuda.BasicTypes.SizeT reserveSpaceSizeInBytes ) : cudnnStatus
cudnnDropoutForward ( cudnnHandle handle, cudnnDropoutDescriptor dropoutDesc, cudnnTensorDescriptor xdesc, ManagedCuda.BasicTypes.CUdeviceptr x, cudnnTensorDescriptor ydesc, ManagedCuda.BasicTypes.CUdeviceptr y, ManagedCuda.BasicTypes.CUdeviceptr reserveSpace, ManagedCuda.BasicTypes.SizeT reserveSpaceSizeInBytes ) : cudnnStatus
cudnnDropoutGetReserveSpaceSize ( cudnnTensorDescriptor xdesc, ManagedCuda.BasicTypes.SizeT &sizeInBytes ) : cudnnStatus
cudnnDropoutGetStatesSize ( cudnnHandle handle, ManagedCuda.BasicTypes.SizeT &sizeInBytes ) : cudnnStatus
cudnnFindConvolutionBackwardDataAlgorithm ( cudnnHandle handle, cudnnFilterDescriptor filterDesc, cudnnTensorDescriptor diffDesc, cudnnConvolutionDescriptor convDesc, cudnnTensorDescriptor gradDesc, int requestedAlgoCount, int &returnedAlgoCount, cudnnConvolutionBwdDataAlgoPerf perfResults ) : cudnnStatus
cudnnFindConvolutionBackwardFilterAlgorithm ( cudnnHandle handle, cudnnTensorDescriptor srcDesc, cudnnTensorDescriptor diffDesc, cudnnConvolutionDescriptor convDesc, cudnnFilterDescriptor gradDesc, int requestedAlgoCount, int &returnedAlgoCount, cudnnConvolutionBwdFilterAlgoPerf perfResults ) : cudnnStatus
cudnnFindConvolutionBackwardFilterAlgorithmEx ( cudnnHandle handle, cudnnTensorDescriptor xDesc, ManagedCuda.BasicTypes.CUdeviceptr x, cudnnTensorDescriptor dyDesc, ManagedCuda.BasicTypes.CUdeviceptr dy, cudnnConvolutionDescriptor convDesc, cudnnFilterDescriptor dwDesc, ManagedCuda.BasicTypes.CUdeviceptr dw, int requestedAlgoCount, int &returnedAlgoCount, cudnnConvolutionBwdFilterAlgoPerf &perfResults, ManagedCuda.BasicTypes.CUdeviceptr workSpace, ManagedCuda.BasicTypes.SizeT workSpaceSizeInBytes ) : cudnnStatus
cudnnFindConvolutionForwardAlgorithm ( cudnnHandle handle, cudnnTensorDescriptor srcDesc, cudnnFilterDescriptor filterDesc, cudnnConvolutionDescriptor convDesc, cudnnTensorDescriptor destDesc, int requestedAlgoCount, int &returnedAlgoCount, cudnnConvolutionFwdAlgoPerf perfResults ) : cudnnStatus
cudnnFindConvolutionForwardAlgorithmEx ( cudnnHandle handle, cudnnTensorDescriptor xDesc, ManagedCuda.BasicTypes.CUdeviceptr x, cudnnFilterDescriptor wDesc, ManagedCuda.BasicTypes.CUdeviceptr w, cudnnConvolutionDescriptor convDesc, cudnnTensorDescriptor yDesc, ManagedCuda.BasicTypes.CUdeviceptr y, int requestedAlgoCount, int &returnedAlgoCount, cudnnConvolutionFwdAlgoPerf &perfResults, ManagedCuda.BasicTypes.CUdeviceptr workSpace, ManagedCuda.BasicTypes.SizeT workSpaceSizeInBytes ) : cudnnStatus
cudnnGetActivationDescriptor ( cudnnActivationDescriptor activationDesc, cudnnActivationMode &mode, cudnnNanPropagation &reluNanOpt, double &reluCeiling ) : cudnnStatus
cudnnGetConvolution2dDescriptor ( cudnnConvolutionDescriptor convDesc, int &pad_h, int &pad_w, int &u, int &v, int &upscalex, int &upscaley, cudnnConvolutionMode &mode, cudnnDataType &dataType ) : cudnnStatus
cudnnGetConvolution2dForwardOutputDim ( cudnnConvolutionDescriptor convDesc, cudnnTensorDescriptor inputTensorDesc, cudnnFilterDescriptor filterDesc, int &n, int &c, int &h, int &w ) : cudnnStatus
cudnnGetConvolutionBackwardDataAlgorithm ( cudnnHandle handle, cudnnFilterDescriptor filterDesc, cudnnTensorDescriptor diffDesc, cudnnConvolutionDescriptor convDesc, cudnnTensorDescriptor gradDesc, cudnnConvolutionBwdDataPreference preference, ManagedCuda.BasicTypes.SizeT memoryLimitInbytes, cudnnConvolutionBwdDataAlgo &algo ) : cudnnStatus
cudnnGetConvolutionBackwardDataWorkspaceSize ( cudnnHandle handle, cudnnFilterDescriptor filterDesc, cudnnTensorDescriptor diffDesc, cudnnConvolutionDescriptor convDesc, cudnnTensorDescriptor gradDesc, cudnnConvolutionBwdDataAlgo algo, ManagedCuda.BasicTypes.SizeT &sizeInBytes ) : cudnnStatus
cudnnGetConvolutionBackwardFilterAlgorithm ( cudnnHandle handle, cudnnTensorDescriptor srcDesc, cudnnTensorDescriptor diffDesc, cudnnConvolutionDescriptor convDesc, cudnnFilterDescriptor gradDesc, cudnnConvolutionBwdFilterPreference preference, ManagedCuda.BasicTypes.SizeT memoryLimitInbytes, cudnnConvolutionBwdFilterAlgo &algo ) : cudnnStatus
cudnnGetConvolutionBackwardFilterWorkspaceSize ( cudnnHandle handle, cudnnTensorDescriptor srcDesc, cudnnTensorDescriptor diffDesc, cudnnConvolutionDescriptor convDesc, cudnnFilterDescriptor gradDesc, cudnnConvolutionBwdFilterAlgo algo, ManagedCuda.BasicTypes.SizeT &sizeInBytes ) : cudnnStatus
cudnnGetConvolutionForwardAlgorithm ( cudnnHandle handle, cudnnTensorDescriptor srcDesc, cudnnFilterDescriptor filterDesc, cudnnConvolutionDescriptor convDesc, cudnnTensorDescriptor destDesc, cudnnConvolutionFwdPreference preference, ManagedCuda.BasicTypes.SizeT memoryLimitInbytes, cudnnConvolutionFwdAlgo &algo ) : cudnnStatus
cudnnGetConvolutionForwardWorkspaceSize ( cudnnHandle handle, cudnnTensorDescriptor srcDesc, cudnnFilterDescriptor filterDesc, cudnnConvolutionDescriptor convDesc, cudnnTensorDescriptor destDesc, cudnnConvolutionFwdAlgo algo, ManagedCuda.BasicTypes.SizeT &sizeInBytes ) : cudnnStatus
cudnnGetConvolutionNdDescriptor ( cudnnConvolutionDescriptor convDesc, int arrayLengthRequested, int &arrayLength, int padA, int strideA, int upscaleA, cudnnConvolutionMode &mode, cudnnDataType &dataType ) : cudnnStatus
cudnnGetConvolutionNdForwardOutputDim ( cudnnConvolutionDescriptor convDesc, cudnnTensorDescriptor inputTensorDesc, cudnnFilterDescriptor filterDesc, int nbDims, int tensorOuputDimA ) : cudnnStatus
cudnnGetErrorStringInternal ( cudnnStatus status ) : IntPtr
cudnnGetFilter4dDescriptor ( cudnnFilterDescriptor filterDesc, cudnnDataType &dataType, cudnnTensorFormat &format, int &k, int &c, int &h, int &w ) : cudnnStatus
cudnnGetFilterNdDescriptor ( cudnnFilterDescriptor filterDesc, int nbDimsRequested, cudnnDataType &dataType, cudnnTensorFormat &format, int &nbDims, int filterDimA ) : cudnnStatus
cudnnGetLRNDescriptor ( cudnnLRNDescriptor normDesc, uint &lrnN, double &lrnAlpha, double &lrnBeta, double &lrnK ) : cudnnStatus
cudnnGetOpTensorDescriptor ( cudnnOpTensorDescriptor opTensorDesc, cudnnOpTensorOp &opTensorOp, cudnnDataType &opTensorCompType, cudnnNanPropagation &opTensorNanOpt ) : cudnnStatus
cudnnGetPooling2dDescriptor ( cudnnPoolingDescriptor poolingDesc, cudnnPoolingMode &mode, cudnnNanPropagation &maxpoolingNanOpt, int &windowHeight, int &windowWidth, int &verticalPadding, int &horizontalPadding, int &verticalStride, int &horizontalStride ) : cudnnStatus
cudnnGetPooling2dForwardOutputDim ( cudnnPoolingDescriptor poolingDesc, cudnnTensorDescriptor inputTensorDesc, int &outN, int &outC, int &outH, int &outW ) : cudnnStatus
cudnnGetPoolingNdDescriptor ( cudnnPoolingDescriptor poolingDesc, int nbDimsRequested, cudnnPoolingMode &mode, cudnnNanPropagation &maxpoolingNanOpt, int &nbDims, int windowDimA, int paddingA, int strideA ) : cudnnStatus
cudnnGetPoolingNdForwardOutputDim ( cudnnPoolingDescriptor poolingDesc, cudnnTensorDescriptor inputTensorDesc, int nbDims, int outputTensorDimA ) : cudnnStatus
cudnnGetRNNLinLayerBiasParams ( cudnnHandle handle, cudnnRNNDescriptor rnnDesc, int layer, cudnnTensorDescriptor xDesc, cudnnFilterDescriptor wDesc, ManagedCuda.BasicTypes.CUdeviceptr w, int linLayerID, cudnnFilterDescriptor linLayerBiasDesc, ManagedCuda.BasicTypes.CUdeviceptr linLayerBias ) : cudnnStatus
cudnnGetRNNLinLayerMatrixParams ( cudnnHandle handle, cudnnRNNDescriptor rnnDesc, int layer, cudnnTensorDescriptor xDesc, cudnnFilterDescriptor wDesc, ManagedCuda.BasicTypes.CUdeviceptr w, int linLayerID, cudnnFilterDescriptor linLayerMatDesc, ManagedCuda.BasicTypes.CUdeviceptr linLayerMat ) : cudnnStatus
cudnnGetRNNParamsSize ( cudnnHandle handle, cudnnRNNDescriptor rnnDesc, cudnnTensorDescriptor xDesc, ManagedCuda.BasicTypes.SizeT &sizeInBytes ) : cudnnStatus
cudnnGetRNNTrainingReserveSize ( cudnnHandle handle, cudnnRNNDescriptor rnnDesc, cudnnTensorDescriptor xDesc, ManagedCuda.BasicTypes.SizeT &sizeInBytes ) : cudnnStatus
cudnnGetRNNWorkspaceSize ( cudnnHandle handle, cudnnRNNDescriptor rnnDesc, cudnnTensorDescriptor xDesc, ManagedCuda.BasicTypes.SizeT &sizeInBytes ) : cudnnStatus
cudnnGetStream ( cudnnHandle handle, ManagedCuda.BasicTypes.CUstream &streamId ) : cudnnStatus
cudnnGetTensor4dDescriptor ( cudnnTensorDescriptor tensorDesc, cudnnDataType &dataType, int &n, int &c, int &h, int &w, int &nStride, int &cStride, int &hStride, int &wStride ) : cudnnStatus
cudnnGetTensorNdDescriptor ( cudnnTensorDescriptor tensorDesc, int nbDimsRequested, cudnnDataType &dataType, int &nbDims, int dimA, int strideA ) : cudnnStatus
cudnnGetVersionInternal ( ) : ManagedCuda.BasicTypes.SizeT
cudnnIm2Col ( cudnnHandle handle, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, cudnnFilterDescriptor filterDesc, cudnnConvolutionDescriptor convDesc, ManagedCuda.BasicTypes.CUdeviceptr colBuffer ) : cudnnStatus
cudnnLRNCrossChannelBackward ( cudnnHandle handle, cudnnLRNDescriptor normDesc, cudnnLRNMode lrnMode, double &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, cudnnTensorDescriptor srcDiffDesc, ManagedCuda.BasicTypes.CUdeviceptr srcDiffData, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData, double &beta, cudnnTensorDescriptor destDiffDesc, ManagedCuda.BasicTypes.CUdeviceptr destDiffData ) : cudnnStatus
cudnnLRNCrossChannelBackward ( cudnnHandle handle, cudnnLRNDescriptor normDesc, cudnnLRNMode lrnMode, float &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, cudnnTensorDescriptor srcDiffDesc, ManagedCuda.BasicTypes.CUdeviceptr srcDiffData, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData, float &beta, cudnnTensorDescriptor destDiffDesc, ManagedCuda.BasicTypes.CUdeviceptr destDiffData ) : cudnnStatus
cudnnLRNCrossChannelForward ( cudnnHandle handle, cudnnLRNDescriptor normDesc, cudnnLRNMode lrnMode, double &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, double &beta, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData ) : cudnnStatus
cudnnLRNCrossChannelForward ( cudnnHandle handle, cudnnLRNDescriptor normDesc, cudnnLRNMode lrnMode, float &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, float &beta, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData ) : cudnnStatus
cudnnOpTensor ( cudnnHandle handle, cudnnOpTensorDescriptor opTensorDesc, double &alpha1, cudnnTensorDescriptor aDesc, ManagedCuda.BasicTypes.CUdeviceptr A, double &alpha2, cudnnTensorDescriptor bDesc, ManagedCuda.BasicTypes.CUdeviceptr B, double &beta, cudnnTensorDescriptor cDesc, ManagedCuda.BasicTypes.CUdeviceptr C ) : cudnnStatus
cudnnOpTensor ( cudnnHandle handle, cudnnOpTensorDescriptor opTensorDesc, float &alpha1, cudnnTensorDescriptor aDesc, ManagedCuda.BasicTypes.CUdeviceptr A, float &alpha2, cudnnTensorDescriptor bDesc, ManagedCuda.BasicTypes.CUdeviceptr B, float &beta, cudnnTensorDescriptor cDesc, ManagedCuda.BasicTypes.CUdeviceptr C ) : cudnnStatus
cudnnPoolingBackward ( cudnnHandle handle, cudnnPoolingDescriptor poolingDesc, double &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, cudnnTensorDescriptor srcDiffDesc, ManagedCuda.BasicTypes.CUdeviceptr srcDiffData, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData, double &beta, cudnnTensorDescriptor destDiffDesc, ManagedCuda.BasicTypes.CUdeviceptr destDiffData ) : cudnnStatus
cudnnPoolingBackward ( cudnnHandle handle, cudnnPoolingDescriptor poolingDesc, float &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, cudnnTensorDescriptor srcDiffDesc, ManagedCuda.BasicTypes.CUdeviceptr srcDiffData, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData, float &beta, cudnnTensorDescriptor destDiffDesc, ManagedCuda.BasicTypes.CUdeviceptr destDiffData ) : cudnnStatus
cudnnPoolingForward ( cudnnHandle handle, cudnnPoolingDescriptor poolingDesc, double &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, double &beta, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData ) : cudnnStatus
cudnnPoolingForward ( cudnnHandle handle, cudnnPoolingDescriptor poolingDesc, float &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, float &beta, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData ) : cudnnStatus
cudnnRNNBackwardData ( cudnnHandle handle, cudnnRNNDescriptor rnnDesc, cudnnTensorDescriptor yDesc, ManagedCuda.BasicTypes.CUdeviceptr y, cudnnTensorDescriptor dyDesc, ManagedCuda.BasicTypes.CUdeviceptr dy, cudnnTensorDescriptor dhyDesc, ManagedCuda.BasicTypes.CUdeviceptr dhy, cudnnTensorDescriptor dcyDesc, ManagedCuda.BasicTypes.CUdeviceptr dcy, cudnnFilterDescriptor wDesc, ManagedCuda.BasicTypes.CUdeviceptr w, cudnnTensorDescriptor hxDesc, ManagedCuda.BasicTypes.CUdeviceptr hx, cudnnTensorDescriptor cxDesc, ManagedCuda.BasicTypes.CUdeviceptr cx, cudnnTensorDescriptor dxDesc, ManagedCuda.BasicTypes.CUdeviceptr dx, cudnnTensorDescriptor dhxDesc, ManagedCuda.BasicTypes.CUdeviceptr dhx, cudnnTensorDescriptor dcxDesc, ManagedCuda.BasicTypes.CUdeviceptr dcx, ManagedCuda.BasicTypes.CUdeviceptr workspace, ManagedCuda.BasicTypes.SizeT workSpaceSizeInBytes, ManagedCuda.BasicTypes.CUdeviceptr reserveSpace, ManagedCuda.BasicTypes.SizeT reserveSpaceSizeInBytes ) : cudnnStatus
cudnnRNNBackwardWeights ( cudnnHandle handle, cudnnRNNDescriptor rnnDesc, cudnnTensorDescriptor xDesc, ManagedCuda.BasicTypes.CUdeviceptr x, cudnnTensorDescriptor hxDesc, ManagedCuda.BasicTypes.CUdeviceptr hx, cudnnTensorDescriptor yDesc, ManagedCuda.BasicTypes.CUdeviceptr y, ManagedCuda.BasicTypes.CUdeviceptr workspace, ManagedCuda.BasicTypes.SizeT workSpaceSizeInBytes, cudnnFilterDescriptor dwDesc, ManagedCuda.BasicTypes.CUdeviceptr dw, ManagedCuda.BasicTypes.CUdeviceptr reserveSpace, ManagedCuda.BasicTypes.SizeT reserveSpaceSizeInBytes ) : cudnnStatus
cudnnRNNForwardInference ( cudnnHandle handle, cudnnRNNDescriptor rnnDesc, cudnnTensorDescriptor xDesc, ManagedCuda.BasicTypes.CUdeviceptr x, cudnnTensorDescriptor hxDesc, ManagedCuda.BasicTypes.CUdeviceptr hx, cudnnTensorDescriptor cxDesc, ManagedCuda.BasicTypes.CUdeviceptr cx, cudnnFilterDescriptor wDesc, ManagedCuda.BasicTypes.CUdeviceptr w, cudnnTensorDescriptor yDesc, ManagedCuda.BasicTypes.CUdeviceptr y, cudnnTensorDescriptor hyDesc, ManagedCuda.BasicTypes.CUdeviceptr hy, cudnnTensorDescriptor cyDesc, ManagedCuda.BasicTypes.CUdeviceptr cy, ManagedCuda.BasicTypes.CUdeviceptr workspace, ManagedCuda.BasicTypes.SizeT workSpaceSizeInBytes ) : cudnnStatus
cudnnRNNForwardTraining ( cudnnHandle handle, cudnnRNNDescriptor rnnDesc, cudnnTensorDescriptor xDesc, ManagedCuda.BasicTypes.CUdeviceptr x, cudnnTensorDescriptor hxDesc, ManagedCuda.BasicTypes.CUdeviceptr hx, cudnnTensorDescriptor cxDesc, ManagedCuda.BasicTypes.CUdeviceptr cx, cudnnFilterDescriptor wDesc, ManagedCuda.BasicTypes.CUdeviceptr w, cudnnTensorDescriptor yDesc, ManagedCuda.BasicTypes.CUdeviceptr y, cudnnTensorDescriptor hyDesc, ManagedCuda.BasicTypes.CUdeviceptr hy, cudnnTensorDescriptor cyDesc, ManagedCuda.BasicTypes.CUdeviceptr cy, ManagedCuda.BasicTypes.CUdeviceptr workspace, ManagedCuda.BasicTypes.SizeT workSpaceSizeInBytes, ManagedCuda.BasicTypes.CUdeviceptr reserveSpace, ManagedCuda.BasicTypes.SizeT reserveSpaceSizeInBytes ) : cudnnStatus
cudnnScaleTensor ( cudnnHandle handle, cudnnTensorDescriptor srcDestDesc, ManagedCuda.BasicTypes.CUdeviceptr srcDestData, double &alpha ) : cudnnStatus
cudnnScaleTensor ( cudnnHandle handle, cudnnTensorDescriptor srcDestDesc, ManagedCuda.BasicTypes.CUdeviceptr srcDestData, float &alpha ) : cudnnStatus
cudnnSetActivationDescriptor ( cudnnActivationDescriptor activationDesc, cudnnActivationMode mode, cudnnNanPropagation reluNanOpt, double reluCeiling ) : cudnnStatus
cudnnSetConvolution2dDescriptor ( cudnnConvolutionDescriptor convDesc, int pad_h, int pad_w, int u, int v, int upscalex, int upscaley, cudnnConvolutionMode mode, cudnnDataType dataType ) : cudnnStatus
cudnnSetConvolutionNdDescriptor ( cudnnConvolutionDescriptor convDesc, int arrayLength, int padA, int filterStrideA, int upscaleA, cudnnConvolutionMode mode, cudnnDataType dataType ) : cudnnStatus
cudnnSetDropoutDescriptor ( cudnnDropoutDescriptor dropoutDesc, cudnnHandle handle, float dropout, ManagedCuda.BasicTypes.CUdeviceptr states, ManagedCuda.BasicTypes.SizeT stateSizeInBytes, ulong seed ) : cudnnStatus
cudnnSetFilter4dDescriptor ( cudnnFilterDescriptor filterDesc, cudnnDataType dataType, cudnnTensorFormat format, int k, int c, int h, int w ) : cudnnStatus
cudnnSetFilterNdDescriptor ( cudnnFilterDescriptor filterDesc, cudnnDataType dataType, cudnnTensorFormat format, int nbDims, int filterDimA ) : cudnnStatus
cudnnSetLRNDescriptor ( cudnnLRNDescriptor normDesc, uint lrnN, double lrnAlpha, double lrnBeta, double lrnK ) : cudnnStatus
cudnnSetOpTensorDescriptor ( cudnnOpTensorDescriptor opTensorDesc, cudnnOpTensorOp opTensorOp, cudnnDataType opTensorCompType, cudnnNanPropagation opTensorNanOpt ) : cudnnStatus
cudnnSetPooling2dDescriptor ( cudnnPoolingDescriptor poolingDesc, cudnnPoolingMode mode, cudnnNanPropagation maxpoolingNanOpt, int windowHeight, int windowWidth, int verticalPadding, int horizontalPadding, int verticalStride, int horizontalStride ) : cudnnStatus
cudnnSetPoolingNdDescriptor ( cudnnPoolingDescriptor poolingDesc, cudnnPoolingMode mode, cudnnNanPropagation maxpoolingNanOpt, int nbDims, int windowDimA, int paddingA, int strideA ) : cudnnStatus
cudnnSetRNNDescriptor ( cudnnRNNDescriptor rnnDesc, int hiddenSize, int seqLength, int numLayers, cudnnDropoutDescriptor dropoutDesc, cudnnRNNInputMode inputMode, cudnnDirectionMode direction, cudnnRNNMode mode, cudnnDataType dataType ) : cudnnStatus
cudnnSetSpatialTransformerNdDescriptor ( cudnnSpatialTransformerDescriptor stDesc, cudnnSamplerType samplerType, cudnnDataType dataType, int nbDims, int dimA ) : cudnnStatus
cudnnSetStream ( cudnnHandle handle, ManagedCuda.BasicTypes.CUstream streamId ) : cudnnStatus
cudnnSetTensor ( cudnnHandle handle, cudnnTensorDescriptor srcDestDesc, ManagedCuda.BasicTypes.CUdeviceptr srcDestData, double &value ) : cudnnStatus
cudnnSetTensor ( cudnnHandle handle, cudnnTensorDescriptor srcDestDesc, ManagedCuda.BasicTypes.CUdeviceptr srcDestData, float &value ) : cudnnStatus
cudnnSetTensor4dDescriptor ( cudnnTensorDescriptor tensorDesc, cudnnTensorFormat format, cudnnDataType dataType, int n, int c, int h, int w ) : cudnnStatus
cudnnSetTensor4dDescriptorEx ( cudnnTensorDescriptor tensorDesc, cudnnDataType dataType, int n, int c, int h, int w, int nStride, int cStride, int hStride, int wStride ) : cudnnStatus
cudnnSetTensorNdDescriptor ( cudnnTensorDescriptor tensorDesc, cudnnDataType dataType, int nbDims, int dimA, int strideA ) : cudnnStatus
cudnnSoftmaxBackward ( cudnnHandle handle, cudnnSoftmaxAlgorithm algorithm, cudnnSoftmaxMode mode, double &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, cudnnTensorDescriptor srcDiffDesc, ManagedCuda.BasicTypes.CUdeviceptr srcDiffData, double &beta, cudnnTensorDescriptor destDiffDesc, ManagedCuda.BasicTypes.CUdeviceptr destDiffData ) : cudnnStatus
cudnnSoftmaxBackward ( cudnnHandle handle, cudnnSoftmaxAlgorithm algorithm, cudnnSoftmaxMode mode, float &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, cudnnTensorDescriptor srcDiffDesc, ManagedCuda.BasicTypes.CUdeviceptr srcDiffData, float &beta, cudnnTensorDescriptor destDiffDesc, ManagedCuda.BasicTypes.CUdeviceptr destDiffData ) : cudnnStatus
cudnnSoftmaxForward ( cudnnHandle handle, cudnnSoftmaxAlgorithm algorithm, cudnnSoftmaxMode mode, double &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, double &beta, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData ) : cudnnStatus
cudnnSoftmaxForward ( cudnnHandle handle, cudnnSoftmaxAlgorithm algorithm, cudnnSoftmaxMode mode, float &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, float &beta, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData ) : cudnnStatus
cudnnSpatialTfGridGeneratorBackward ( cudnnHandle handle, cudnnSpatialTransformerDescriptor stDesc, ManagedCuda.BasicTypes.CUdeviceptr dgrid, ManagedCuda.BasicTypes.CUdeviceptr dtheta ) : cudnnStatus
cudnnSpatialTfGridGeneratorForward ( cudnnHandle handle, cudnnSpatialTransformerDescriptor stDesc, ManagedCuda.BasicTypes.CUdeviceptr theta, ManagedCuda.BasicTypes.CUdeviceptr grid ) : cudnnStatus
cudnnSpatialTfSamplerBackward ( cudnnHandle handle, cudnnSpatialTransformerDescriptor stDesc, double &alpha, cudnnTensorDescriptor xDesc, ManagedCuda.BasicTypes.CUdeviceptr x, double &beta, cudnnTensorDescriptor dxDesc, ManagedCuda.BasicTypes.CUdeviceptr dx, ManagedCuda.BasicTypes.CUdeviceptr alphaDgrid, cudnnTensorDescriptor dyDesc, ManagedCuda.BasicTypes.CUdeviceptr dy, ManagedCuda.BasicTypes.CUdeviceptr grid, ManagedCuda.BasicTypes.CUdeviceptr betaDgrid, ManagedCuda.BasicTypes.CUdeviceptr dgrid ) : cudnnStatus
cudnnSpatialTfSamplerBackward ( cudnnHandle handle, cudnnSpatialTransformerDescriptor stDesc, float &alpha, cudnnTensorDescriptor xDesc, ManagedCuda.BasicTypes.CUdeviceptr x, float &beta, cudnnTensorDescriptor dxDesc, ManagedCuda.BasicTypes.CUdeviceptr dx, ManagedCuda.BasicTypes.CUdeviceptr alphaDgrid, cudnnTensorDescriptor dyDesc, ManagedCuda.BasicTypes.CUdeviceptr dy, ManagedCuda.BasicTypes.CUdeviceptr grid, ManagedCuda.BasicTypes.CUdeviceptr betaDgrid, ManagedCuda.BasicTypes.CUdeviceptr dgrid ) : cudnnStatus
cudnnSpatialTfSamplerForward ( cudnnHandle handle, cudnnSpatialTransformerDescriptor stDesc, double &alpha, cudnnTensorDescriptor xDesc, ManagedCuda.BasicTypes.CUdeviceptr x, ManagedCuda.BasicTypes.CUdeviceptr grid, double &beta, cudnnTensorDescriptor yDesc, ManagedCuda.BasicTypes.CUdeviceptr y ) : cudnnStatus
cudnnSpatialTfSamplerForward ( cudnnHandle handle, cudnnSpatialTransformerDescriptor stDesc, float &alpha, cudnnTensorDescriptor xDesc, ManagedCuda.BasicTypes.CUdeviceptr x, ManagedCuda.BasicTypes.CUdeviceptr grid, float &beta, cudnnTensorDescriptor yDesc, ManagedCuda.BasicTypes.CUdeviceptr y ) : cudnnStatus
cudnnTransformTensor ( cudnnHandle handle, double &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, double &beta, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData ) : cudnnStatus
cudnnTransformTensor ( cudnnHandle handle, float &alpha, cudnnTensorDescriptor srcDesc, ManagedCuda.BasicTypes.CUdeviceptr srcData, float &beta, cudnnTensorDescriptor destDesc, ManagedCuda.BasicTypes.CUdeviceptr destData ) : cudnnStatus

Method Details

cudnnGetErrorString() public static method

This function returns a human-readable character string describing the cudnnStatus enumerate passed as input parameter.
public static cudnnGetErrorString ( cudnnStatus status ) : string
status cudnnStatus
return string

cudnnGetVersion() public static method

This function returns the version number of the cuDNN Library. It returns the CUDNN_VERSION define present in the cudnn.h header file. Starting with release R2, the routine can be used to identify dynamically the current cuDNN Library used by the application. The define CUDNN_VERSION can be used to have the same application linked against different cuDNN versions using conditional compilation statements.
public static cudnnGetVersion ( ) : System.Version
return System.Version