LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_dggsvp3 ( int  matrix_layout,
char  jobu,
char  jobv,
char  jobq,
lapack_int  m,
lapack_int  p,
lapack_int  n,
double *  a,
lapack_int  lda,
double *  b,
lapack_int  ldb,
double  tola,
double  tolb,
lapack_int k,
lapack_int l,
double *  u,
lapack_int  ldu,
double *  v,
lapack_int  ldv,
double *  q,
lapack_int  ldq 
)

Definition at line 36 of file lapacke_dggsvp3.c.

42 {
43  lapack_int info = 0;
44  lapack_int* iwork = NULL;
45  double* tau = NULL;
46  double* work = NULL;
47  lapack_int lwork = -1;
48  double work_query;
49  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
50  LAPACKE_xerbla( "LAPACKE_dggsvp3", -1 );
51  return -1;
52  }
53 #ifndef LAPACK_DISABLE_NAN_CHECK
54  /* Optionally check input matrices for NaNs */
55  if( LAPACKE_dge_nancheck( matrix_layout, m, n, a, lda ) ) {
56  return -8;
57  }
58  if( LAPACKE_dge_nancheck( matrix_layout, p, n, b, ldb ) ) {
59  return -10;
60  }
61  if( LAPACKE_d_nancheck( 1, &tola, 1 ) ) {
62  return -12;
63  }
64  if( LAPACKE_d_nancheck( 1, &tolb, 1 ) ) {
65  return -13;
66  }
67 #endif
68  /* Query optimal size for working array */
69  info = LAPACKE_dggsvp3_work( matrix_layout, jobu, jobv, jobq, m, p, n,
70  a, lda, b, ldb, tola, tolb, k, l, u, ldu,
71  v, ldv, q, ldq, iwork, tau, &work_query,
72  lwork );
73  if( info != 0 )
74  goto exit_level_0;
75  lwork = work_query;
76  /* Allocate memory for working array(s) */
77  iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * MAX(1,n) );
78  if( iwork == NULL ) {
80  goto exit_level_0;
81  }
82  tau = (double*)LAPACKE_malloc( sizeof(double) * MAX(1,n) );
83  if( tau == NULL ) {
85  goto exit_level_1;
86  }
87  work = (double*)LAPACKE_malloc( sizeof(double) * lwork );
88  if( work == NULL ) {
90  goto exit_level_2;
91  }
92  /* Call middle-level interface */
93  info = LAPACKE_dggsvp3_work( matrix_layout, jobu, jobv, jobq, m, p, n, a, lda,
94  b, ldb, tola, tolb, k, l, u, ldu, v, ldv, q,
95  ldq, iwork, tau, work, lwork );
96  /* Release memory and exit */
97  LAPACKE_free( work );
98 exit_level_2:
99  LAPACKE_free( tau );
100 exit_level_1:
101  LAPACKE_free( iwork );
102 exit_level_0:
103  if( info == LAPACK_WORK_MEMORY_ERROR ) {
104  LAPACKE_xerbla( "LAPACKE_dggsvp3", info );
105  }
106  return info;
107 }
#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_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_int LAPACKE_dggsvp3_work(int matrix_layout, char jobu, char jobv, char jobq, lapack_int m, lapack_int p, lapack_int n, double *a, lapack_int lda, double *b, lapack_int ldb, double tola, double tolb, lapack_int *k, lapack_int *l, double *u, lapack_int ldu, double *v, lapack_int ldv, double *q, lapack_int ldq, lapack_int *iwork, double *tau, double *work, lapack_int lwork)

Here is the call graph for this function: