LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_sgghd3()

lapack_int LAPACKE_sgghd3 ( int  matrix_layout,
char  compq,
char  compz,
lapack_int  n,
lapack_int  ilo,
lapack_int  ihi,
float *  a,
lapack_int  lda,
float *  b,
lapack_int  ldb,
float *  q,
lapack_int  ldq,
float *  z,
lapack_int  ldz 
)

Definition at line 35 of file lapacke_sgghd3.c.

40 {
41  lapack_int info = 0;
42  lapack_int lwork = -1;
43  float* work = NULL;
44  float work_query;
45  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
46  LAPACKE_xerbla( "LAPACKE_sgghd3", -1 );
47  return -1;
48  }
49 #ifndef LAPACK_DISABLE_NAN_CHECK
50  if( LAPACKE_get_nancheck() ) {
51  /* Optionally check input matrices for NaNs */
52  if( LAPACKE_sge_nancheck( matrix_layout, n, n, a, lda ) ) {
53  return -7;
54  }
55  if( LAPACKE_sge_nancheck( matrix_layout, n, n, b, ldb ) ) {
56  return -9;
57  }
58  if( LAPACKE_lsame( compq, 'i' ) || LAPACKE_lsame( compq, 'v' ) ) {
59  if( LAPACKE_sge_nancheck( matrix_layout, n, n, q, ldq ) ) {
60  return -11;
61  }
62  }
63  if( LAPACKE_lsame( compz, 'i' ) || LAPACKE_lsame( compz, 'v' ) ) {
64  if( LAPACKE_sge_nancheck( matrix_layout, n, n, z, ldz ) ) {
65  return -13;
66  }
67  }
68  }
69 #endif
70  /* Query optimal working array(s) size */
71  info = LAPACKE_sgghd3_work( matrix_layout, compq, compz, n, ilo, ihi,
72  a, lda, b, ldb, q, ldq, z, ldz, &work_query,
73  lwork );
74  if( info != 0 ) {
75  goto exit_level_0;
76  }
77  lwork = (lapack_int)work_query;
78  /* Allocate memory for work arrays */
79  work = (float*)LAPACKE_malloc( sizeof(float) * lwork );
80  if( work == NULL ) {
82  goto exit_level_0;
83  }
84  /* Call middle-level interface */
85  info = LAPACKE_sgghd3_work( matrix_layout, compq, compz, n, ilo, ihi,
86  a, lda, b, ldb, q, ldq, z, ldz, work, lwork );
87  /* Release memory and exit */
88  LAPACKE_free( work );
89 exit_level_0:
90  if( info == LAPACK_WORK_MEMORY_ERROR ) {
91  LAPACKE_xerbla( "LAPACKE_sgghd3", info );
92  }
93  return info;
Here is the call graph for this function:
LAPACKE_sgghd3_work
lapack_int LAPACKE_sgghd3_work(int matrix_layout, char compq, char compz, lapack_int n, lapack_int ilo, lapack_int ihi, float *a, lapack_int lda, float *b, lapack_int ldb, float *q, lapack_int ldq, float *z, lapack_int ldz, float *work, lapack_int lwork)
Definition: lapacke_sgghd3_work.c:35
LAPACKE_free
#define LAPACKE_free(p)
Definition: lapacke.h:47
lapack_int
#define lapack_int
Definition: lapack.h:21
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
LAPACKE_sge_nancheck
lapack_logical LAPACKE_sge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const float *a, lapack_int lda)
Definition: lapacke_sge_nancheck.c:36
LAPACKE_malloc
#define LAPACKE_malloc(size)
Definition: lapacke.h:44
LAPACKE_get_nancheck
int LAPACKE_get_nancheck()
Definition: lapacke_nancheck.c:42
LAPACKE_lsame
lapack_logical LAPACKE_lsame(char ca, char cb)
Definition: lapacke_lsame.c:35
LAPACK_ROW_MAJOR
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:53
LAPACK_COL_MAJOR
#define LAPACK_COL_MAJOR
Definition: lapacke.h:54