OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
lapacke_stpqrt_work.c File Reference
#include "lapacke_utils.h"

Go to the source code of this file.

Functions

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)

Function Documentation

◆ LAPACKE_stpqrt_work()

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 35 of file lapacke_stpqrt_work.c.

39{
40 lapack_int info = 0;
41 if( matrix_layout == LAPACK_COL_MAJOR ) {
42 /* Call LAPACK function and adjust info */
43 LAPACK_stpqrt( &m, &n, &l, &nb, a, &lda, b, &ldb, t, &ldt, work,
44 &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,nb);
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 = -7;
58 LAPACKE_xerbla( "LAPACKE_stpqrt_work", info );
59 return info;
60 }
61 if( ldb < n ) {
62 info = -9;
63 LAPACKE_xerbla( "LAPACKE_stpqrt_work", info );
64 return info;
65 }
66 if( ldt < n ) {
67 info = -11;
68 LAPACKE_xerbla( "LAPACKE_stpqrt_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_stpqrt( &m, &n, &l, &nb, a_t, &lda_t, b_t, &ldb_t, t_t, &ldt_t,
92 work, &info );
93 if( info < 0 ) {
94 info = info - 1;
95 }
96 /* Transpose output matrices */
97 LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, n, a_t, lda_t, a, lda );
98 LAPACKE_sge_trans( LAPACK_COL_MAJOR, m, n, b_t, ldb_t, b, ldb );
99 LAPACKE_sge_trans( LAPACK_COL_MAJOR, nb, n, t_t, ldt_t, t, ldt );
100 /* Release memory and exit */
101 LAPACKE_free( t_t );
102exit_level_2:
103 LAPACKE_free( b_t );
104exit_level_1:
105 LAPACKE_free( a_t );
106exit_level_0:
107 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
108 LAPACKE_xerbla( "LAPACKE_stpqrt_work", info );
109 }
110 } else {
111 info = -1;
112 LAPACKE_xerbla( "LAPACKE_stpqrt_work", info );
113 }
114 return info;
115}
#define LAPACK_stpqrt
Definition lapack.h:20849
#define lapack_int
Definition lapack.h:83
#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)
n