LAPACK  3.10.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_ctpmqrt()

lapack_int LAPACKE_ctpmqrt ( int  matrix_layout,
char  side,
char  trans,
lapack_int  m,
lapack_int  n,
lapack_int  k,
lapack_int  l,
lapack_int  nb,
const lapack_complex_float v,
lapack_int  ldv,
const lapack_complex_float t,
lapack_int  ldt,
lapack_complex_float a,
lapack_int  lda,
lapack_complex_float b,
lapack_int  ldb 
)

Definition at line 35 of file lapacke_ctpmqrt.c.

42 {
43  lapack_int ncols_a, nrows_a;
44  lapack_int nrows_v;
45  lapack_int lwork;
46  lapack_int info = 0;
47  lapack_complex_float* work = NULL;
48  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
49  LAPACKE_xerbla( "LAPACKE_ctpmqrt", -1 );
50  return -1;
51  }
52 #ifndef LAPACK_DISABLE_NAN_CHECK
53  if( LAPACKE_get_nancheck() ) {
54  /* Optionally check input matrices for NaNs */
55  ncols_a = LAPACKE_lsame( side, 'L' ) ? n :
56  ( LAPACKE_lsame( side, 'R' ) ? k : 0 );
57  nrows_a = LAPACKE_lsame( side, 'L' ) ? k :
58  ( LAPACKE_lsame( side, 'R' ) ? m : 0 );
59  nrows_v = LAPACKE_lsame( side, 'L' ) ? m :
60  ( LAPACKE_lsame( side, 'R' ) ? n : 0 );
61  if( LAPACKE_cge_nancheck( matrix_layout, nrows_a, ncols_a, a, lda ) ) {
62  return -13;
63  }
64  if( LAPACKE_cge_nancheck( matrix_layout, m, n, b, ldb ) ) {
65  return -15;
66  }
67  if( LAPACKE_cge_nancheck( matrix_layout, nb, k, t, ldt ) ) {
68  return -11;
69  }
70  if( LAPACKE_cge_nancheck( matrix_layout, nrows_v, k, v, ldv ) ) {
71  return -9;
72  }
73  }
74 #endif
75  /* Allocate memory for working array(s) */
76  lwork = LAPACKE_lsame( side, 'L' ) ? MAX(1,nb) * MAX(1,n) :
77  ( LAPACKE_lsame( side, 'R' ) ? MAX(1,m) * MAX(1,nb) : 0 );
78  work = (lapack_complex_float*)
79  LAPACKE_malloc( sizeof(lapack_complex_float) * lwork );
80  if( work == NULL ) {
82  goto exit_level_0;
83  }
84  /* Call middle-level interface */
85  info = LAPACKE_ctpmqrt_work( matrix_layout, side, trans, m, n, k, l, nb, v,
86  ldv, t, ldt, a, lda, b, ldb, work );
87  /* Release memory and exit */
88  LAPACKE_free( work );
89 exit_level_0:
90  if( info == LAPACK_WORK_MEMORY_ERROR ) {
91  LAPACKE_xerbla( "LAPACKE_ctpmqrt", info );
92  }
93  return info;
94 }
#define lapack_int
Definition: lapack.h:83
#define lapack_complex_float
Definition: lapack.h:45
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:55
#define LAPACK_COL_MAJOR
Definition: lapacke.h:53
lapack_int LAPACKE_ctpmqrt_work(int matrix_layout, char side, char trans, lapack_int m, lapack_int n, lapack_int k, lapack_int l, lapack_int nb, const lapack_complex_float *v, lapack_int ldv, const lapack_complex_float *t, lapack_int ldt, lapack_complex_float *a, lapack_int lda, lapack_complex_float *b, lapack_int ldb, lapack_complex_float *work)
#define LAPACKE_free(p)
Definition: lapacke.h:46
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:52
int LAPACKE_get_nancheck(void)
#define LAPACKE_malloc(size)
Definition: lapacke.h:43
lapack_logical LAPACKE_lsame(char ca, char cb)
Definition: lapacke_lsame.c:35
void LAPACKE_xerbla(const char *name, lapack_int info)
#define MAX(x, y)
Definition: lapacke_utils.h:46
lapack_logical LAPACKE_cge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_float *a, lapack_int lda)
Here is the call graph for this function: