今天有一次完整使用VS来编译windows caffe,有一个网站,已经编译好了windows版本的caffe,同时还提供了第三方的链接库。
https://github.com/happynear/caffe-windows ,这个网站里面,只需要按照里面要求的,如果不使用GPU,一定要把项目配置文件里的两项改为false:
If you don't have CUDA installed, you can experiment with CPU_ONLY build. In .\windows\CommonSettings.props
set CpuOnlyBuild
to true
and set UseCuDNN
& UseNCCL
to false
.
这样,便可以完成编译,速度很快。如果加入了gpu,编译速度会慢一些,需要等15-20分钟左右。