MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / cudnnConvolutionForward

Function cudnnConvolutionForward

src/backend/cuda/cudnn.cpp:281–291  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

279}
280
281cudnnStatus_t cudnnConvolutionForward(
282 cudnnHandle_t handle, const void *alpha,
283 const cudnnTensorDescriptor_t xDesc, const void *x,
284 const cudnnFilterDescriptor_t wDesc, const void *w,
285 const cudnnConvolutionDescriptor_t convDesc, cudnnConvolutionFwdAlgo_t algo,
286 void *workSpace, size_t workSpaceSizeInBytes, const void *beta,
287 const cudnnTensorDescriptor_t yDesc, void *y) {
288 return getCudnnPlugin().cudnnConvolutionForward(
289 handle, alpha, xDesc, x, wDesc, w, convDesc, algo, workSpace,
290 workSpaceSizeInBytes, beta, yDesc, y);
291}
292
293cudnnStatus_t cudnnConvolutionBackwardFilter(
294 cudnnHandle_t handle, const void *alpha,

Callers 1

convolve2_cudnnFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected