LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapack_int LAPACKE_stpqrt_work ( int  matrix_layout,
lapack_int  m,
lapack_int  n,
lapack_int  l,
lapack_int  nb,
float *  a,
lapack_int  lda,
float *  b,
lapack_int  ldb,
float *  t,
lapack_int  ldt,
float *  work 
)

Definition at line 36 of file lapacke_stpqrt_work.c.

40 {
41  lapack_int info = 0;
42  if( matrix_layout == LAPACK_COL_MAJOR ) {
43  /* Call LAPACK function and adjust info */
44  LAPACK_stpqrt( &m, &n, &l, &nb, a, &lda, b, &ldb, t, &ldt, work,
45  &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,n);
51  lapack_int ldb_t = MAX(1,m);
52  lapack_int ldt_t = MAX(1,nb);
53  float* a_t = NULL;
54  float* b_t = NULL;
55  float* t_t = NULL;
56  /* Check leading dimension(s) */
57  if( lda < n ) {
58  info = -7;
59  LAPACKE_xerbla( "LAPACKE_stpqrt_work", info );
60  return info;
61  }
62  if( ldb < n ) {
63  info = -9;
64  LAPACKE_xerbla( "LAPACKE_stpqrt_work", info );
65  return info;
66  }
67  if( ldt < n ) {
68  info = -11;
69  LAPACKE_xerbla( "LAPACKE_stpqrt_work", info );
70  return info;
71  }
72  /* Allocate memory for temporary array(s) */
73  a_t = (float*)LAPACKE_malloc( sizeof(float) * lda_t * MAX(1,n) );
74  if( a_t == NULL ) {
76  goto exit_level_0;
77  }
78  b_t = (float*)LAPACKE_malloc( sizeof(float) * ldb_t * MAX(1,n) );
79  if( b_t == NULL ) {
81  goto exit_level_1;
82  }
83  t_t = (float*)LAPACKE_malloc( sizeof(float) * ldt_t * MAX(1,n) );
84  if( t_t == NULL ) {
86  goto exit_level_2;
87  }
88  /* Transpose input matrices */
89  LAPACKE_sge_trans( matrix_layout, n, n, a, lda, a_t, lda_t );
90  LAPACKE_sge_trans( matrix_layout, m, n, b, ldb, b_t, ldb_t );
91  /* Call LAPACK function and adjust info */
92  LAPACK_stpqrt( &m, &n, &l, &nb, a_t, &lda_t, b_t, &ldb_t, t_t, &ldt_t,
93  work, &info );
94  if( info < 0 ) {
95  info = info - 1;
96  }
97  /* Transpose output matrices */
98  LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, n, a_t, lda_t, a, lda );
99  LAPACKE_sge_trans( LAPACK_COL_MAJOR, m, n, b_t, ldb_t, b, ldb );
100  LAPACKE_sge_trans( LAPACK_COL_MAJOR, nb, n, t_t, ldt_t, t, ldt );
101  /* Release memory and exit */
102  LAPACKE_free( t_t );
103 exit_level_2:
104  LAPACKE_free( b_t );
105 exit_level_1:
106  LAPACKE_free( a_t );
107 exit_level_0:
108  if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
109  LAPACKE_xerbla( "LAPACKE_stpqrt_work", info );
110  }
111  } else {
112  info = -1;
113  LAPACKE_xerbla( "LAPACKE_stpqrt_work", info );
114  }
115  return info;
116 }
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:119
void LAPACK_stpqrt(lapack_int *m, lapack_int *n, lapack_int *l, lapack_int *nb, float *a, lapack_int *lda, float *b, lapack_int *ldb, float *t, lapack_int *ldt, float *work, lapack_int *info)
void LAPACKE_sge_trans(int matrix_layout, lapack_int m, lapack_int n, const float *in, lapack_int ldin, float *out, lapack_int ldout)
#define MAX(x, y)
Definition: lapacke_utils.h:47
#define LAPACKE_free(p)
Definition: lapacke.h:113
#define LAPACKE_malloc(size)
Definition: lapacke.h:110
#define LAPACK_COL_MAJOR
Definition: lapacke.h:120
void LAPACKE_xerbla(const char *name, lapack_int info)
#define lapack_int
Definition: lapacke.h:47
#define LAPACK_TRANSPOSE_MEMORY_ERROR
Definition: lapacke.h:123

Here is the call graph for this function:

Here is the caller graph for this function: