LAPACK 3.11.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ LAPACKE_chetrs_aa_2stage_work()

lapack_int LAPACKE_chetrs_aa_2stage_work ( int  matrix_layout,
char  uplo,
lapack_int  n,
lapack_int  nrhs,
lapack_complex_float a,
lapack_int  lda,
lapack_complex_float tb,
lapack_int  ltb,
lapack_int ipiv,
lapack_int ipiv2,
lapack_complex_float b,
lapack_int  ldb 
)

Definition at line 35 of file lapacke_chetrs_aa_2stage_work.c.

39{
40 lapack_int info = 0;
41 if( matrix_layout == LAPACK_COL_MAJOR ) {
42 /* Call LAPACK function and adjust info */
43 LAPACK_chetrs_aa_2stage( &uplo, &n, &nrhs, a, &lda, tb,
44 &ltb, ipiv, ipiv2, b, &ldb,
45 &info );
46 if( info < 0 ) {
47 info = info - 1;
48 }
49 } else if( matrix_layout == LAPACK_ROW_MAJOR ) {
50 lapack_int lda_t = MAX(1,n);
51 lapack_int ldb_t = MAX(1,n);
52 lapack_complex_float* a_t = NULL;
53 lapack_complex_float* tb_t = NULL;
54 lapack_complex_float* b_t = NULL;
55 /* Check leading dimension(s) */
56 if( lda < n ) {
57 info = -6;
58 LAPACKE_xerbla( "LAPACKE_chetrs_aa_2stage_work", info );
59 return info;
60 }
61 if( ltb < 4*n ) {
62 info = -8;
63 LAPACKE_xerbla( "LAPACKE_chetrs_aa_2stage_work", info );
64 return info;
65 }
66 if( ldb < nrhs ) {
67 info = -12;
68 LAPACKE_xerbla( "LAPACKE_chetrs_aa_2stage_work", info );
69 return info;
70 }
71 /* Allocate memory for temporary array(s) */
72 a_t = (lapack_complex_float*)LAPACKE_malloc( sizeof(lapack_complex_float) * lda_t * MAX(1,n) );
73 if( a_t == NULL ) {
75 goto exit_level_0;
76 }
78 if( tb_t == NULL ) {
80 goto exit_level_1;
81 }
82 b_t = (lapack_complex_float*)LAPACKE_malloc( sizeof(lapack_complex_float) * ldb_t * MAX(1,nrhs) );
83 if( b_t == NULL ) {
85 goto exit_level_2;
86 }
87 /* Transpose input matrices */
88 LAPACKE_che_trans( matrix_layout, uplo, n, a, lda, a_t, lda_t );
89 LAPACKE_cge_trans( matrix_layout, n, nrhs, b, ldb, b_t, ldb_t );
90 /* Call LAPACK function and adjust info */
91 LAPACK_chetrs_aa_2stage( &uplo, &n, &nrhs, a_t, &lda_t,
92 tb_t, &ltb, ipiv, ipiv2, b_t, &ldb_t, &info );
93 if( info < 0 ) {
94 info = info - 1;
95 }
96 /* Transpose output matrices */
97 LAPACKE_che_trans( LAPACK_COL_MAJOR, uplo, n, a_t, lda_t, a, lda );
98 LAPACKE_cge_trans( LAPACK_COL_MAJOR, n, nrhs, b_t, ldb_t, b, ldb );
99 /* Release memory and exit */
100 LAPACKE_free( b_t );
101exit_level_2:
102 LAPACKE_free( tb_t );
103exit_level_1:
104 LAPACKE_free( a_t );
105exit_level_0:
106 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
107 LAPACKE_xerbla( "LAPACKE_chetrs_aa_2stage_work", info );
108 }
109 } else {
110 info = -1;
111 LAPACKE_xerbla( "LAPACKE_chetrs_aa_2stage_work", info );
112 }
113 return info;
114}
#define LAPACK_chetrs_aa_2stage(...)
Definition: lapack.h:8259
#define lapack_int
Definition: lapack.h:87
#define lapack_complex_float
Definition: lapack.h:46
#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)
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)
Definition: lapacke_utils.h:46
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)
Here is the call graph for this function:
Here is the caller graph for this function: