PyCUDA
PyCUDA
http://mathema.tician.de/software/pycuda
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. It also includes code for interoperability with OpenGL.
- 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.
Documentation
http://documen.tician.de/pycuda
Related Projects
Licensing
| License | Verified by | Verified on | Notes |
|---|---|---|---|
| Other | Kelly Hopkins | 6 April 2010 | |
| Expat | Kelly Hopkins | 6 April 2010 |
Leaders and contributors
| Contact(s) | Role |
|---|---|
|
| Maintainer |
Resources and communication
| Audience | Resource type | URI |
|---|---|---|
| Developer | Download | http://pypi.python.org/pypi/pycuda |
| Developer | Homepage | http://pypi.python.org/pypi/pycuda/0.94rc |
Software prerequisites
This entry (in part or in whole) was last reviewed on 6 April 2010.
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the page “GNU Free Documentation License”.
The copyright and license notices on this page only apply to the text on this page. Any software described in this text has its own copyright notice and license, which can usually be found in the distribution itself.