LAPACK  3.9.1
LAPACK: Linear Algebra PACKage

◆ LAPACKE_ssysv_aa_2stage()

lapack_int LAPACKE_ssysv_aa_2stage ( int  matrix_layout,
char  uplo,
lapack_int  n,
lapack_int  nrhs,
float *  a,
lapack_int  lda,
float *  tb,
lapack_int  ltb,
lapack_int ipiv,
lapack_int ipiv2,
float *  b,
lapack_int  ldb 
)

Definition at line 35 of file lapacke_ssysv_aa_2stage.c.

39 {
40  lapack_int info = 0;
41  lapack_int lwork = -1;
42  float* work = NULL;
43  float work_query;
44  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
45  LAPACKE_xerbla( "LAPACKE_ssysv_aa_2stage", -1 );
46  return -1;
47  }
48 #ifndef LAPACK_DISABLE_NAN_CHECK
49  if( LAPACKE_get_nancheck() ) {
50  /* Optionally check input matrices for NaNs */
51  if( LAPACKE_ssy_nancheck( matrix_layout, uplo, n, a, lda ) ) {
52  return -5;
53  }
54  if( LAPACKE_sge_nancheck( matrix_layout, 4*n, 1, tb, ltb ) ) {
55  return -7;
56  }
57  if( LAPACKE_sge_nancheck( matrix_layout, n, nrhs, b, ldb ) ) {
58  return -11;
59  }
60  }
61 #endif
62  /* Query optimal working array(s) size */
63  info = LAPACKE_ssysv_aa_2stage_work( matrix_layout, uplo, n, nrhs,
64  a, lda, tb, ltb, ipiv, ipiv2, b,
65  ldb, &work_query, lwork );
66  if( info != 0 ) {
67  goto exit_level_0;
68  }
69  lwork = (lapack_int)work_query;
70  /* Allocate memory for work arrays */
71  work = (float*)
72  LAPACKE_malloc( sizeof(float) * lwork );
73  if( work == NULL ) {
75  goto exit_level_0;
76  }
77  /* Call middle-level interface */
78  info = LAPACKE_ssysv_aa_2stage_work( matrix_layout, uplo, n, nrhs,
79  a, lda, tb, ltb, ipiv, ipiv2, b,
80  ldb, work, lwork );
81  /* Release memory and exit */
82  LAPACKE_free( work );
83 exit_level_0:
84  if( info == LAPACK_WORK_MEMORY_ERROR ) {
85  LAPACKE_xerbla( "LAPACKE_ssysv_aa_2stage", info );
86  }
87  return info;
88 }
#define lapack_int
Definition: lapack.h:83
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:55
#define LAPACK_COL_MAJOR
Definition: lapacke.h:53
#define LAPACKE_free(p)
Definition: lapacke.h:46
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:52
lapack_int LAPACKE_ssysv_aa_2stage_work(int matrix_layout, char uplo, lapack_int n, lapack_int nrhs, float *a, lapack_int lda, float *tb, lapack_int ltb, lapack_int *ipiv, lapack_int *ipiv2, float *b, lapack_int ldb, float *work, lapack_int lwork)
int LAPACKE_get_nancheck(void)
#define LAPACKE_malloc(size)
Definition: lapacke.h:43
void LAPACKE_xerbla(const char *name, lapack_int info)
lapack_logical LAPACKE_sge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const float *a, lapack_int lda)
lapack_logical LAPACKE_ssy_nancheck(int matrix_layout, char uplo, lapack_int n, const float *a, lapack_int lda)
Here is the call graph for this function: