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

Go to the source code of this file.

Functions

lapack_int LAPACKE_sspcon_work (int matrix_layout, char uplo, lapack_int n, const float *ap, const lapack_int *ipiv, float anorm, float *rcond, float *work, lapack_int *iwork)

Function Documentation

◆ LAPACKE_sspcon_work()

lapack_int LAPACKE_sspcon_work ( int matrix_layout,
char uplo,
lapack_int n,
const float * ap,
const lapack_int * ipiv,
float anorm,
float * rcond,
float * work,
lapack_int * iwork )

Definition at line 35 of file lapacke_sspcon_work.c.

39{
40 lapack_int info = 0;
41 if( matrix_layout == LAPACK_COL_MAJOR ) {
42 /* Call LAPACK function and adjust info */
43 LAPACK_sspcon( &uplo, &n, ap, ipiv, &anorm, rcond, work, iwork, &info );
44 if( info < 0 ) {
45 info = info - 1;
46 }
47 } else if( matrix_layout == LAPACK_ROW_MAJOR ) {
48 float* ap_t = NULL;
49 /* Allocate memory for temporary array(s) */
50 ap_t = (float*)
51 LAPACKE_malloc( sizeof(float) * ( MAX(1,n) * MAX(2,n+1) ) / 2 );
52 if( ap_t == NULL ) {
54 goto exit_level_0;
55 }
56 /* Transpose input matrices */
57 LAPACKE_ssp_trans( matrix_layout, uplo, n, ap, ap_t );
58 /* Call LAPACK function and adjust info */
59 LAPACK_sspcon( &uplo, &n, ap_t, ipiv, &anorm, rcond, work, iwork,
60 &info );
61 if( info < 0 ) {
62 info = info - 1;
63 }
64 /* Release memory and exit */
65 LAPACKE_free( ap_t );
66exit_level_0:
67 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
68 LAPACKE_xerbla( "LAPACKE_sspcon_work", info );
69 }
70 } else {
71 info = -1;
72 LAPACKE_xerbla( "LAPACKE_sspcon_work", info );
73 }
74 return info;
75}
#define lapack_int
Definition lapack.h:83
#define LAPACK_sspcon(...)
Definition lapack.h:15269
#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_ssp_trans(int matrix_layout, char uplo, lapack_int n, const float *in, float *out)
#define MAX(x, y)
n