LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_dggsvp()

lapack_int LAPACKE_dggsvp ( 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 35 of file lapacke_dggsvp.c.

42 {
43  lapack_int info = 0;
44  lapack_int* iwork = NULL;
45  double* tau = NULL;
46  double* work = NULL;
47  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
48  LAPACKE_xerbla( "LAPACKE_dggsvp", -1 );
49  return -1;
50  }
51 #ifndef LAPACK_DISABLE_NAN_CHECK
52  if( LAPACKE_get_nancheck() ) {
53  /* Optionally check input matrices for NaNs */
54  if( LAPACKE_dge_nancheck( matrix_layout, m, n, a, lda ) ) {
55  return -8;
56  }
57  if( LAPACKE_dge_nancheck( matrix_layout, p, n, b, ldb ) ) {
58  return -10;
59  }
60  if( LAPACKE_d_nancheck( 1, &tola, 1 ) ) {
61  return -12;
62  }
63  if( LAPACKE_d_nancheck( 1, &tolb, 1 ) ) {
64  return -13;
65  }
66  }
67 #endif
68  /* Allocate memory for working array(s) */
69  iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * MAX(1,n) );
70  if( iwork == NULL ) {
72  goto exit_level_0;
73  }
74  tau = (double*)LAPACKE_malloc( sizeof(double) * MAX(1,n) );
75  if( tau == NULL ) {
77  goto exit_level_1;
78  }
79  work = (double*)LAPACKE_malloc( sizeof(double) * MAX(1,MAX3(3*n,m,p)) );
80  if( work == NULL ) {
82  goto exit_level_2;
83  }
84  /* Call middle-level interface */
85  info = LAPACKE_dggsvp_work( matrix_layout, jobu, jobv, jobq, m, p, n, a, lda,
86  b, ldb, tola, tolb, k, l, u, ldu, v, ldv, q,
87  ldq, iwork, tau, work );
88  /* Release memory and exit */
89  LAPACKE_free( work );
90 exit_level_2:
91  LAPACKE_free( tau );
92 exit_level_1:
93  LAPACKE_free( iwork );
94 exit_level_0:
95  if( info == LAPACK_WORK_MEMORY_ERROR ) {
96  LAPACKE_xerbla( "LAPACKE_dggsvp", info );
97  }
98  return info;
Here is the call graph for this function:
LAPACKE_dggsvp_work
lapack_int LAPACKE_dggsvp_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)
Definition: lapacke_dggsvp_work.c:35
LAPACKE_free
#define LAPACKE_free(p)
Definition: lapacke.h:47
lapack_int
#define lapack_int
Definition: lapack.h:21
MAX3
#define MAX3(x, y, z)
Definition: lapacke_utils.h:53
LAPACKE_dge_nancheck
lapack_logical LAPACKE_dge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const double *a, lapack_int lda)
Definition: lapacke_dge_nancheck.c:36
LAPACK_WORK_MEMORY_ERROR
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:56
LAPACKE_xerbla
void LAPACKE_xerbla(const char *name, lapack_int info)
Definition: lapacke_xerbla.c:36
MAX
#define MAX(x, y)
Definition: lapacke_utils.h:47
LAPACKE_malloc
#define LAPACKE_malloc(size)
Definition: lapacke.h:44
LAPACKE_d_nancheck
lapack_logical LAPACKE_d_nancheck(lapack_int n, const double *x, lapack_int incx)
Definition: lapacke_d_nancheck.c:36
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