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

2

5

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?

Epicurus answered 14/11, 2010 at 9:42 Comment(0)
T
8

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.

Tarantula answered 14/11, 2010 at 12:16 Comment(0)
M
7

What are the problems you're dealing with?
For sparse matrix calculations CUSP is quite a good library.
For dense problems Magma might be a better fit.

Monopteros answered 14/11, 2010 at 9:52 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.