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

Go to the source code of this file.

Functions

lapack_int LAPACKE_csysv_rk (int matrix_layout, char uplo, lapack_int n, lapack_int nrhs, lapack_complex_float *a, lapack_int lda, lapack_complex_float *e, lapack_int *ipiv, lapack_complex_float *b, lapack_int ldb)

Function Documentation

◆ LAPACKE_csysv_rk()

lapack_int LAPACKE_csysv_rk ( int matrix_layout,
char uplo,
lapack_int n,
lapack_int nrhs,
lapack_complex_float * a,
lapack_int lda,
lapack_complex_float * e,
lapack_int * ipiv,
lapack_complex_float * b,
lapack_int ldb )

Definition at line 35 of file lapacke_csysv_rk.c.

40{
41 lapack_int info = 0;
42 lapack_int lwork = -1;
43 lapack_complex_float* work = NULL;
44 lapack_complex_float work_query;
45 if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
46 LAPACKE_xerbla( "LAPACKE_csysv_rk", -1 );
47 return -1;
48 }
49#ifndef LAPACK_DISABLE_NAN_CHECK
50 if( LAPACKE_get_nancheck() ) {
51 /* Optionally check input matrices for NaNs */
52 if( LAPACKE_csy_nancheck( matrix_layout, uplo, n, a, lda ) ) {
53 return -5;
54 }
55 if( LAPACKE_cge_nancheck( matrix_layout, n, nrhs, b, ldb ) ) {
56 return -9;
57 }
58 }
59#endif
60 /* Query optimal working array(s) size */
61 info = LAPACKE_csysv_rk_work( matrix_layout, uplo, n, nrhs, a, lda, e, ipiv, b,
62 ldb, &work_query, lwork );
63 if( info != 0 ) {
64 goto exit_level_0;
65 }
66 lwork = LAPACK_C2INT( work_query );
67 /* Allocate memory for work arrays */
68 work = (lapack_complex_float*)
69 LAPACKE_malloc( sizeof(lapack_complex_float) * lwork );
70 if( work == NULL ) {
72 goto exit_level_0;
73 }
74 /* Call middle-level interface */
75 info = LAPACKE_csysv_rk_work( matrix_layout, uplo, n, nrhs, a, lda, e, ipiv, b,
76 ldb, work, lwork );
77 /* Release memory and exit */
78 LAPACKE_free( work );
79exit_level_0:
80 if( info == LAPACK_WORK_MEMORY_ERROR ) {
81 LAPACKE_xerbla( "LAPACKE_csysv_rk", info );
82 }
83 return info;
84}
#define lapack_int
Definition lapack.h:83
#define lapack_complex_float
Definition lapack.h:45
#define LAPACK_WORK_MEMORY_ERROR
Definition lapacke.h:55
#define LAPACK_COL_MAJOR
Definition lapacke.h:53
#define LAPACK_C2INT(x)
Definition lapacke.h:49
#define LAPACKE_free(p)
Definition lapacke.h:46
#define LAPACK_ROW_MAJOR
Definition lapacke.h:52
int LAPACKE_get_nancheck(void)
lapack_int LAPACKE_csysv_rk_work(int matrix_layout, char uplo, lapack_int n, lapack_int nrhs, lapack_complex_float *a, lapack_int lda, lapack_complex_float *e, lapack_int *ipiv, lapack_complex_float *b, lapack_int ldb, lapack_complex_float *work, lapack_int lwork)
#define LAPACKE_malloc(size)
Definition lapacke.h:43
void LAPACKE_xerbla(const char *name, lapack_int info)
lapack_logical LAPACKE_csy_nancheck(int matrix_layout, char uplo, lapack_int n, const lapack_complex_float *a, lapack_int lda)
lapack_logical LAPACKE_cge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_float *a, lapack_int lda)
n