windows下编译caffe-ssd报错:错误 352 error : too few arguments in function call的解决方案

最近因版本变更,需重新编译caffe,发生了一个之前没见到过的错误,记录下供大家参考
报错信息:错误 352 error : too few arguments in function call的解决方案
双击错误,找到错误的代码位置
windows下编译caffe-ssd报错:错误 352 error : too few arguments in function call的解决方案_第1张图片
查看函数cudnnSetConvolution2dDescriptor函数的定义如下:
windows下编译caffe-ssd报错:错误 352 error : too few arguments in function call的解决方案_第2张图片
对比参数可知, cudnnDataType_t computeType这个参数是缺少的,查看cudnnDataType_t的定义:
windows下编译caffe-ssd报错:错误 352 error : too few arguments in function call的解决方案_第3张图片
因此,只需要添上数字或是相应类型即可。

你可能感兴趣的:(windows,caffe)