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

Definition at line 36 of file lapacke_stpqrt2_work.c.

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