LAPACK  3.10.1
LAPACK: Linear Algebra PACKage

◆ LAPACKE_zupmtr()

lapack_int LAPACKE_zupmtr ( int  matrix_layout,
char  side,
char  uplo,
char  trans,
lapack_int  m,
lapack_int  n,
const lapack_complex_double ap,
const lapack_complex_double tau,
lapack_complex_double c,
lapack_int  ldc 
)

Definition at line 35 of file lapacke_zupmtr.c.

40 {
41  lapack_int info = 0;
42  /* Additional scalars declarations for work arrays */
43  lapack_int lwork;
44  lapack_complex_double* work = NULL;
45  lapack_int r ;
46  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
47  LAPACKE_xerbla( "LAPACKE_zupmtr", -1 );
48  return -1;
49  }
50 #ifndef LAPACK_DISABLE_NAN_CHECK
51  if( LAPACKE_get_nancheck() ) {
52  /* Optionally check input matrices for NaNs */
53  r = LAPACKE_lsame( side, 'l' ) ? m : n;
54  if( LAPACKE_zpp_nancheck( r, ap ) ) {
55  return -7;
56  }
57  if( LAPACKE_zge_nancheck( matrix_layout, m, n, c, ldc ) ) {
58  return -9;
59  }
60  if( LAPACKE_z_nancheck( r-1, tau, 1 ) ) {
61  return -8;
62  }
63  }
64 #endif
65  /* Additional scalars initializations for work arrays */
66  if( LAPACKE_lsame( side, 'l' ) ) {
67  lwork = MAX(1,n);
68  } else if( LAPACKE_lsame( side, 'r' ) ) {
69  lwork = MAX(1,m);
70  } else {
71  lwork = 1; /* Any value */
72  }
73  /* Allocate memory for working array(s) */
74  work = (lapack_complex_double*)
75  LAPACKE_malloc( sizeof(lapack_complex_double) * lwork );
76  if( work == NULL ) {
78  goto exit_level_0;
79  }
80  /* Call middle-level interface */
81  info = LAPACKE_zupmtr_work( matrix_layout, side, uplo, trans, m, n, ap, tau,
82  c, ldc, work );
83  /* Release memory and exit */
84  LAPACKE_free( work );
85 exit_level_0:
86  if( info == LAPACK_WORK_MEMORY_ERROR ) {
87  LAPACKE_xerbla( "LAPACKE_zupmtr", info );
88  }
89  return info;
90 }
#define lapack_int
Definition: lapack.h:83
#define lapack_complex_double
Definition: lapack.h:63
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:55
lapack_int LAPACKE_zupmtr_work(int matrix_layout, char side, char uplo, char trans, lapack_int m, lapack_int n, const lapack_complex_double *ap, const lapack_complex_double *tau, lapack_complex_double *c, lapack_int ldc, lapack_complex_double *work)
#define LAPACK_COL_MAJOR
Definition: lapacke.h:53
#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)
lapack_logical LAPACKE_zge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_double *a, lapack_int lda)
lapack_logical LAPACKE_zpp_nancheck(lapack_int n, const lapack_complex_double *ap)
#define MAX(x, y)
Definition: lapacke_utils.h:46
lapack_logical LAPACKE_z_nancheck(lapack_int n, const lapack_complex_double *x, lapack_int incx)
Here is the call graph for this function: