LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_dtpmqrt ( int  matrix_layout,
char  side,
char  trans,
lapack_int  m,
lapack_int  n,
lapack_int  k,
lapack_int  l,
lapack_int  nb,
const double *  v,
lapack_int  ldv,
const double *  t,
lapack_int  ldt,
double *  a,
lapack_int  lda,
double *  b,
lapack_int  ldb 
)

Definition at line 36 of file lapacke_dtpmqrt.c.

42 {
43  lapack_int ncols_a, nrows_a;
44  lapack_int nrows_v;
45  lapack_int info = 0;
46  double* work = NULL;
47  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
48  LAPACKE_xerbla( "LAPACKE_dtpmqrt", -1 );
49  return -1;
50  }
51 #ifndef LAPACK_DISABLE_NAN_CHECK
52  /* Optionally check input matrices for NaNs */
53  ncols_a = LAPACKE_lsame( side, 'L' ) ? n :
54  ( LAPACKE_lsame( side, 'R' ) ? k : 0 );
55  nrows_a = LAPACKE_lsame( side, 'L' ) ? k :
56  ( LAPACKE_lsame( side, 'R' ) ? m : 0 );
57  nrows_v = LAPACKE_lsame( side, 'L' ) ? m :
58  ( LAPACKE_lsame( side, 'R' ) ? n : 0 );
59  if( LAPACKE_dge_nancheck( matrix_layout, nrows_a, ncols_a, a, lda ) ) {
60  return -13;
61  }
62  if( LAPACKE_dge_nancheck( matrix_layout, m, n, b, ldb ) ) {
63  return -15;
64  }
65  if( LAPACKE_dge_nancheck( matrix_layout, nb, k, t, ldt ) ) {
66  return -11;
67  }
68  if( LAPACKE_dge_nancheck( matrix_layout, nrows_v, k, v, ldv ) ) {
69  return -9;
70  }
71 #endif
72  /* Allocate memory for working array(s) */
73  work = (double*)LAPACKE_malloc( sizeof(double) * MAX(1,m) * MAX(1,nb) );
74  if( work == NULL ) {
76  goto exit_level_0;
77  }
78  /* Call middle-level interface */
79  info = LAPACKE_dtpmqrt_work( matrix_layout, side, trans, m, n, k, l, nb, v,
80  ldv, t, ldt, a, lda, b, ldb, work );
81  /* Release memory and exit */
82  LAPACKE_free( work );
83 exit_level_0:
84  if( info == LAPACK_WORK_MEMORY_ERROR ) {
85  LAPACKE_xerbla( "LAPACKE_dtpmqrt", info );
86  }
87  return info;
88 }
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:119
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:122
lapack_int LAPACKE_dtpmqrt_work(int matrix_layout, char side, char trans, lapack_int m, lapack_int n, lapack_int k, lapack_int l, lapack_int nb, const double *v, lapack_int ldv, const double *t, lapack_int ldt, double *a, lapack_int lda, double *b, lapack_int ldb, double *work)
#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_lsame(char ca, char cb)
Definition: lapacke_lsame.c:36
#define LAPACK_COL_MAJOR
Definition: lapacke.h:120
void LAPACKE_xerbla(const char *name, lapack_int info)
#define lapack_int
Definition: lapacke.h:47

Here is the call graph for this function: