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

Go to the source code of this file.

Functions

lapack_int LAPACKE_ztbrfs_work (int matrix_layout, char uplo, char trans, char diag, lapack_int n, lapack_int kd, lapack_int nrhs, const lapack_complex_double *ab, lapack_int ldab, const lapack_complex_double *b, lapack_int ldb, const lapack_complex_double *x, lapack_int ldx, double *ferr, double *berr, lapack_complex_double *work, double *rwork)

Function Documentation

◆ LAPACKE_ztbrfs_work()

lapack_int LAPACKE_ztbrfs_work ( int matrix_layout,
char uplo,
char trans,
char diag,
lapack_int n,
lapack_int kd,
lapack_int nrhs,
const lapack_complex_double * ab,
lapack_int ldab,
const lapack_complex_double * b,
lapack_int ldb,
const lapack_complex_double * x,
lapack_int ldx,
double * ferr,
double * berr,
lapack_complex_double * work,
double * rwork )

Definition at line 35 of file lapacke_ztbrfs_work.c.

43{
44 lapack_int info = 0;
45 if( matrix_layout == LAPACK_COL_MAJOR ) {
46 /* Call LAPACK function and adjust info */
47 LAPACK_ztbrfs( &uplo, &trans, &diag, &n, &kd, &nrhs, ab, &ldab, b, &ldb,
48 x, &ldx, ferr, berr, work, rwork, &info );
49 if( info < 0 ) {
50 info = info - 1;
51 }
52 } else if( matrix_layout == LAPACK_ROW_MAJOR ) {
53 lapack_int ldab_t = MAX(1,kd+1);
54 lapack_int ldb_t = MAX(1,n);
55 lapack_int ldx_t = MAX(1,n);
56 lapack_complex_double* ab_t = NULL;
57 lapack_complex_double* b_t = NULL;
58 lapack_complex_double* x_t = NULL;
59 /* Check leading dimension(s) */
60 if( ldab < n ) {
61 info = -9;
62 LAPACKE_xerbla( "LAPACKE_ztbrfs_work", info );
63 return info;
64 }
65 if( ldb < nrhs ) {
66 info = -11;
67 LAPACKE_xerbla( "LAPACKE_ztbrfs_work", info );
68 return info;
69 }
70 if( ldx < nrhs ) {
71 info = -13;
72 LAPACKE_xerbla( "LAPACKE_ztbrfs_work", info );
73 return info;
74 }
75 /* Allocate memory for temporary array(s) */
76 ab_t = (lapack_complex_double*)
77 LAPACKE_malloc( sizeof(lapack_complex_double) * ldab_t * MAX(1,n) );
78 if( ab_t == NULL ) {
80 goto exit_level_0;
81 }
84 ldb_t * MAX(1,nrhs) );
85 if( b_t == NULL ) {
87 goto exit_level_1;
88 }
91 ldx_t * MAX(1,nrhs) );
92 if( x_t == NULL ) {
94 goto exit_level_2;
95 }
96 /* Transpose input matrices */
97 LAPACKE_ztb_trans( matrix_layout, uplo, diag, n, kd, ab, ldab, ab_t,
98 ldab_t );
99 LAPACKE_zge_trans( matrix_layout, n, nrhs, b, ldb, b_t, ldb_t );
100 LAPACKE_zge_trans( matrix_layout, n, nrhs, x, ldx, x_t, ldx_t );
101 /* Call LAPACK function and adjust info */
102 LAPACK_ztbrfs( &uplo, &trans, &diag, &n, &kd, &nrhs, ab_t, &ldab_t, b_t,
103 &ldb_t, x_t, &ldx_t, ferr, berr, work, rwork, &info );
104 if( info < 0 ) {
105 info = info - 1;
106 }
107 /* Release memory and exit */
108 LAPACKE_free( x_t );
109exit_level_2:
110 LAPACKE_free( b_t );
111exit_level_1:
112 LAPACKE_free( ab_t );
113exit_level_0:
114 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
115 LAPACKE_xerbla( "LAPACKE_ztbrfs_work", info );
116 }
117 } else {
118 info = -1;
119 LAPACKE_xerbla( "LAPACKE_ztbrfs_work", info );
120 }
121 return info;
122}
#define lapack_int
Definition lapack.h:83
#define LAPACK_ztbrfs(...)
Definition lapack.h:19700
#define lapack_complex_double
Definition lapack.h:63
#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_zge_trans(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_double *in, lapack_int ldin, lapack_complex_double *out, lapack_int ldout)
#define MAX(x, y)
void LAPACKE_ztb_trans(int matrix_layout, char uplo, char diag, lapack_int n, lapack_int kd, const lapack_complex_double *in, lapack_int ldin, lapack_complex_double *out, lapack_int ldout)
n