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

Go to the source code of this file.

Functions

lapack_int LAPACKE_sspsvx_work (int matrix_layout, char fact, char uplo, lapack_int n, lapack_int nrhs, const float *ap, float *afp, lapack_int *ipiv, const float *b, lapack_int ldb, float *x, lapack_int ldx, float *rcond, float *ferr, float *berr, float *work, lapack_int *iwork)

Function Documentation

◆ LAPACKE_sspsvx_work()

lapack_int LAPACKE_sspsvx_work ( int matrix_layout,
char fact,
char uplo,
lapack_int n,
lapack_int nrhs,
const float * ap,
float * afp,
lapack_int * ipiv,
const float * b,
lapack_int ldb,
float * x,
lapack_int ldx,
float * rcond,
float * ferr,
float * berr,
float * work,
lapack_int * iwork )

Definition at line 35 of file lapacke_sspsvx_work.c.

41{
42 lapack_int info = 0;
43 if( matrix_layout == LAPACK_COL_MAJOR ) {
44 /* Call LAPACK function and adjust info */
45 LAPACK_sspsvx( &fact, &uplo, &n, &nrhs, ap, afp, ipiv, b, &ldb, x, &ldx,
46 rcond, ferr, berr, work, iwork, &info );
47 if( info < 0 ) {
48 info = info - 1;
49 }
50 } else if( matrix_layout == LAPACK_ROW_MAJOR ) {
51 lapack_int ldb_t = MAX(1,n);
52 lapack_int ldx_t = MAX(1,n);
53 float* b_t = NULL;
54 float* x_t = NULL;
55 float* ap_t = NULL;
56 float* afp_t = NULL;
57 /* Check leading dimension(s) */
58 if( ldb < nrhs ) {
59 info = -10;
60 LAPACKE_xerbla( "LAPACKE_sspsvx_work", info );
61 return info;
62 }
63 if( ldx < nrhs ) {
64 info = -12;
65 LAPACKE_xerbla( "LAPACKE_sspsvx_work", info );
66 return info;
67 }
68 /* Allocate memory for temporary array(s) */
69 b_t = (float*)LAPACKE_malloc( sizeof(float) * ldb_t * MAX(1,nrhs) );
70 if( b_t == NULL ) {
72 goto exit_level_0;
73 }
74 x_t = (float*)LAPACKE_malloc( sizeof(float) * ldx_t * MAX(1,nrhs) );
75 if( x_t == NULL ) {
77 goto exit_level_1;
78 }
79 ap_t = (float*)
80 LAPACKE_malloc( sizeof(float) * ( MAX(1,n) * MAX(2,n+1) ) / 2 );
81 if( ap_t == NULL ) {
83 goto exit_level_2;
84 }
85 afp_t = (float*)
86 LAPACKE_malloc( sizeof(float) * ( MAX(1,n) * MAX(2,n+1) ) / 2 );
87 if( afp_t == NULL ) {
89 goto exit_level_3;
90 }
91 /* Transpose input matrices */
92 LAPACKE_sge_trans( matrix_layout, n, nrhs, b, ldb, b_t, ldb_t );
93 LAPACKE_ssp_trans( matrix_layout, uplo, n, ap, ap_t );
94 if( LAPACKE_lsame( fact, 'f' ) ) {
95 LAPACKE_ssp_trans( matrix_layout, uplo, n, afp, afp_t );
96 }
97 /* Call LAPACK function and adjust info */
98 LAPACK_sspsvx( &fact, &uplo, &n, &nrhs, ap_t, afp_t, ipiv, b_t, &ldb_t,
99 x_t, &ldx_t, rcond, ferr, berr, work, iwork, &info );
100 if( info < 0 ) {
101 info = info - 1;
102 }
103 /* Transpose output matrices */
104 LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, nrhs, x_t, ldx_t, x, ldx );
105 if( LAPACKE_lsame( fact, 'n' ) ) {
106 LAPACKE_ssp_trans( LAPACK_COL_MAJOR, uplo, n, afp_t, afp );
107 }
108 /* Release memory and exit */
109 LAPACKE_free( afp_t );
110exit_level_3:
111 LAPACKE_free( ap_t );
112exit_level_2:
113 LAPACKE_free( x_t );
114exit_level_1:
115 LAPACKE_free( b_t );
116exit_level_0:
117 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
118 LAPACKE_xerbla( "LAPACKE_sspsvx_work", info );
119 }
120 } else {
121 info = -1;
122 LAPACKE_xerbla( "LAPACKE_sspsvx_work", info );
123 }
124 return info;
125}
#define LAPACK_sspsvx(...)
Definition lapack.h:15808
#define lapack_int
Definition lapack.h:83
#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_ssp_trans(int matrix_layout, char uplo, lapack_int n, const float *in, float *out)
void LAPACKE_sge_trans(int matrix_layout, lapack_int m, lapack_int n, const float *in, lapack_int ldin, float *out, lapack_int ldout)
#define MAX(x, y)
n