I can't build the project because of some bugs
- Dominant language
- C++
- Stars
- 16
- Forks
- 3
- PR merge metrics
- No merged PRs in 30d
Description
I installed CUDA 7.5 & cuDNN 5.1 in my Windows 7 x64.
And I have added the include files into the project.
But this project still can't run.
This is the problem :
In `cuDNN.hpp ` , 123 raws have a fuction
```
cudnnSetPooling2dDescriptor(*pool_desc, *mode,h, w,
pad_h, pad_w, stride_h, stride_w)
```
, but this function defination is
```
cudnnSetPooling2dDescriptor( cudnnPoolingDescriptor_t poolingDesc, cudnnPoolingMode_t mode, cudnnNanPropagation_t maxpoolingNanOpt, int windowHeight, int windowWidth, int verticalPadding, int horizontalPadding, int verticalStride, int horizontalStride );
```
, and this problem leads to a bug:
310 error : argument of type "int" is incompatible with parameter of type "cudnnNanPropagation_t".
Contributor guide
No contributing guide indexed for this repository
Research direction
Start at cuDNN.hpp line 123 and compare the call with the cuDNN 5.1 declaration shown in the report. Reproduce compiler error 310 in the Windows build, then verify that the corrected call compiles successfully with the stated CUDA and cuDNN versions.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- cpp
- Domain
- machine-learning
- Issue type
- Bug
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100