summarylogtreecommitdiffstats
path: root/PKGBUILD
AgeCommit message (Collapse)Author
2017-08-09Updated to version 0.8.1Daniel Bermond
This version adds support for the newly released cudnn 7.0.
2017-08-06Updated to version 0.8.0Daniel Bermond
Note about cudnn: Caffe2 currently does not compile with the newly released cudnn 7.0. It currently requires cudnn < 7.0 and builds fine with cudnn 6.0.21. https://github.com/caffe2/caffe2/issues/1025
2017-07-20Fix build flags to work with gcc5Daniel Bermond
2017-07-20Cosmetic changingsDaniel Bermond
2017-07-16PIE static libraries rebuild (new gcc build flags)Daniel Bermond
2017-06-15Added nnpack supportDaniel Bermond
2017-06-15Use the exact expected third party component versionDaniel Bermond
caffe2 uses sources from many third party components during the building process. It's better to use the same third party versions that were used by upstream caffe2 developers at time of a given caffe2 stable release. This can avoid compile errors and reduce compile warnings. These versions are given by third party git commit hashes that can be found on the caffe2 git repository. The exact expected third party version (git commits hashes) at the time of a given caffe2 stable release can be obtained by: - cloning caffe2 git repository - 'git checkout <caffe2 stable release commit hash>' - 'git submodule status' to show the needed commits - use 'git diff' to get previous git commit hashes of submodules marked with a '+' (modified hashes/versions). Some third party git commit hashes coincides with a corresponding stable release. In this case we do not need to use git sources since the '.tar.gz' file of the third party stable release is the same snapshot of the given git commit hash.
2017-06-15Cosmetic changingsDaniel Bermond
2017-06-15Removed opencv from buildDaniel Bermond
Compiling with opencv currently is giving linking errors with libtbb.so (intel-tbb, enabled in opencv). Temporarily disabled opencv until it can be fixed.
2017-05-20protobuf 3.3.1 rebuildDaniel Bermond
2017-05-20Changed pthreadpool version from 0.1 to git masterDaniel Bermond
Version 0.1 is a pre-release from august/2015. Since pthreadpool is a nnpack dependency and nnpack has only a git master version (no releases yet), using pthreadpool git master can avoid possible problems in nnpack.
2017-05-20depends: moved cudnn to 'binary repositories' sectionDaniel Bermond
cudnn has been moved from AUR to [community].
2017-05-01Strictly added gcc5 to makedepends and cuda to dependsDaniel Bermond
cudnn already pulls cuda. The current version of cuda (8.0) already pulls gcc5. But strictly adding them the dependencies can avoid some problems in the future.
2017-05-01depends: added python2-gflags and python2-glogDaniel Bermond
2017-04-29Initial commitDaniel Bermond