LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_dgbbrd ( int  matrix_layout,
char  vect,
lapack_int  m,
lapack_int  n,
lapack_int  ncc,
lapack_int  kl,
lapack_int  ku,
double *  ab,
lapack_int  ldab,
double *  d,
double *  e,
double *  q,
lapack_int  ldq,
double *  pt,
lapack_int  ldpt,
double *  c,
lapack_int  ldc 
)

Definition at line 36 of file lapacke_dgbbrd.c.

42 {
43  lapack_int info = 0;
44  double* work = NULL;
45  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
46  LAPACKE_xerbla( "LAPACKE_dgbbrd", -1 );
47  return -1;
48  }
49 #ifndef LAPACK_DISABLE_NAN_CHECK
50  /* Optionally check input matrices for NaNs */
51  if( LAPACKE_dgb_nancheck( matrix_layout, m, n, kl, ku, ab, ldab ) ) {
52  return -8;
53  }
54  if( ncc != 0 ) {
55  if( LAPACKE_dge_nancheck( matrix_layout, m, ncc, c, ldc ) ) {
56  return -16;
57  }
58  }
59 #endif
60  /* Allocate memory for working array(s) */
61  work = (double*)LAPACKE_malloc( sizeof(double) * MAX(1,2*MAX(m,n)) );
62  if( work == NULL ) {
64  goto exit_level_0;
65  }
66  /* Call middle-level interface */
67  info = LAPACKE_dgbbrd_work( matrix_layout, vect, m, n, ncc, kl, ku, ab, ldab,
68  d, e, q, ldq, pt, ldpt, c, ldc, work );
69  /* Release memory and exit */
70  LAPACKE_free( work );
71 exit_level_0:
72  if( info == LAPACK_WORK_MEMORY_ERROR ) {
73  LAPACKE_xerbla( "LAPACKE_dgbbrd", info );
74  }
75  return info;
76 }
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:119
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:122
#define MAX(x, y)
Definition: lapacke_utils.h:47
lapack_logical LAPACKE_dge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const double *a, lapack_int lda)
#define LAPACKE_free(p)
Definition: lapacke.h:113
#define LAPACKE_malloc(size)
Definition: lapacke.h:110
lapack_logical LAPACKE_dgb_nancheck(int matrix_layout, lapack_int m, lapack_int n, lapack_int kl, lapack_int ku, const double *ab, lapack_int ldab)
lapack_int LAPACKE_dgbbrd_work(int matrix_layout, char vect, lapack_int m, lapack_int n, lapack_int ncc, lapack_int kl, lapack_int ku, double *ab, lapack_int ldab, double *d, double *e, double *q, lapack_int ldq, double *pt, lapack_int ldpt, double *c, lapack_int ldc, double *work)
#define LAPACK_COL_MAJOR
Definition: lapacke.h:120
void LAPACKE_xerbla(const char *name, lapack_int info)
#define lapack_int
Definition: lapacke.h:47

Here is the call graph for this function: