Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
111 views

I am trying to convert an Eigen Sparse Matrix of size NxN to CuSparse matrix so that I can use CUDA to solver the matrix Ax=B. Came across this thread which is pretty old (Convert Eigen::SparseMatrix ...
pk68's user avatar
  • 83
0 votes
1 answer
219 views

I want to call the sparse matrix multiplication function in cuSPARSE library inside the kernel instead of directly calling it at the host side. I write a __device__ function to implement it.My CUDA is ...
ben286's user avatar
  • 1
0 votes
1 answer
377 views

I want to test the cusparseScsr2csc which is a function used to convert a csr format matrix to a csc format matrix (or just say transpose a csr format matrix), so I write the code below to test it. ...
yys_c's user avatar
  • 55
0 votes
1 answer
278 views

I am updating my CUDA code with sparse matrix multiplication(SPMV). I found the HYB or ELL format sparse matrix related functions in cuSparse 11 are removed. But for my practical problem, HYB format ...
Wei Zhang's user avatar
  • 325
0 votes
1 answer
84 views

cusparse<t>axpyi and cusparse<t>doti are function names in cuSPARSE, the CUDA sparse matrix library. The naming conventions section explains <t> denotes data types, and axpyi, ...
Jing Zhao's user avatar
  • 2,692
0 votes
1 answer
788 views

I have a sparse matrix in cuSparse and I want to extract the diagonal. I can't seem to find a way to do it other than converting it back to CPU memory into Eigen SparseMatrix and use the .diagonal ...
user3667089's user avatar
  • 3,408