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

Go to the source code of this file.

Functions

lapack_int LAPACKE_sgglse_work (int matrix_layout, lapack_int m, lapack_int n, lapack_int p, float *a, lapack_int lda, float *b, lapack_int ldb, float *c, float *d, float *x, float *work, lapack_int lwork)

Function Documentation

◆ LAPACKE_sgglse_work()

lapack_int LAPACKE_sgglse_work ( int matrix_layout,
lapack_int m,
lapack_int n,
lapack_int p,
float * a,
lapack_int lda,
float * b,
lapack_int ldb,
float * c,
float * d,
float * x,
float * work,
lapack_int lwork )

Definition at line 35 of file lapacke_sgglse_work.c.

39{
40 lapack_int info = 0;
41 if( matrix_layout == LAPACK_COL_MAJOR ) {
42 /* Call LAPACK function and adjust info */
43 LAPACK_sgglse( &m, &n, &p, a, &lda, b, &ldb, c, d, x, work, &lwork,
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,m);
50 lapack_int ldb_t = MAX(1,p);
51 float* a_t = NULL;
52 float* b_t = NULL;
53 /* Check leading dimension(s) */
54 if( lda < n ) {
55 info = -6;
56 LAPACKE_xerbla( "LAPACKE_sgglse_work", info );
57 return info;
58 }
59 if( ldb < n ) {
60 info = -8;
61 LAPACKE_xerbla( "LAPACKE_sgglse_work", info );
62 return info;
63 }
64 /* Query optimal working array(s) size if requested */
65 if( lwork == -1 ) {
66 LAPACK_sgglse( &m, &n, &p, a, &lda_t, b, &ldb_t, c, d, x, work,
67 &lwork, &info );
68 return (info < 0) ? (info - 1) : info;
69 }
70 /* Allocate memory for temporary array(s) */
71 a_t = (float*)LAPACKE_malloc( sizeof(float) * lda_t * MAX(1,n) );
72 if( a_t == NULL ) {
74 goto exit_level_0;
75 }
76 b_t = (float*)LAPACKE_malloc( sizeof(float) * ldb_t * MAX(1,n) );
77 if( b_t == NULL ) {
79 goto exit_level_1;
80 }
81 /* Transpose input matrices */
82 LAPACKE_sge_trans( matrix_layout, m, n, a, lda, a_t, lda_t );
83 LAPACKE_sge_trans( matrix_layout, p, n, b, ldb, b_t, ldb_t );
84 /* Call LAPACK function and adjust info */
85 LAPACK_sgglse( &m, &n, &p, a_t, &lda_t, b_t, &ldb_t, c, d, x, work,
86 &lwork, &info );
87 if( info < 0 ) {
88 info = info - 1;
89 }
90 /* Transpose output matrices */
91 LAPACKE_sge_trans( LAPACK_COL_MAJOR, m, n, a_t, lda_t, a, lda );
92 LAPACKE_sge_trans( LAPACK_COL_MAJOR, p, n, b_t, ldb_t, b, ldb );
93 /* Release memory and exit */
94 LAPACKE_free( b_t );
95exit_level_1:
96 LAPACKE_free( a_t );
97exit_level_0:
98 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
99 LAPACKE_xerbla( "LAPACKE_sgglse_work", info );
100 }
101 } else {
102 info = -1;
103 LAPACKE_xerbla( "LAPACKE_sgglse_work", info );
104 }
105 return info;
106}
#define LAPACK_sgglse
Definition lapack.h:5168
#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