I need to calculate the determinant of a matrix (array of double) with cuda and I want use the LU decomposition to do this.
I don't find the device function in cusolverSp.h
but only the host function cusolverSpDcsrlsvluHost
.
I look in cuda 7.0 and cuda 7.5.
I don't understand why I can't find it because it is described in the official documentation: http://docs.nvidia.com/cuda/cusolver/index.html#api
Other functions like the Cholesky decomposition on the device works.
Is it implemented? If yes, where can I find it?
Thank you for your help!