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

Go to the source code of this file.

Functions

lapack_int LAPACKE_chesvx_work (int matrix_layout, char fact, char uplo, lapack_int n, lapack_int nrhs, const lapack_complex_float *a, lapack_int lda, lapack_complex_float *af, lapack_int ldaf, lapack_int *ipiv, const lapack_complex_float *b, lapack_int ldb, lapack_complex_float *x, lapack_int ldx, float *rcond, float *ferr, float *berr, lapack_complex_float *work, lapack_int lwork, float *rwork)

Function Documentation

◆ LAPACKE_chesvx_work()

lapack_int LAPACKE_chesvx_work ( int matrix_layout,
char fact,
char uplo,
lapack_int n,
lapack_int nrhs,
const lapack_complex_float * a,
lapack_int lda,
lapack_complex_float * af,
lapack_int ldaf,
lapack_int * ipiv,
const lapack_complex_float * b,
lapack_int ldb,
lapack_complex_float * x,
lapack_int ldx,
float * rcond,
float * ferr,
float * berr,
lapack_complex_float * work,
lapack_int lwork,
float * rwork )

Definition at line 35 of file lapacke_chesvx_work.c.

44{
45 lapack_int info = 0;
46 if( matrix_layout == LAPACK_COL_MAJOR ) {
47 /* Call LAPACK function and adjust info */
48 LAPACK_chesvx( &fact, &uplo, &n, &nrhs, a, &lda, af, &ldaf, ipiv, b,
49 &ldb, x, &ldx, rcond, ferr, berr, work, &lwork, rwork,
50 &info );
51 if( info < 0 ) {
52 info = info - 1;
53 }
54 } else if( matrix_layout == LAPACK_ROW_MAJOR ) {
55 lapack_int lda_t = MAX(1,n);
56 lapack_int ldaf_t = MAX(1,n);
57 lapack_int ldb_t = MAX(1,n);
58 lapack_int ldx_t = MAX(1,n);
59 lapack_complex_float* a_t = NULL;
60 lapack_complex_float* af_t = NULL;
61 lapack_complex_float* b_t = NULL;
62 lapack_complex_float* x_t = NULL;
63 /* Check leading dimension(s) */
64 if( lda < n ) {
65 info = -7;
66 LAPACKE_xerbla( "LAPACKE_chesvx_work", info );
67 return info;
68 }
69 if( ldaf < n ) {
70 info = -9;
71 LAPACKE_xerbla( "LAPACKE_chesvx_work", info );
72 return info;
73 }
74 if( ldb < nrhs ) {
75 info = -12;
76 LAPACKE_xerbla( "LAPACKE_chesvx_work", info );
77 return info;
78 }
79 if( ldx < nrhs ) {
80 info = -14;
81 LAPACKE_xerbla( "LAPACKE_chesvx_work", info );
82 return info;
83 }
84 /* Query optimal working array(s) size if requested */
85 if( lwork == -1 ) {
86 LAPACK_chesvx( &fact, &uplo, &n, &nrhs, a, &lda_t, af, &ldaf_t,
87 ipiv, b, &ldb_t, x, &ldx_t, rcond, ferr, berr, work,
88 &lwork, rwork, &info );
89 return (info < 0) ? (info - 1) : info;
90 }
91 /* Allocate memory for temporary array(s) */
93 LAPACKE_malloc( sizeof(lapack_complex_float) * lda_t * MAX(1,n) );
94 if( a_t == NULL ) {
96 goto exit_level_0;
97 }
98 af_t = (lapack_complex_float*)
99 LAPACKE_malloc( sizeof(lapack_complex_float) * ldaf_t * MAX(1,n) );
100 if( af_t == NULL ) {
102 goto exit_level_1;
103 }
104 b_t = (lapack_complex_float*)
106 ldb_t * MAX(1,nrhs) );
107 if( b_t == NULL ) {
109 goto exit_level_2;
110 }
111 x_t = (lapack_complex_float*)
113 ldx_t * MAX(1,nrhs) );
114 if( x_t == NULL ) {
116 goto exit_level_3;
117 }
118 /* Transpose input matrices */
119 LAPACKE_che_trans( matrix_layout, uplo, n, a, lda, a_t, lda_t );
120 if( LAPACKE_lsame( fact, 'f' ) ) {
121 LAPACKE_che_trans( matrix_layout, uplo, n, af, ldaf, af_t, ldaf_t );
122 }
123 LAPACKE_cge_trans( matrix_layout, n, nrhs, b, ldb, b_t, ldb_t );
124 /* Call LAPACK function and adjust info */
125 LAPACK_chesvx( &fact, &uplo, &n, &nrhs, a_t, &lda_t, af_t, &ldaf_t,
126 ipiv, b_t, &ldb_t, x_t, &ldx_t, rcond, ferr, berr, work,
127 &lwork, rwork, &info );
128 if( info < 0 ) {
129 info = info - 1;
130 }
131 /* Transpose output matrices */
132 if( LAPACKE_lsame( fact, 'n' ) ) {
133 LAPACKE_che_trans( LAPACK_COL_MAJOR, uplo, n, af_t, ldaf_t, af,
134 ldaf );
135 }
136 LAPACKE_cge_trans( LAPACK_COL_MAJOR, n, nrhs, x_t, ldx_t, x, ldx );
137 /* Release memory and exit */
138 LAPACKE_free( x_t );
139exit_level_3:
140 LAPACKE_free( b_t );
141exit_level_2:
142 LAPACKE_free( af_t );
143exit_level_1:
144 LAPACKE_free( a_t );
145exit_level_0:
146 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
147 LAPACKE_xerbla( "LAPACKE_chesvx_work", info );
148 }
149 } else {
150 info = -1;
151 LAPACKE_xerbla( "LAPACKE_chesvx_work", info );
152 }
153 return info;
154}
#define lapack_int
Definition lapack.h:83
#define lapack_complex_float
Definition lapack.h:45
#define LAPACK_chesvx(...)
Definition lapack.h:7577
#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_che_trans(int matrix_layout, char uplo, lapack_int n, const lapack_complex_float *in, lapack_int ldin, lapack_complex_float *out, lapack_int ldout)
#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