diff options
author | Tea <tea.desouza@gmail.com> | 2015-06-27 11:44:56 +0800 |
---|---|---|
committer | Tea <tea.desouza@gmail.com> | 2015-09-17 15:08:29 +0800 |
commit | f3a933a620b8b089a7fe29ba76ec27f5408ff68d (patch) | |
tree | 6c33b48d78564bdc0721dc31d1ccb915be888571 /docs | |
parent | 71e05876f644a08af4cb1c955d01c5a272539e96 (diff) | |
download | caffeonacl-f3a933a620b8b089a7fe29ba76ec27f5408ff68d.tar.gz caffeonacl-f3a933a620b8b089a7fe29ba76ec27f5408ff68d.tar.bz2 caffeonacl-f3a933a620b8b089a7fe29ba76ec27f5408ff68d.zip |
Separate IO dependencies
OpenCV, LMDB, LevelDB and Snappy are made optional via switches
(USE_OPENCV, USE_LMDB, USE_LEVELDB) available for Make and CMake
builds. Since Snappy is a LevelDB dependency, its use is determined by
USE_LEVELDB. HDF5 is left bundled because it is used for serializing
weights and solverstates.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/installation.md | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/installation.md b/docs/installation.md index d535c6d0..89a8c71c 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -17,16 +17,19 @@ When updating Caffe, it's best to `make clean` before re-compiling. ## Prerequisites -Caffe has several dependencies. +Caffe has several dependencies: * [CUDA](https://developer.nvidia.com/cuda-zone) is required for GPU mode. * library version 7.0 and the latest driver version are recommended, but 6.* is fine too * 5.5, and 5.0 are compatible but considered legacy * [BLAS](http://en.wikipedia.org/wiki/Basic_Linear_Algebra_Subprograms) via ATLAS, MKL, or OpenBLAS. * [Boost](http://www.boost.org/) >= 1.55 +* `protobuf`, `glog`, `gflags`, `hdf5` + +Optional dependencies: + * [OpenCV](http://opencv.org/) >= 2.4 including 3.0 -* `protobuf`, `glog`, `gflags` -* IO libraries `hdf5`, `leveldb`, `snappy`, `lmdb` +* IO libraries: `lmdb`, `leveldb` (note: leveldb requires `snappy`) Pycaffe and Matcaffe interfaces have their own natural needs. |