Skip to content

dubzzz/cuda-mathmodule-for-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cuda-mathmodule-for-python

Python module for Linear Algebra computations using CUDA. The module relies on Cython and NumPy/C API.

Converting a NumPy array to a GPU-array:

import numpy as np, mathmodule as mm
numpy_array = np.random.random(5)
gpu_array = mm.PyVector(numpy_array)

And GPU-array to NumPy array:

numpy_array = gpu_array.toNumPy()

About

Python module for Mathematics using CUDA

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published