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
|
Source: theano
Section: science
Priority: optional
Maintainer: Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org>
Uploaders: Rebecca N. Palmer <rebecca_palmer@zoho.com>
Build-Depends:
#for the build proper
debhelper-compat (= 13),
dh-python,
cython3,
#runtime dependencies - needed for the test suite and for the documentation build
# No python3-pygpu etc because some GPU tests are known to fail under OpenCL
python3-dev,
python3-setuptools,
python3-six,
libblas-dev,
python3-numpy,
python3-scipy,
python3-nose,
python3-parameterized,
python3-pydot,
python3-sympy <!nocheck>,
graphviz,
#for README.html build
python3-docutils,
#for building Javascript dependencies (of d3viz)
node-browserify-lite,
uglifyjs.terser,
node-pegjs,
node-graphlibrary,
node-dagre-d3-renderer,
node-lodash,
node-istanbul,
mocha,
chai,
libjs-d3
Build-Depends-Indep:
#for the documentation build
dh-sequence-sphinxdoc,
python3-sphinx,
python3-sphinx-rtd-theme,
python3-pygments,
dvipng,
texlive-latex-extra,
texlive-fonts-recommended,
latexmk,
rdfind,
symlinks,
jupyter-nbconvert,
python3-ipykernel,
Rules-Requires-Root: no
Standards-Version: 4.5.1
Homepage: http://www.deeplearning.net/software/theano/
Vcs-Git: https://salsa.debian.org/science-team/theano.git
Vcs-Browser: https://salsa.debian.org/science-team/theano
# nvidia-cuda-toolkit should be at least Recommends, but it's in Suggests here to
# keep the package in main.
Package: python3-theano
Architecture: any
Section: python
Depends:
${python3:Depends},
python3-dev,
libblas-dev | libblas.so,
${misc:Depends}
Recommends:
g++,
python3-pydot,
python3-nose,
python3-parameterized,
python3-pkg-resources,
python3-pygpu,
libgpuarray-dev,
cython3,
graphviz
Suggests:
nvidia-cuda-toolkit,
python3-pycuda,
theano-doc
Breaks: python3-lasagne (<< 0.1+git20180322.37ca134)
Built-Using: ${javascriptBU}
Description: CPU/GPU math expression compiler for Python 3
Theano is a Python library that allows one to define and evaluate mathematical
expressions involving multi-dimensional arrays efficiently. It provides a
high-level Numpy like expression language for functional description of
calculation, rearranges expressions for speed and stability, and generates
native machine instructions for fast calculation. Optionally, highly
accelerated computations could be carried out on graphics cards processors.
.
This package contains Theano for Python 3.
Package: theano-doc
Architecture: all
Section: doc
Depends:
${sphinxdoc:Depends},
${misc:Depends}
Suggests:
python3-theano
Built-Using: ${javascriptBU}
Description: CPU/GPU math expression compiler for Python (docs)
Theano is a Python library that allows one to define and evaluate mathematical
expressions involving multi-dimensional arrays efficiently. It provides a
high-level Numpy like expression language for functional description of
calculation, rearranges expressions for speed and stability, and generates
native machine instructions for fast calculation. Optionally, highly
accelerated computations could be carried out on graphics cards processors.
.
This package contains the documentation for Theano.
|