Go to the source code of this file.
◆ LAPACKE_dgetsls()
Definition at line 35 of file lapacke_dgetsls.c.
38{
41 double* work = NULL;
42 double work_query;
45 return -1;
46 }
47#ifndef LAPACK_DISABLE_NAN_CHECK
49
51 return -6;
52 }
54 return -8;
55 }
56 }
57#endif
58
60 &work_query, lwork );
61 if( info != 0 ) {
62 goto exit_level_0;
63 }
65
67 if( work == NULL ) {
69 goto exit_level_0;
70 }
71
73 work, lwork );
74
76exit_level_0:
79 }
80 return info;
81}
#define LAPACK_WORK_MEMORY_ERROR
int LAPACKE_get_nancheck(void)
#define LAPACKE_malloc(size)
lapack_int LAPACKE_dgetsls_work(int matrix_layout, char trans, lapack_int m, lapack_int n, lapack_int nrhs, double *a, lapack_int lda, double *b, lapack_int ldb, double *work, lapack_int lwork)
void LAPACKE_xerbla(const char *name, lapack_int info)
lapack_logical LAPACKE_dge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const double *a, lapack_int lda)