You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am part of a team that uses SuperLU and its parallel variants (SuperLU_Dist and SuperLU_MT) for the linear system solve that is critical to our optimization software.
On occasion the program will exit with a invalid argument passed to cBLAS regardless if its SuperLU’s internal cBLAS or an external one we provide. On Linux the error is:
** On entry to DTRSV parameter number 6 had an illegal value.
This stems from cblas_xerbla.c. On Mac, when Accelerate is used as the substitute BLAS and Lapack libraries the error takes on the form of:
lda must be >= MAX(N,1): lda=3 N=4 BLAS error: Parameter number 7 passed to cblas_dtrsv had an invalid value
It seems SuperLU is not handling a potentially poorly conditioned matrix well. These calls exit our program which is not the way we want to process this error. We really want to continue to use this software and would like to work together to resolve this bug. We can send the matrix being solved when the error occurs if that would help.
The text was updated successfully, but these errors were encountered:
DBunce1027
changed the title
Matrix Solve passing bad arguments to cBLAS DTRSV function causing a program exit
Matrix solve passing bad arguments to cBLAS DTRSV function causing a program exit
Feb 12, 2021
I am part of a team that uses SuperLU and its parallel variants (SuperLU_Dist and SuperLU_MT) for the linear system solve that is critical to our optimization software.
On occasion the program will exit with a invalid argument passed to cBLAS regardless if its SuperLU’s internal cBLAS or an external one we provide. On Linux the error is:
** On entry to DTRSV parameter number 6 had an illegal value.
This stems from cblas_xerbla.c. On Mac, when Accelerate is used as the substitute BLAS and Lapack libraries the error takes on the form of:
lda must be >= MAX(N,1): lda=3 N=4 BLAS error: Parameter number 7 passed to cblas_dtrsv had an invalid value
It seems SuperLU is not handling a potentially poorly conditioned matrix well. These calls exit our program which is not the way we want to process this error. We really want to continue to use this software and would like to work together to resolve this bug. We can send the matrix being solved when the error occurs if that would help.
The text was updated successfully, but these errors were encountered: