senlinuc / caffe_ocr

主流ocr算法研究实验性的项目,目前实现了CNN+BLSTM+CTC架构
1.26k stars 536 forks source link

DenseBlock_layer.cu(283): error: too many arguments in function call #56

Open billyzju opened 6 years ago

billyzju commented 6 years ago

在Ubuntu 16.04下,cuda, cudnn编译GPU版本,DenseBlock_layer.cpp编译过了,DenseBlock_layer.cu出现以下错误: error

然后,指向DenseBlock_layer.cu的代码行为:

template void DenseBlockLayer::GPU_Initialization(); template void DenseBlockLayer::GPU_Initialization();

yiran-THU commented 6 years ago

我也遇到了上述问题,windows系统,cuda8. 楼主后来解决了吗

nerddd commented 6 years ago

我把cudnn5.1换成了cudnn7.0,解决了这个问题

suntim commented 5 years ago

DenseBlockLayer他给了6个参数,而那里需要4个,需要修改

rpf1019 commented 4 years ago

DenseBlockLayer他给了6个参数,而那里需要4个,需要修改

看了下cudnn.h里面的对应函数,也是给了6个int参数,请问要怎么修改?