]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - jacinto-ai/caffe-jacinto.git/blob - README.md
README
[jacinto-ai/caffe-jacinto.git] / README.md
1 # Caffe
3 Caffe is a deep learning framework made with expression, speed, and modularity in mind.
4 It is developed by the Berkeley Vision and Learning Center ([BVLC](http://bvlc.eecs.berkeley.edu))
5 and community contributors.
7 # NVCaffe
9 NVIDIA Caffe ([NVIDIA Corporation ©2017](http://nvidia.com)) is an NVIDIA-maintained fork
10 of BVLC Caffe tuned for NVIDIA GPUs, particularly in multi-GPU configurations.
11 Here are the major features:
12 * **16 bit (half) floating point train and inference support**.
13 * **Mixed-precision support**. It allows to store and/or compute data in either 
14 64, 32 or 16 bit formats. Precision can be defined for every layer (forward and 
15 backward passes might be different too), or it can be set for the whole Net.
16 * **Integration with  [cuDNN](https://developer.nvidia.com/cudnn) v7**.
17 * **Automatic selection of the best cuDNN convolution algorithm**.
18 * **Integration with v2.2 of [NCCL library](https://github.com/NVIDIA/nccl)**
19  for improved multi-GPU scaling.
20 * **Optimized GPU memory management** for data and parameters storage, I/O buffers 
21 and workspace for convolutional layers.
22 * **Parallel data parser and transformer** for improved I/O performance.
23 * **Parallel back propagation and gradient reduction** on multi-GPU systems.
24 * **Fast solvers implementation with fused CUDA kernels for weights and history update**.
25 * **Multi-GPU test phase** for even memory load across multiple GPUs.
26 * **Backward compatibility with BVLC Caffe and NVCaffe 0.15**.
27 * **Extended set of optimized models** (including 16 bit floating point examples).
30 ## License and Citation
32 Caffe is released under the [BSD 2-Clause license](https://github.com/BVLC/caffe/blob/master/LICENSE).
33 The BVLC reference models are released for unrestricted use.
35 Please cite Caffe in your publications if it helps your research:
37     @article{jia2014caffe,
38       Author = {Jia, Yangqing and Shelhamer, Evan and Donahue, Jeff and Karayev, Sergey and Long, Jonathan and Girshick, Ross and Guadarrama, Sergio and Darrell, Trevor},
39       Journal = {arXiv preprint arXiv:1408.5093},
40       Title = {Caffe: Convolutional Architecture for Fast Feature Embedding},
41       Year = {2014}
42     }
44 ## Useful notes
46 Libturbojpeg library is used since 0.16.5. It has a packaging bug. Please execute the following (required for Makefile, optional for CMake):
47 ```
48 sudo apt-get install libturbojpeg libturbojpeg-dev
49 sudo ln -s /usr/lib/x86_64-linux-gnu/libturbojpeg.so.0.1.0 /usr/lib/x86_64-linux-gnu/libturbojpeg.so
50 ```