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

Go to the source code of this file.

Functions

lapack_int LAPACKE_stgexc (int matrix_layout, lapack_logical wantq, lapack_logical wantz, lapack_int n, float *a, lapack_int lda, float *b, lapack_int ldb, float *q, lapack_int ldq, float *z, lapack_int ldz, lapack_int *ifst, lapack_int *ilst)

Function Documentation

◆ LAPACKE_stgexc()

lapack_int LAPACKE_stgexc ( int matrix_layout,
lapack_logical wantq,
lapack_logical wantz,
lapack_int n,
float * a,
lapack_int lda,
float * b,
lapack_int ldb,
float * q,
lapack_int ldq,
float * z,
lapack_int ldz,
lapack_int * ifst,
lapack_int * ilst )

Definition at line 35 of file lapacke_stgexc.c.

40{
41 lapack_int info = 0;
42 lapack_int lwork = -1;
43 float* work = NULL;
44 float work_query;
45 if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
46 LAPACKE_xerbla( "LAPACKE_stgexc", -1 );
47 return -1;
48 }
49#ifndef LAPACK_DISABLE_NAN_CHECK
50 if( LAPACKE_get_nancheck() ) {
51 /* Optionally check input matrices for NaNs */
52 if( LAPACKE_sge_nancheck( matrix_layout, n, n, a, lda ) ) {
53 return -5;
54 }
55 if( LAPACKE_sge_nancheck( matrix_layout, n, n, b, ldb ) ) {
56 return -7;
57 }
58 if( wantq ) {
59 if( LAPACKE_sge_nancheck( matrix_layout, n, n, q, ldq ) ) {
60 return -9;
61 }
62 }
63 if( wantz ) {
64 if( LAPACKE_sge_nancheck( matrix_layout, n, n, z, ldz ) ) {
65 return -11;
66 }
67 }
68 }
69#endif
70 /* Query optimal working array(s) size */
71 info = LAPACKE_stgexc_work( matrix_layout, wantq, wantz, n, a, lda, b, ldb,
72 q, ldq, z, ldz, ifst, ilst, &work_query,
73 lwork );
74 if( info != 0 ) {
75 goto exit_level_0;
76 }
77 lwork = (lapack_int)work_query;
78 /* Allocate memory for work arrays */
79 work = (float*)LAPACKE_malloc( sizeof(float) * lwork );
80 if( work == NULL ) {
82 goto exit_level_0;
83 }
84 /* Call middle-level interface */
85 info = LAPACKE_stgexc_work( matrix_layout, wantq, wantz, n, a, lda, b, ldb,
86 q, ldq, z, ldz, ifst, ilst, work, lwork );
87 /* Release memory and exit */
88 LAPACKE_free( work );
89exit_level_0:
90 if( info == LAPACK_WORK_MEMORY_ERROR ) {
91 LAPACKE_xerbla( "LAPACKE_stgexc", info );
92 }
93 return info;
94}
#define lapack_int
Definition lapack.h:83
#define LAPACK_WORK_MEMORY_ERROR
Definition lapacke.h:55
#define LAPACK_COL_MAJOR
Definition lapacke.h:53
#define LAPACKE_free(p)
Definition lapacke.h:46
#define LAPACK_ROW_MAJOR
Definition lapacke.h:52
lapack_int LAPACKE_stgexc_work(int matrix_layout, lapack_logical wantq, lapack_logical wantz, lapack_int n, float *a, lapack_int lda, float *b, lapack_int ldb, float *q, lapack_int ldq, float *z, lapack_int ldz, lapack_int *ifst, lapack_int *ilst, float *work, lapack_int lwork)
int LAPACKE_get_nancheck(void)
#define LAPACKE_malloc(size)
Definition lapacke.h:43
void LAPACKE_xerbla(const char *name, lapack_int info)
lapack_logical LAPACKE_sge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const float *a, lapack_int lda)
n