LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_cgttrs()

lapack_int LAPACKE_cgttrs ( int  matrix_layout,
char  trans,
lapack_int  n,
lapack_int  nrhs,
const lapack_complex_float dl,
const lapack_complex_float d,
const lapack_complex_float du,
const lapack_complex_float du2,
const lapack_int ipiv,
lapack_complex_float b,
lapack_int  ldb 
)

Definition at line 35 of file lapacke_cgttrs.c.

43 {
44  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
45  LAPACKE_xerbla( "LAPACKE_cgttrs", -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_cge_nancheck( matrix_layout, n, nrhs, b, ldb ) ) {
52  return -10;
53  }
54  if( LAPACKE_c_nancheck( n, d, 1 ) ) {
55  return -6;
56  }
57  if( LAPACKE_c_nancheck( n-1, dl, 1 ) ) {
58  return -5;
59  }
60  if( LAPACKE_c_nancheck( n-1, du, 1 ) ) {
61  return -7;
62  }
63  if( LAPACKE_c_nancheck( n-2, du2, 1 ) ) {
64  return -8;
65  }
66  }
67 #endif
68  return LAPACKE_cgttrs_work( matrix_layout, trans, n, nrhs, dl, d, du, du2,
69  ipiv, b, ldb );
Here is the call graph for this function:
LAPACKE_c_nancheck
lapack_logical LAPACKE_c_nancheck(lapack_int n, const lapack_complex_float *x, lapack_int incx)
Definition: lapacke_c_nancheck.c:36
LAPACKE_xerbla
void LAPACKE_xerbla(const char *name, lapack_int info)
Definition: lapacke_xerbla.c:36
LAPACKE_cge_nancheck
lapack_logical LAPACKE_cge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_float *a, lapack_int lda)
Definition: lapacke_cge_nancheck.c:36
LAPACKE_cgttrs_work
lapack_int LAPACKE_cgttrs_work(int matrix_layout, char trans, lapack_int n, lapack_int nrhs, const lapack_complex_float *dl, const lapack_complex_float *d, const lapack_complex_float *du, const lapack_complex_float *du2, const lapack_int *ipiv, lapack_complex_float *b, lapack_int ldb)
Definition: lapacke_cgttrs_work.c:35
LAPACKE_get_nancheck
int LAPACKE_get_nancheck()
Definition: lapacke_nancheck.c:42
LAPACK_ROW_MAJOR
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:53
LAPACK_COL_MAJOR
#define LAPACK_COL_MAJOR
Definition: lapacke.h:54