pycuda 2024.1~dfsg-1build1 source package in Ubuntu

Changelog

pycuda (2024.1~dfsg-1build1) noble; urgency=medium

  * No-change rebuild against libboost-python1.83.0-py312

 -- Steve Langasek <email address hidden>  Sun, 24 Mar 2024 19:48:28 +0000

Upload details

Uploaded by:
Steve Langasek
Uploaded to:
Noble
Original maintainer:
Ubuntu Developers
Architectures:
any all
Section:
python
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
pycuda_2024.1~dfsg.orig.tar.xz 174.9 KiB 799ab587dea03ee4562f0dece1886a43bd36e897a21cc2b233357d4ce2475b3f
pycuda_2024.1~dfsg-1build1.debian.tar.xz 23.0 KiB ddc75a7037b8e9b8e133611fe94c57c8d042b2a17d8c73af19a67368c5af1b60
pycuda_2024.1~dfsg-1build1.dsc 2.6 KiB 8e1404e336534f35514cf59da15bc7cf5816362d8daa5e80459be90875360237

View changes file

Binary packages built by this source

python-pycuda-doc: module to access Nvidia‘s CUDA 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.

python3-pycuda: Python 3 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 Python 3 modules.

python3-pycuda-dbgsym: debug symbols for python3-pycuda