Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What library do you use for matrix calculations on CUDA? [closed]

What library do you use for matrix calculations on CUDA? Or are there any? It seems as if everybody writes this by himself.

For usual processors, I use Eigen. What about GPUs?

like image 840
Ilya Smagin Avatar asked Nov 14 '10 09:11

Ilya Smagin


1 Answers

For dense matrix operations, you could consider CUBLAS (provided with the CUDA Toolkit), Magma and CULAtools.

For sparse matrix operations consider CUSPARSE (provided with the CUDA Toolkit) and CUSP.

like image 186
Tom Avatar answered Sep 22 '22 16:09

Tom