LAPACK  3.10.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_zungtsqr_row_work()

lapack_int LAPACKE_zungtsqr_row_work ( int  matrix_layout,
lapack_int  m,
lapack_int  n,
lapack_int  mb,
lapack_int  nb,
lapack_complex_double a,
lapack_int  lda,
const lapack_complex_double t,
lapack_int  ldt,
lapack_complex_double work,
lapack_int  lwork 
)

Definition at line 35 of file lapacke_zungtsqr_row_work.c.

40 {
41  lapack_int info = 0;
42  if (matrix_layout == LAPACK_COL_MAJOR) {
43  /* Call LAPACK function and adjust info */
44  LAPACK_zungtsqr_row( &m, &n, &mb, &nb, a, &lda, t, &ldt,
45  work, &lwork, &info);
46  if (info < 0) {
47  info = info - 1;
48  }
49  } else if (matrix_layout == LAPACK_ROW_MAJOR) {
50  lapack_int lda_t = MAX(1,m);
51  lapack_complex_double* a_t = NULL;
52  /* Check leading dimension(s) */
53  if( lda < n ) {
54  info = -7;
55  LAPACKE_xerbla( "LAPACKE_zungtsqr_row_work", info );
56  return info;
57  }
58  lapack_int ldt_t = MAX(1,nb);
59  lapack_complex_double* t_t = NULL;
60  /* Check leading dimension(s) */
61  if( ldt < n ) {
62  info = -9;
63  LAPACKE_xerbla( "LAPACKE_zungtsqr_row_work", info );
64  return info;
65  }
66  /* Query optimal working array(s) size if requested */
67  if( lwork == -1 ) {
68  LAPACK_zungtsqr_row( &m, &n, &mb, &nb, a, &lda_t, t, &ldt_t,
69  work, &lwork, &info );
70  return (info < 0) ? (info - 1) : info;
71  }
72  /* Allocate memory for temporary array(s) */
73  a_t = (lapack_complex_double*)
74  LAPACKE_malloc( sizeof(lapack_complex_double) * lda_t * MAX(1,n) );
75  if( a_t == NULL ) {
77  goto exit_level_0;
78  }
79  t_t = (lapack_complex_double*)
80  LAPACKE_malloc( sizeof(lapack_complex_double) * ldt_t * MAX(1,n) );
81  if( t_t == NULL ) {
83  goto exit_level_1;
84  }
85  /* Transpose input matrices */
86  LAPACKE_zge_trans( matrix_layout, m, n, a, lda, a_t, lda_t );
87  LAPACKE_zge_trans( matrix_layout, nb, n, a, lda, t_t, ldt_t );
88  /* Call LAPACK function and adjust info */
89  LAPACK_zungtsqr_row( &m, &n, &mb, &nb, a_t, &lda_t, t_t, &ldt_t,
90  work, &lwork, &info );
91  if( info < 0 ) {
92  info = info - 1;
93  }
94  /* Transpose output matrices */
95  LAPACKE_zge_trans( LAPACK_COL_MAJOR, m, n, a_t, lda_t, a, lda );
96  /* Release memory and exit */
97  LAPACKE_free( t_t );
98 exit_level_1:
99  LAPACKE_free( a_t );
100 exit_level_0:
101  if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
102  LAPACKE_xerbla( "LAPACKE_zungtsqr_row_work", info );
103  }
104  } else {
105  info = -1;
106  LAPACKE_xerbla( "LAPACKE_zungtsqr_row_work", info );
107  }
108  return info;
109 }
#define lapack_int
Definition: lapack.h:83
void LAPACK_zungtsqr_row(lapack_int const *m, lapack_int const *n, lapack_int const *mb, lapack_int const *nb, lapack_complex_double *A, lapack_int const *lda, lapack_complex_double const *T, lapack_int const *ldt, lapack_complex_double *work, lapack_int const *lwork, lapack_int *info)
#define lapack_complex_double
Definition: lapack.h:63
#define LAPACK_COL_MAJOR
Definition: lapacke.h:53
#define LAPACKE_free(p)
Definition: lapacke.h:46
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:52
#define LAPACKE_malloc(size)
Definition: lapacke.h:43
#define LAPACK_TRANSPOSE_MEMORY_ERROR
Definition: lapacke.h:56
void LAPACKE_xerbla(const char *name, lapack_int info)
void LAPACKE_zge_trans(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_double *in, lapack_int ldin, lapack_complex_double *out, lapack_int ldout)
#define MAX(x, y)
Definition: lapacke_utils.h:46
Here is the call graph for this function:
Here is the caller graph for this function: