LAPACK  3.9.1
LAPACK: Linear Algebra PACKage

◆ LAPACKE_sormrq_work()

lapack_int LAPACKE_sormrq_work ( int  matrix_layout,
char  side,
char  trans,
lapack_int  m,
lapack_int  n,
lapack_int  k,
const float *  a,
lapack_int  lda,
const float *  tau,
float *  c,
lapack_int  ldc,
float *  work,
lapack_int  lwork 
)

Definition at line 35 of file lapacke_sormrq_work.c.

40 {
41  lapack_int info = 0;
42  lapack_int lda_t, ldc_t;
43  float *a_t = NULL, *c_t = NULL;
44  if( matrix_layout == LAPACK_COL_MAJOR ) {
45  /* Call LAPACK function and adjust info */
46  LAPACK_sormrq( &side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work,
47  &lwork, &info );
48  if( info < 0 ) {
49  info = info - 1;
50  }
51  } else if( matrix_layout == LAPACK_ROW_MAJOR ) {
52  lda_t = MAX(1,k);
53  ldc_t = MAX(1,m);
54  /* Check leading dimension(s) */
55  if( lda < m ) {
56  info = -8;
57  LAPACKE_xerbla( "LAPACKE_sormrq_work", info );
58  return info;
59  }
60  if( ldc < n ) {
61  info = -11;
62  LAPACKE_xerbla( "LAPACKE_sormrq_work", info );
63  return info;
64  }
65  /* Query optimal working array(s) size if requested */
66  if( lwork == -1 ) {
67  LAPACK_sormrq( &side, &trans, &m, &n, &k, a, &lda_t, tau, c, &ldc_t,
68  work, &lwork, &info );
69  return (info < 0) ? (info - 1) : info;
70  }
71  /* Allocate memory for temporary array(s) */
72  a_t = (float*)LAPACKE_malloc( sizeof(float) * lda_t * MAX(1,m) );
73  if( a_t == NULL ) {
75  goto exit_level_0;
76  }
77  c_t = (float*)LAPACKE_malloc( sizeof(float) * ldc_t * MAX(1,n) );
78  if( c_t == NULL ) {
80  goto exit_level_1;
81  }
82  /* Transpose input matrices */
83  LAPACKE_sge_trans( matrix_layout, k, m, a, lda, a_t, lda_t );
84  LAPACKE_sge_trans( matrix_layout, m, n, c, ldc, c_t, ldc_t );
85  /* Call LAPACK function and adjust info */
86  LAPACK_sormrq( &side, &trans, &m, &n, &k, a_t, &lda_t, tau, c_t, &ldc_t,
87  work, &lwork, &info );
88  if( info < 0 ) {
89  info = info - 1;
90  }
91  /* Transpose output matrices */
92  LAPACKE_sge_trans( LAPACK_COL_MAJOR, m, n, c_t, ldc_t, c, ldc );
93  /* Release memory and exit */
94  LAPACKE_free( c_t );
95 exit_level_1:
96  LAPACKE_free( a_t );
97 exit_level_0:
98  if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
99  LAPACKE_xerbla( "LAPACKE_sormrq_work", info );
100  }
101  } else {
102  info = -1;
103  LAPACKE_xerbla( "LAPACKE_sormrq_work", info );
104  }
105  return info;
106 }
#define lapack_int
Definition: lapack.h:83
void LAPACK_sormrq(char const *side, char const *trans, lapack_int const *m, lapack_int const *n, lapack_int const *k, float const *A, lapack_int const *lda, float const *tau, float *C, lapack_int const *ldc, float *work, lapack_int const *lwork, lapack_int *info)
#define LAPACK_COL_MAJOR
Definition: lapacke.h:53
#define LAPACKE_free(p)
Definition: lapacke.h:46
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:52
#define LAPACKE_malloc(size)
Definition: lapacke.h:43
#define LAPACK_TRANSPOSE_MEMORY_ERROR
Definition: lapacke.h:56
void LAPACKE_xerbla(const char *name, 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:46
Here is the call graph for this function:
Here is the caller graph for this function: