Go to the source code of this file.
◆ LAPACKE_dsytri2()
Definition at line 35 of file lapacke_dsytri2.c.
37{
40 double* work = NULL;
41 double work_query;
44 return -1;
45 }
46#ifndef LAPACK_DISABLE_NAN_CHECK
48
50 return -4;
51 }
52 }
53#endif
54
56 &work_query, lwork );
57 if( info != 0 ) {
58 goto exit_level_0;
59 }
61
62 work = (double*)
64 if( work == NULL ) {
66 goto exit_level_0;
67 }
68
70 lwork );
71
73exit_level_0:
76 }
77 return info;
78}
#define LAPACK_WORK_MEMORY_ERROR
lapack_int LAPACKE_dsytri2_work(int matrix_layout, char uplo, lapack_int n, double *a, lapack_int lda, const lapack_int *ipiv, double *work, lapack_int lwork)
int LAPACKE_get_nancheck(void)
#define LAPACKE_malloc(size)
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)