LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_zbdsqr ( int  matrix_layout,
char  uplo,
lapack_int  n,
lapack_int  ncvt,
lapack_int  nru,
lapack_int  ncc,
double *  d,
double *  e,
lapack_complex_double vt,
lapack_int  ldvt,
lapack_complex_double u,
lapack_int  ldu,
lapack_complex_double c,
lapack_int  ldc 
)

Definition at line 36 of file lapacke_zbdsqr.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_zbdsqr", -1 );
47  return -1;
48  }
49 #ifndef LAPACK_DISABLE_NAN_CHECK
50  /* Optionally check input matrices for NaNs */
51  if( ncc != 0 ) {
52  if( LAPACKE_zge_nancheck( matrix_layout, n, ncc, c, ldc ) ) {
53  return -13;
54  }
55  }
56  if( LAPACKE_d_nancheck( n, d, 1 ) ) {
57  return -7;
58  }
59  if( LAPACKE_d_nancheck( n-1, e, 1 ) ) {
60  return -8;
61  }
62  if( nru != 0 ) {
63  if( LAPACKE_zge_nancheck( matrix_layout, nru, n, u, ldu ) ) {
64  return -11;
65  }
66  }
67  if( ncvt != 0 ) {
68  if( LAPACKE_zge_nancheck( matrix_layout, n, ncvt, vt, ldvt ) ) {
69  return -9;
70  }
71  }
72 #endif
73  /* Allocate memory for working array(s) */
74  work = (double*)LAPACKE_malloc( sizeof(double) * MAX(1,4*n) );
75  if( work == NULL ) {
77  goto exit_level_0;
78  }
79  /* Call middle-level interface */
80  info = LAPACKE_zbdsqr_work( matrix_layout, uplo, n, ncvt, nru, ncc, d, e, vt,
81  ldvt, u, ldu, c, ldc, work );
82  /* Release memory and exit */
83  LAPACKE_free( work );
84 exit_level_0:
85  if( info == LAPACK_WORK_MEMORY_ERROR ) {
86  LAPACKE_xerbla( "LAPACKE_zbdsqr", info );
87  }
88  return info;
89 }
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:119
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:122
lapack_int LAPACKE_zbdsqr_work(int matrix_layout, char uplo, lapack_int n, lapack_int ncvt, lapack_int nru, lapack_int ncc, double *d, double *e, lapack_complex_double *vt, lapack_int ldvt, lapack_complex_double *u, lapack_int ldu, lapack_complex_double *c, lapack_int ldc, double *work)
#define MAX(x, y)
Definition: lapacke_utils.h:47
#define LAPACKE_free(p)
Definition: lapacke.h:113
#define LAPACKE_malloc(size)
Definition: lapacke.h:110
lapack_logical LAPACKE_d_nancheck(lapack_int n, const double *x, lapack_int incx)
#define LAPACK_COL_MAJOR
Definition: lapacke.h:120
void LAPACKE_xerbla(const char *name, lapack_int info)
#define lapack_int
Definition: lapacke.h:47
lapack_logical LAPACKE_zge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_double *a, lapack_int lda)

Here is the call graph for this function: