Go to the source code of this file.
◆ LAPACKE_dsytrs_aa()
Definition at line 35 of file lapacke_dsytrs_aa.c.
38{
41 double* work = NULL;
42 double work_query;
45 return -1;
46 }
47#ifndef LAPACK_DISABLE_NAN_CHECK
49
51 return -5;
52 }
54 return -8;
55 }
56 }
57#endif
58
60 ldb, &work_query, lwork );
61 if( info != 0 ) {
62 goto exit_level_0;
63 }
65
66 work = (double*)
68 if( work == NULL ) {
70 goto exit_level_0;
71 }
72
74 ldb, work, lwork );
75
77exit_level_0:
80 }
81 return info;
82}
#define LAPACK_WORK_MEMORY_ERROR
int LAPACKE_get_nancheck(void)
#define LAPACKE_malloc(size)
lapack_int LAPACKE_dsytrs_aa_work(int matrix_layout, char uplo, lapack_int n, lapack_int nrhs, const double *a, lapack_int lda, const lapack_int *ipiv, double *b, lapack_int ldb, double *work, lapack_int lwork)
void LAPACKE_xerbla(const char *name, lapack_int info)
lapack_logical LAPACKE_dsy_nancheck(int matrix_layout, char uplo, lapack_int n, const double *a, lapack_int lda)
lapack_logical LAPACKE_dge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const double *a, lapack_int lda)