File: info.py

package info (click to toggle)
python-scikit-cuda 0.5.3-2
  • links: PTS, VCS
  • area: contrib
  • in suites: sid
  • size: 1,516 kB
  • sloc: python: 18,940; ansic: 459; makefile: 95; sh: 9
file content (36 lines) | stat: -rw-r--r-- 1,403 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/env python

"""
scikit-cuda
===========
scikit-cuda provides Python interfaces to many of the functions
in the CUDA device/runtime, CUBLAS, CUFFT, and CUSOLVER
libraries distributed as part of NVIDIA's CUDA Programming Toolkit
[1]_, as well as interfaces to select functions in the free and standard
versions of the CULA Dense Toolkit [2]_. Both low-level wrapper functions
similar to their C counterparts and high-level functions comparable to those in
NumPy and Scipy [3]_ are provided

High-level modules
------------------
- autoinit       Automatic GPU library initialization module.
- fft            Fast Fourier Transform functions.
- integrate      Numerical integration functions.
- linalg         Linear algebra functions.
- rlinalg        Randomized linear algebra functions.
- misc           Miscellaneous support functions.
- special        Special math functions.

Low-level modules
-----------------
- cublas         Function wrappers for the CUBLAS library.
- cufft          Function wrappers for the CUFFT library.
- cuda           Function wrappers for the CUDA device/runtime libraries.
- cula           Function wrappers for the CULA library.
- cusolver       Function wrappers for the CUSOLVER library.
- pcula          Function wrappers for the multi-GPU CULA library.

.. [1] http://www.nvidia.com/cuda
.. [2] http://www.culatools.com/
.. [5] http://www.scipy.org/
"""