Page 1 of 1

Looking up the error numbers

Posted: Thu Jul 14, 2016 3:40 pm
by wfchiang
Hello sir,

I got some error messages as follows:

magma_sgetrf_gpu returned error 8: function-specific error, see documentation.

magma_sgetrf_gpu returned error 4: function-specific error, see documentation.

magma_sgetrf_gpu returned error 1: function-specific error, see documentation.

I wonder what do the error numbers mean (8,4 and 1)?
Also, where should I go and check the meaning of the error numbers?

Thanks.
Wei-Fan

Re: Looking up the error numbers

Posted: Fri Jul 15, 2016 12:24 pm
by mgates3
You can find the documentation online.
http://icl.cs.utk.edu/projectsfiles/magma/doxygen/
http://icl.cs.utk.edu/projectsfiles/mag ... 4fec8d2d12

There in the dgetrf_gpu documentation, it states:

[out] info INTEGER
= 0: successful exit
< 0: if INFO = -i, the i-th argument had an illegal value or another error occured, such as memory allocation failed.
> 0: if INFO = i, U(i,i) is exactly zero. The factorization has been completed, but the factor U is exactly singular, and division by zero will occur if it is used to solve a system of equations.

Thus it appears that the matrix is singular.

-mark