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
|
Source: pycuda
Section: contrib/python
Priority: optional
Maintainer: Tomasz Rybak <tomasz.rybak@post.pl>
Build-Depends: debhelper (>= 9),
python-all-dev,
python-setuptools,
libcuda1-dev | libcuda1 | nvidia-current,
nvidia-cuda-toolkit,
libboost-python-dev,
libboost-thread-dev,
mesa-common-dev,
python-numpy (>= 1:1.4.1-4~),
python-sphinx (>= 1.0.7+dfsg),
python-pytools (>= 2011.5)
Standards-Version: 3.9.3
X-Python-Version: >= 2.5
Homepage: http://mathema.tician.de/software/pycuda
Vcs-Git: git://git.debian.org/git/collab-maint/python-pycuda.git
Vcs-Browser: http://git.debian.org/?p=collab-maint/python-pycuda.git
Package: python-pycuda-headers
Architecture: all
Depends: ${misc:Depends}
Recommends: python-pycuda-doc,
python-pycuda,
python3-pycuda
Replaces: python-pycuda (<< 2011.2.2+git20120523-1)
Breaks: python-pycuda (<< ${source:Version}),
python3-pycuda (<< ${source:Version})
Description: headers for Python module to access Nvidia‘s CUDA parallel computation API
PyCUDA lets you access Nvidia‘s CUDA parallel computation API from Python.
Several wrappers of the CUDA API already exist–so what’s so special about
PyCUDA?
* Object cleanup tied to lifetime of objects. This idiom, often called
RAII in C++, makes it much easier to write correct, leak- and crash-free
code. PyCUDA knows about dependencies, too, so (for example) it won’t
detach from a context before all memory allocated in it is also freed.
* Convenience. Abstractions like pycuda.driver.SourceModule and
pycuda.gpuarray.GPUArray make CUDA programming even more convenient than
with Nvidia’s C-based runtime.
* Completeness. PyCUDA puts the full power of CUDA’s driver API at your
disposal, if you wish.
* Automatic Error Checking. All CUDA errors are automatically translated
into Python exceptions.
* Speed. PyCUDA’s base layer is written in C++, so all the niceties
above are virtually free.
* Helpful Documentation.
.
This package contains header files used by PyOpenCL modules.
Package: python-pycuda
Architecture: amd64 i386
Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends},
nvidia-cuda-toolkit,
python-numpy,
python-pytools (>= 2011.5),
python-pycuda-headers (= ${source:Version})
Recommends: python-pycuda-doc,
python-mako
Suggests: python-pytest,
python-opengl,
python-matplotlib
Description: Python module to access Nvidia‘s CUDA parallel computation API
PyCUDA lets you access Nvidia‘s CUDA parallel computation API from Python.
Several wrappers of the CUDA API already exist–so what’s so special about
PyCUDA?
* Object cleanup tied to lifetime of objects. This idiom, often called
RAII in C++, makes it much easier to write correct, leak- and crash-free
code. PyCUDA knows about dependencies, too, so (for example) it won’t
detach from a context before all memory allocated in it is also freed.
* Convenience. Abstractions like pycuda.driver.SourceModule and
pycuda.gpuarray.GPUArray make CUDA programming even more convenient than
with Nvidia’s C-based runtime.
* Completeness. PyCUDA puts the full power of CUDA’s driver API at your
disposal, if you wish.
* Automatic Error Checking. All CUDA errors are automatically translated
into Python exceptions.
* Speed. PyCUDA’s base layer is written in C++, so all the niceties
above are virtually free.
* Helpful Documentation.
Package: python-pycuda-doc
Section: contrib/doc
Architecture: all
Depends: ${sphinxdoc:Depends},
${misc:Depends}
Recommends: python-pycuda,
nvidia-cuda-doc
Description: module to access Nvidia‘s CUDA parallel computation API (documentation)
PyCUDA lets you access Nvidia‘s CUDA parallel computation API from Python.
Several wrappers of the CUDA API already exist–so what’s so special about
PyCUDA?
* Object cleanup tied to lifetime of objects. This idiom, often called
RAII in C++, makes it much easier to write correct, leak- and crash-free
code. PyCUDA knows about dependencies, too, so (for example) it won’t
detach from a context before all memory allocated in it is also freed.
* Convenience. Abstractions like pycuda.driver.SourceModule and
pycuda.gpuarray.GPUArray make CUDA programming even more convenient than
with Nvidia’s C-based runtime.
* Completeness. PyCUDA puts the full power of CUDA’s driver API at your
disposal, if you wish.
* Automatic Error Checking. All CUDA errors are automatically translated
into Python exceptions.
* Speed. PyCUDA’s base layer is written in C++, so all the niceties
above are virtually free.
* Helpful Documentation.
.
This package contains HTML documentation and example scripts.
|