Go to the source code of this file.
◆ LAPACKE_ssytri2()
Definition at line 35 of file lapacke_ssytri2.c.
37{
40 float* work = NULL;
41 float 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 = (float*)
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
int LAPACKE_get_nancheck(void)
#define LAPACKE_malloc(size)
lapack_int LAPACKE_ssytri2_work(int matrix_layout, char uplo, lapack_int n, float *a, lapack_int lda, const lapack_int *ipiv, float *work, lapack_int lwork)
void LAPACKE_xerbla(const char *name, lapack_int info)
lapack_logical LAPACKE_ssy_nancheck(int matrix_layout, char uplo, lapack_int n, const float *a, lapack_int lda)