依赖库:
必须依赖:
- BLAS 库(libblas, libblas, openblas intel mkl)
可选依赖:
- CUDA Toolkit >= v7.0 to run on nvidia GPUsRequires GPU with support for Compute Capability >= 2.0
- CUDNN to accelerate the GPU computation
- opencv for image augmentation
编译:
windows mingw:
依赖库编译:
blas 库,这里选openblas
- 从源码安装,从下面地址下载源码:
http://xianyi.github.com/OpenBLAS/ - 从源码库安装
git clone https://github.com/xianyi/OpenBLAS.git cd OpenBLAS make -j2 make install PREFIX=your_installation_directory
- 从源码安装,从下面地址下载源码:
编译mxnet
mkdir build
export OpenBLAS_HOME=your_installation_directory
cmake .. -G"MinGW Makefiles"