Adding missing cudnnSetConvolutionGroupCount to pointers.json#521
Adding missing cudnnSetConvolutionGroupCount to pointers.json#521arhik wants to merge 2 commits intoJuliaGPU:masterfrom
cudnnSetConvolutionGroupCount to pointers.json#521Conversation
Adding missing `cudnnSetConvolutionGroupCount` function to function pointers lookup table.
|
Why do you need this entry? We only need it to resolve pointer arguments, which this call doesn't have. |
|
We have the wrapper already: CuArrays.jl/src/dnn/libcudnn.jl Lines 388 to 392 in b64c6c0 |
|
Sorry. Function pointer was returning null so I assumed its missing. I didn't realized its declared at other place. Thanks.
I was just following other definitions. I was curious to know the purpose of |
|
Yeah, this stuff isn't documented at all, purely internal for generating wrappers. |
This change is necessary for setting
groupcountincase of depthwise and groupwise convolutions.The original cudnn api is as follows:
cudnnStatus_t cudnnSetConvolutionGroupCount(cudnnConvolutionDescriptor_t convDesc,int groupCount)