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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
Source: caffe
Section: science
Priority: optional
Maintainer: Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org>
Uploaders: Mo Zhou <cdluminate@gmail.com>
Build-Depends-Indep: doxygen,
doxygen-latex
Build-Depends: bc,
cmake,
bash-completion,
debhelper (>=11~),
dh-python,
git,
# libboost-all-dev (>= 1.55) - we merely pull partial boost stack, the really needed part.
libboost-dev,
libboost-filesystem-dev,
libboost-system-dev,
libboost-thread-dev,
libboost-python-dev,
libgflags-dev,
libgoogle-glog-dev,
libhdf5-dev,
libleveldb-dev,
liblmdb-dev,
# switch libblas.so.3 between Atlas and OpenBLAS with update-alternatives
libblas-dev | libblas.so,
libopencv-dev (>= 2.4),
libprotobuf-dev,
libprotoc-dev,
libsnappy-dev,
protobuf-compiler,
# python3 depssome of them are not B-D but we need them as runtime-deps to pass the testsuite
python3-dev,
python3-numpy,
cython3,
ipython3,
python3,
python3-distutils,
python3-skimage,
python3-protobuf,
python3-dateutil,
python3-gflags,
python3-h5py,
python3-leveldb,
python3-matplotlib,
python3-networkx,
python3-nose,
# python3-opencv, # this is recommended if available but it doesn't block
python3-pandas,
python3-pil,
python3-pydotplus,
python3-scipy,
python3-six,
python3-yaml,
Standards-Version: 4.2.0
Homepage: http://caffe.berkeleyvision.org
Vcs-Browser: https://salsa.debian.org/science-team/caffe
Vcs-Git: https://salsa.debian.org/science-team/caffe.git
Package: caffe-cpu
Section: metapackages
Architecture: any
Depends: caffe-tools-cpu (= ${binary:Version}),
python3-caffe-cpu (= ${binary:Version}),
libcaffe-cpu1 (= ${binary:Version}),
${misc:Depends},
Suggests: libcaffe-cpu-dev (= ${binary:Version}),
caffe-doc (= ${binary:Version}),
Conflicts: caffe-cuda
Description: Fast, open framework for Deep Learning (Meta)
Caffe is a deep learning framework made with expression, speed,
and modularity in mind. It is developed by the Berkeley AI Research
Lab (BAIR) and community contributors.
.
This metapackage pulls CPU_ONLY version of caffe:
* caffe-tools-cpu
* libcaffe-cpu*
* python3-caffe-cpu
And suggests these packages:
* libcaffe-cpu-dev
* caffe-doc
.
Note, this CPU_ONLY version cannot co-exist with the CUDA version.
Package: caffe-tools-cpu
Architecture: any
Multi-Arch: foreign
Depends: libcaffe-cpu1 (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
Conflicts: caffe-tools-cuda
Description: Tools for fast, open framework for Deep Learning (CPU_ONLY)
Caffe is a deep learning framework made with expression, speed,
and modularity in mind. It is developed by the Berkeley AI Research
Lab (BAIR) and community contributors.
.
It contains caffe executables, configured as CPU_ONLY.
.
Issue this command at the root of caffe source tree for a unit test:
$ caffe-gtest --gtest_shuffle --gtest_filter="-*GPU*"
Package: libcaffe-cpu1
Section: libs
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends},
libopenblas-base | libatlas3-base | libmkl-rt | libblas.so.3,
Conflicts: libcaffe-cuda1
Description: library of Caffe, deep learning framework (CPU_ONLY)
Caffe is a deep learning framework made with expression, speed,
and modularity in mind. It is developed by the Berkeley AI Research
Lab (BAIR) and community contributors.
.
It contains caffe shared library, configured as CPU_ONLY.
Package: libcaffe-cpu-dev
Section: libdevel
Architecture: any
Multi-Arch: same
Conflicts: libcaffe-cuda-dev
Depends: libcaffe-cpu1 (= ${binary:Version}), ${misc:Depends}
Suggests: caffe-doc
Description: development files for Caffe (CPU_ONLY)
Caffe is a deep learning framework made with expression, speed,
and modularity in mind. It is developed by the Berkeley AI Research
Lab (BAIR) and community contributors.
.
It contains development files of caffe.
Package: python3-caffe-cpu
Section: python
Architecture: any
Multi-Arch: foreign
Depends: libcaffe-cpu1 (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends},
${python3:Depends},
Conflicts: python3-caffe-cuda
Description: Python3 interface of Caffe (CPU_ONLY)
Caffe is a deep learning framework made with expression, speed,
and modularity in mind. It is developed by the Berkeley AI Research
Lab (BAIR) and community contributors.
.
It contains python3 interface of caffe, configured as CPU_ONLY.
Package: caffe-doc
Section: doc
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends},
libjs-mathjax,
libjs-jquery,
libjs-bootstrap,
Description: Caffe's doxygen docs and examples
Caffe is a deep learning framework made with expression, speed,
and modularity in mind. It is developed by the Berkeley AI Research
Lab (BAIR) and community contributors.
.
This package contains doxygen documents (both HTML version and
PDF version) and some other documents and examples.
.
The HTML doc can be found here: /usr/share/doc/caffe-doc/html/index.html
The PDF doc can be found here: /usr/share/doc/caffe-doc/refman.pdf.gz
|