标签:
经过朋友指导,终于成功在windows7上成功编译了caffe,这里将编译过程记录
visual studio 2013安装包下载
CUDA7.5
windows版本caffe
接下来,依次:安装visual studio 2013->安装cuda 7.5->编译caffe
具体安装方法见: 安装visual studio 2013
安装方法与theano安装(二)windows安装visual studio 2010及cuda中的cuda安装方法一致,只不过是版本号不同而已
这里注意一个问题,cuda6.5之前的cuda版本,自带的D:\Program Files\NVIDIA Corporation\CUDA samples\v7.5\bin\win64\Debug中包含了可运行的exe程序,可用来测试,但cuda7.5却没有,需要自己编译,具体编译cuda方法可以参考相关博客
这里假设caffe-windows被解压到了如下的文件夹中
将该文件夹(即.\windows)下的CommonSettings.props.example文件复制一份儿,并将复制的文件命名为CommonSettings.props
-
<PropertyGroup Label="UserMacros">
<BuildDir>$(SolutionDir)..\Build</BuildDir>
<!--NOTE: CpuOnlyBuild and UseCuDNN flags can‘t be set at the same time.-->
<CpuOnlyBuild>false</CpuOnlyBuild>
<UseCuDNN>true</UseCuDNN>
<CudaVersion>7.5</CudaVersion>
<!-- NOTE: If Python support is enabled, PythonDir (below) needs to be
set to the root of your Python installation. If your Python installation
does not contain debug libraries, debug build will not work. -->
<PythonSupport>false</PythonSupport>
<!-- NOTE: If Matlab support is enabled, MatlabDir (below) needs to be
set to the root of your Matlab installation. -->
<MatlabSupport>false</MatlabSupport>
<CudaDependencies></CudaDependencies>
<!-- Set CUDA architecture suitable for your GPU.
Setting proper architecture is important to mimize your run and compile time. -->
<CudaArchitecture>compute_35,sm_35;compute_52,sm_52</CudaArchitecture>
<!-- CuDNN 3 and 4 are supported -->
<CuDnnPath></CuDnnPath>
<ScriptsDir>$(SolutionDir)\scripts</ScriptsDir>
</PropertyGroup>
利用VS2013打开名称为Caffe的解决方案
需要首先编译libcaffe项目(其他的项目依赖于libcaffe项目),具体地:右键libcaffe,选择生成,开始编译libcaffe
经过一段时间等待后,编译成功
这里有两个需要注意的地方:
(1)编译过程中,可能会出现错误,错误的原因是编译过程中出现了警告,而导致编译无法进行,此时,需要进行如下修改:
即:设置项目属性,不要将警告视为错误
右键->项目属性->C/C++->常规->将警告视为错误 设为否
(2)caffe编译过程中,需要一些依赖包,在有网络的情况下,当编译第一个项目libcaffe时,程序会自动从网路下载这些依赖包,下载到与caffe-windows文件夹同级的NugetPackages文件夹中,下图所示即为程序自动下载的依赖包
但在没有网络情况下,需要事先将这些依赖包下载好,并将它们的路径在vs的管理NuGet程序包中进行设置:工具->选项->NuGet Package Manager->程序包源->利用右侧的加号添加本地的package
手动添加这些package地址后,还需要手动对这些NuGet Package进行安装
同样,在caffe项目处右键生成
编译完libcaffe和caffe两个项目后,再依次编译其他项目,同样的方法
为了测试编译好的caffe能否正常使用,需要进行测试,主要利用mnist数据集进行分类问题的测试
(1)下载测试数据集
(2)修改配置文件
进入文件夹D:\software\caffe-vs\caffe-windows\examples\mnist
,即examples路径下的mnist文件夹
① 打开lenet_solver.prototxt
设置网络配置文件路径,这里使用了绝对路径,相对路径还没有尝试
② 打开lenet_train_test.prototxt
(3)运行caffe程序,具体地
① 打开cmd命令行,cd到caffe-windows的.\Build\x64\Debug
路径下,在该路径下,可以直接执行caffe.exe
D:\software\caffe-vs\caffe-windows\Build\x64\Debug
或者,为了方便,可以将caffe的路径添加到环境变量Path中,这样,cmd就可以直接识别caffe命令了
② 运行caffe
caffe train -solver lenet_solver.prototxt
注意,因为上一步已经将D:\software\caffe-vs\caffe-windows\Build\x64\Debug
路径添加到环境变量PATH中了,所以,这里可以直接使用caffe.exe
下面两步主要配置cuDnn、python和matlab,具体配置时,应该在4.5之前进行
从nVidia官网下载cuDNN v3或者是cuDNN v4,注意,需要注册才能下载
下载后解压缩,如下图所示
配置cuDNN的路径,有两种方案:
D:\software\caffe-vs\cuda-cuDNN
中,那么,在CommonSettings.props中,令<CuDnnPath>D:\software\caffe-vs\cuda-cuDNN\</CuDnnPath>
并且,令CommonSettings.props文件中的UseCuDNN如下:<UseCuDNN>ture</UseCuDNN>
之前已经安装好了python了,具体方法参考 theano安装(一)windows配置安装theano环境(非GPU版)
注:是借助于AnaConda安装的
利用pip工具安装protobuf:pip install protobuf
在文件中做两处更改:
(1)<PythonSupport>true</PythonSupport>
(2)PythonDir更改为python的安装目录,这里的python是利用Anaconda安装的,安装路径位于D:\File Program\Anaconda\
,该目录下含有python.exe
<PropertyGroup Condition="‘$(PythonSupport)‘==‘true‘">
<PythonDir>D:\File Program\Anaconda\</PythonDir>
<LibraryPath>$(PythonDir)\libs;$(LibraryPath)</LibraryPath>
<IncludePath>$(PythonDir)\include;$(IncludePath)</IncludePath>
</PropertyGroup>
这里主要涉及修改CommonSettings.props文件中两个地方
<MatlabSupport>true</MatlabSupport>
<PropertyGroup Condition="‘$(MatlabSupport)‘==‘true‘">
<MatlabDir>D:\File Program\Matlab\</MatlabDir>
<LibraryPath>$(MatlabDir)\extern\lib\win64\microsoft;$(LibraryPath)</LibraryPath>
<IncludePath>$(MatlabDir)\extern\include;$(IncludePath)</IncludePath>
</PropertyGroup>
After you have built solution with Matlab support, in order to use it you have to:
add the generated matcaffe folder to Matlab search path, and
add <caffe_root>\Build\x64\Release to your system path.
注:发现一篇写的比较好的博客
http://m.blog.csdn.net/article/details?id=50819464
windows7+visual studio 2013+CUDA7.5 编译caffe
标签:
原文地址:http://blog.csdn.net/tina_ttl/article/details/51722983