blob: 20652b415f062c7d92efe9a1f276fce9042b80e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# Maintainer: Andrew Anderson <aanderso at t c d dot ie>
pkgname=intel-caffe-git
_srcname=intel-caffe
pkgver=1.1.0
pkgrel=1
pkgdesc="IntelĀ® Distribution of Caffe"
arch=('x86_64')
url="https://github.com/intel/caffe"
license=('BSD')
depends=(
'boost-libs' 'protobuf' 'google-glog' 'gflags' 'hdf5'
'python' 'boost' 'cython' 'python-numpy' 'python-scipy'
'python-matplotlib' 'ipython' 'python-networkx' 'python-nose'
'python-pandas' 'python-dateutil' 'python-protobuf' 'python-gflags'
'python-yaml' 'python-pillow' 'python-six' 'python-scikit-image'
'openexr' 'opencv>=4.0.0' 'gtk3' 'openmp'
)
optdepends=('openblas: OpenBLAS for backend linear algebra ops',
'cblas: Use CBLAS for backend linear algebra ops',
'intel-mkl: Use Intel MKL for backend linear algebra ops'
)
makedepends=('cmake')
provides=('caffe')
conflicts=('caffe')
source=("${_srcname}"::"git+https://github.com/intel/caffe.git")
sha256sums=('SKIP')
prepare() {
cd "${_srcname}"
git checkout ${pkgver}
cd -
mkdir -p build
cd build
CMAKE_BUILD_TYPE="Release" \
CMAKE_PARALLEL_LEVEL=`grep processor /proc/cpuinfo | wc -l` \
cmake \
-DCPU_ONLY=ON \
-DBUILD_tools=ON \
-DBUILD_SHARED_LIBS=OFF \
-DBUILD_python=ON \
-DBUILD_matlab=OFF \
-DBUILD_docs=OFF \
-DBUILD_python_layer=ON \
-DUSE_OPENCV=ON \
-DUSE_LEVELDB=OFF \
-DUSE_LMDB=OFF \
-DUSE_HDF5=ON \
-DALLOW_LMDB_NOLOCK=OFF \
-DUSE_OPENMP=ON \
-D python_version=3 \
-DCMAKE_INSTALL_PREFIX:PATH=${pkgdir}/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
../"${_srcname}"
}
build() {
cd build
make -j`grep processor /proc/cpuinfo | wc -l` clean caffe caffeproto pycaffe python upgrade_net_proto_text upgrade_net_proto_binary
cp ${srcdir}/${_srcname}/LICENSE .
}
package() {
cd build
make install
install -m644 LICENSE ${pkgdir}/usr/share/Caffe
}
|