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

Go to the source code of this file.

Functions

lapack_int LAPACKE_strsen_work (int matrix_layout, char job, char compq, const lapack_logical *select, lapack_int n, float *t, lapack_int ldt, float *q, lapack_int ldq, float *wr, float *wi, lapack_int *m, float *s, float *sep, float *work, lapack_int lwork, lapack_int *iwork, lapack_int liwork)

Function Documentation

◆ LAPACKE_strsen_work()

lapack_int LAPACKE_strsen_work ( int matrix_layout,
char job,
char compq,
const lapack_logical * select,
lapack_int n,
float * t,
lapack_int ldt,
float * q,
lapack_int ldq,
float * wr,
float * wi,
lapack_int * m,
float * s,
float * sep,
float * work,
lapack_int lwork,
lapack_int * iwork,
lapack_int liwork )

Definition at line 35 of file lapacke_strsen_work.c.

42{
43 lapack_int info = 0;
44 if( matrix_layout == LAPACK_COL_MAJOR ) {
45 /* Call LAPACK function and adjust info */
46 LAPACK_strsen( &job, &compq, select, &n, t, &ldt, q, &ldq, wr, wi, m, s,
47 sep, work, &lwork, iwork, &liwork, &info );
48 if( info < 0 ) {
49 info = info - 1;
50 }
51 } else if( matrix_layout == LAPACK_ROW_MAJOR ) {
52 lapack_int ldq_t = MAX(1,n);
53 lapack_int ldt_t = MAX(1,n);
54 float* t_t = NULL;
55 float* q_t = NULL;
56 /* Check leading dimension(s) */
57 if( ldq < n ) {
58 info = -9;
59 LAPACKE_xerbla( "LAPACKE_strsen_work", info );
60 return info;
61 }
62 if( ldt < n ) {
63 info = -7;
64 LAPACKE_xerbla( "LAPACKE_strsen_work", info );
65 return info;
66 }
67 /* Allocate memory for temporary array T */
68 t_t = (float*)LAPACKE_malloc( sizeof(float) * ldt_t * MAX(1,n) );
69 if( t_t == NULL ) {
71 goto exit_level_0;
72 }
73 /* Transpose input matrix T */
74 LAPACKE_sge_trans( matrix_layout, n, n, t, ldt, t_t, ldt_t );
75 /* Query optimal working array(s) size if requested */
76 if( liwork == -1 || lwork == -1 ) {
77 LAPACK_strsen( &job, &compq, select, &n, t_t, &ldt_t, q, &ldq_t, wr,
78 wi, m, s, sep, work, &lwork, iwork, &liwork, &info );
79 LAPACKE_free( t_t );
80 return (info < 0) ? (info - 1) : info;
81 }
82 /* Allocate memory for temporary array(s) */
83 if( LAPACKE_lsame( compq, 'v' ) ) {
84 q_t = (float*)LAPACKE_malloc( sizeof(float) * ldq_t * MAX(1,n) );
85 if( q_t == NULL ) {
87 goto exit_level_1;
88 }
89 }
90 /* Transpose input matrices */
91 if( LAPACKE_lsame( compq, 'v' ) ) {
92 LAPACKE_sge_trans( matrix_layout, n, n, q, ldq, q_t, ldq_t );
93 }
94 /* Call LAPACK function and adjust info */
95 LAPACK_strsen( &job, &compq, select, &n, t_t, &ldt_t, q_t, &ldq_t, wr,
96 wi, m, s, sep, work, &lwork, iwork, &liwork, &info );
97 if( info < 0 ) {
98 info = info - 1;
99 }
100 /* Transpose output matrices */
101 LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, n, t_t, ldt_t, t, ldt );
102 if( LAPACKE_lsame( compq, 'v' ) ) {
103 LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, n, q_t, ldq_t, q, ldq );
104 }
105 /* Release memory and exit */
106 if( LAPACKE_lsame( compq, 'v' ) ) {
107 LAPACKE_free( q_t );
108 }
109exit_level_1:
110 LAPACKE_free( t_t );
111exit_level_0:
112 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
113 LAPACKE_xerbla( "LAPACKE_strsen_work", info );
114 }
115 } else {
116 info = -1;
117 LAPACKE_xerbla( "LAPACKE_strsen_work", info );
118 }
119 return info;
120}
#define lapack_int
Definition lapack.h:83
#define LAPACK_strsen(...)
Definition lapack.h:21794
#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
lapack_logical LAPACKE_lsame(char ca, char cb)
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