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

Definition at line 36 of file lapacke_cbdsqr.c.

42 {
43  lapack_int info = 0;
44  float* work = NULL;
45  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
46  LAPACKE_xerbla( "LAPACKE_cbdsqr", -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_cge_nancheck( matrix_layout, n, ncc, c, ldc ) ) {
53  return -13;
54  }
55  }
56  if( LAPACKE_s_nancheck( n, d, 1 ) ) {
57  return -7;
58  }
59  if( LAPACKE_s_nancheck( n-1, e, 1 ) ) {
60  return -8;
61  }
62  if( nru != 0 ) {
63  if( LAPACKE_cge_nancheck( matrix_layout, nru, n, u, ldu ) ) {
64  return -11;
65  }
66  }
67  if( ncvt != 0 ) {
68  if( LAPACKE_cge_nancheck( matrix_layout, n, ncvt, vt, ldvt ) ) {
69  return -9;
70  }
71  }
72 #endif
73  /* Allocate memory for working array(s) */
74  work = (float*)LAPACKE_malloc( sizeof(float) * MAX(1,4*n) );
75  if( work == NULL ) {
77  goto exit_level_0;
78  }
79  /* Call middle-level interface */
80  info = LAPACKE_cbdsqr_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_cbdsqr", info );
87  }
88  return info;
89 }
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:119
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:122
lapack_logical LAPACKE_s_nancheck(lapack_int n, const float *x, lapack_int incx)
lapack_logical LAPACKE_cge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_float *a, lapack_int lda)
#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
#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_int LAPACKE_cbdsqr_work(int matrix_layout, char uplo, lapack_int n, lapack_int ncvt, lapack_int nru, lapack_int ncc, float *d, float *e, lapack_complex_float *vt, lapack_int ldvt, lapack_complex_float *u, lapack_int ldu, lapack_complex_float *c, lapack_int ldc, float *work)

Here is the call graph for this function: