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

Go to the source code of this file.

Functions

lapack_int LAPACKE_dggglm_work (int matrix_layout, lapack_int n, lapack_int m, lapack_int p, double *a, lapack_int lda, double *b, lapack_int ldb, double *d, double *x, double *y, double *work, lapack_int lwork)

Function Documentation

◆ LAPACKE_dggglm_work()

lapack_int LAPACKE_dggglm_work ( int matrix_layout,
lapack_int n,
lapack_int m,
lapack_int p,
double * a,
lapack_int lda,
double * b,
lapack_int ldb,
double * d,
double * x,
double * y,
double * work,
lapack_int lwork )

Definition at line 35 of file lapacke_dggglm_work.c.

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