OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
lapacke_cggevx_work.c
Go to the documentation of this file.
1/*****************************************************************************
2 Copyright (c) 2014, Intel Corp.
3 All rights reserved.
4
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are met:
7
8 * Redistributions of source code must retain the above copyright notice,
9 this list of conditions and the following disclaimer.
10 * Redistributions in binary form must reproduce the above copyright
11 notice, this list of conditions and the following disclaimer in the
12 documentation and/or other materials provided with the distribution.
13 * Neither the name of Intel Corporation nor the names of its contributors
14 may be used to endorse or promote products derived from this software
15 without specific prior written permission.
16
17 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27 THE POSSIBILITY OF SUCH DAMAGE.
28*****************************************************************************
29* Contents: Native middle-level C interface to LAPACK function cggevx
30* Author: Intel Corporation
31*****************************************************************************/
32
33#include "lapacke_utils.h"
34
35lapack_int LAPACKE_cggevx_work( int matrix_layout, char balanc, char jobvl,
36 char jobvr, char sense, lapack_int n,
43 lapack_int* ilo, lapack_int* ihi, float* lscale,
44 float* rscale, float* abnrm, float* bbnrm,
45 float* rconde, float* rcondv,
47 float* rwork, lapack_int* iwork,
48 lapack_logical* bwork )
49{
50 lapack_int info = 0;
51 if( matrix_layout == LAPACK_COL_MAJOR ) {
52 /* Call LAPACK function and adjust info */
53 LAPACK_cggevx( &balanc, &jobvl, &jobvr, &sense, &n, a, &lda, b, &ldb,
54 alpha, beta, vl, &ldvl, vr, &ldvr, ilo, ihi, lscale,
55 rscale, abnrm, bbnrm, rconde, rcondv, work, &lwork,
56 rwork, iwork, bwork, &info );
57 if( info < 0 ) {
58 info = info - 1;
59 }
60 } else if( matrix_layout == LAPACK_ROW_MAJOR ) {
61 lapack_int lda_t = MAX(1,n);
62 lapack_int ldb_t = MAX(1,n);
63 lapack_int ldvl_t = MAX(1,n);
64 lapack_int ldvr_t = MAX(1,n);
65 lapack_complex_float* a_t = NULL;
66 lapack_complex_float* b_t = NULL;
67 lapack_complex_float* vl_t = NULL;
68 lapack_complex_float* vr_t = NULL;
69 /* Check leading dimension(s) */
70 if( lda < n ) {
71 info = -8;
72 LAPACKE_xerbla( "LAPACKE_cggevx_work", info );
73 return info;
74 }
75 if( ldb < n ) {
76 info = -10;
77 LAPACKE_xerbla( "LAPACKE_cggevx_work", info );
78 return info;
79 }
80 if( ldvl < n ) {
81 info = -14;
82 LAPACKE_xerbla( "LAPACKE_cggevx_work", info );
83 return info;
84 }
85 if( ldvr < n ) {
86 info = -16;
87 LAPACKE_xerbla( "LAPACKE_cggevx_work", info );
88 return info;
89 }
90 /* Query optimal working array(s) size if requested */
91 if( lwork == -1 ) {
92 LAPACK_cggevx( &balanc, &jobvl, &jobvr, &sense, &n, a, &lda_t, b,
93 &ldb_t, alpha, beta, vl, &ldvl_t, vr, &ldvr_t, ilo,
94 ihi, lscale, rscale, abnrm, bbnrm, rconde, rcondv,
95 work, &lwork, rwork, iwork, bwork, &info );
96 return (info < 0) ? (info - 1) : info;
97 }
98 /* Allocate memory for temporary array(s) */
100 LAPACKE_malloc( sizeof(lapack_complex_float) * lda_t * MAX(1,n) );
101 if( a_t == NULL ) {
103 goto exit_level_0;
104 }
105 b_t = (lapack_complex_float*)
106 LAPACKE_malloc( sizeof(lapack_complex_float) * ldb_t * MAX(1,n) );
107 if( b_t == NULL ) {
109 goto exit_level_1;
110 }
111 if( LAPACKE_lsame( jobvl, 'v' ) ) {
112 vl_t = (lapack_complex_float*)
114 ldvl_t * MAX(1,n) );
115 if( vl_t == NULL ) {
117 goto exit_level_2;
118 }
119 }
120 if( LAPACKE_lsame( jobvr, 'v' ) ) {
121 vr_t = (lapack_complex_float*)
123 ldvr_t * MAX(1,n) );
124 if( vr_t == NULL ) {
126 goto exit_level_3;
127 }
128 }
129 /* Transpose input matrices */
130 LAPACKE_cge_trans( matrix_layout, n, n, a, lda, a_t, lda_t );
131 LAPACKE_cge_trans( matrix_layout, n, n, b, ldb, b_t, ldb_t );
132 /* Call LAPACK function and adjust info */
133 LAPACK_cggevx( &balanc, &jobvl, &jobvr, &sense, &n, a_t, &lda_t, b_t,
134 &ldb_t, alpha, beta, vl_t, &ldvl_t, vr_t, &ldvr_t, ilo,
135 ihi, lscale, rscale, abnrm, bbnrm, rconde, rcondv, work,
136 &lwork, rwork, iwork, bwork, &info );
137 if( info < 0 ) {
138 info = info - 1;
139 }
140 /* Transpose output matrices */
141 LAPACKE_cge_trans( LAPACK_COL_MAJOR, n, n, a_t, lda_t, a, lda );
142 LAPACKE_cge_trans( LAPACK_COL_MAJOR, n, n, b_t, ldb_t, b, ldb );
143 if( LAPACKE_lsame( jobvl, 'v' ) ) {
144 LAPACKE_cge_trans( LAPACK_COL_MAJOR, n, n, vl_t, ldvl_t, vl, ldvl );
145 }
146 if( LAPACKE_lsame( jobvr, 'v' ) ) {
147 LAPACKE_cge_trans( LAPACK_COL_MAJOR, n, n, vr_t, ldvr_t, vr, ldvr );
148 }
149 /* Release memory and exit */
150 if( LAPACKE_lsame( jobvr, 'v' ) ) {
151 LAPACKE_free( vr_t );
152 }
153exit_level_3:
154 if( LAPACKE_lsame( jobvl, 'v' ) ) {
155 LAPACKE_free( vl_t );
156 }
157exit_level_2:
158 LAPACKE_free( b_t );
159exit_level_1:
160 LAPACKE_free( a_t );
161exit_level_0:
162 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
163 LAPACKE_xerbla( "LAPACKE_cggevx_work", info );
164 }
165 } else {
166 info = -1;
167 LAPACKE_xerbla( "LAPACKE_cggevx_work", info );
168 }
169 return info;
170}
#define alpha
Definition eval.h:35
#define lapack_int
Definition lapack.h:83
#define lapack_complex_float
Definition lapack.h:45
#define lapack_logical
Definition lapack.h:87
#define LAPACK_cggevx(...)
Definition lapack.h:4851
#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_int LAPACKE_cggevx_work(int matrix_layout, char balanc, char jobvl, char jobvr, char sense, lapack_int n, lapack_complex_float *a, lapack_int lda, lapack_complex_float *b, lapack_int ldb, lapack_complex_float *alpha, lapack_complex_float *beta, lapack_complex_float *vl, lapack_int ldvl, lapack_complex_float *vr, lapack_int ldvr, lapack_int *ilo, lapack_int *ihi, float *lscale, float *rscale, float *abnrm, float *bbnrm, float *rconde, float *rcondv, lapack_complex_float *work, lapack_int lwork, float *rwork, lapack_int *iwork, lapack_logical *bwork)
lapack_logical LAPACKE_lsame(char ca, char cb)
void LAPACKE_xerbla(const char *name, lapack_int info)
#define MAX(x, y)
void LAPACKE_cge_trans(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_float *in, lapack_int ldin, lapack_complex_float *out, lapack_int ldout)
n