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

Go to the source code of this file.

Functions

lapack_int LAPACKE_zsytrs_aa (int matrix_layout, char uplo, lapack_int n, lapack_int nrhs, const lapack_complex_double *a, lapack_int lda, const lapack_int *ipiv, lapack_complex_double *b, lapack_int ldb)

Function Documentation

◆ LAPACKE_zsytrs_aa()

lapack_int LAPACKE_zsytrs_aa ( int matrix_layout,
char uplo,
lapack_int n,
lapack_int nrhs,
const lapack_complex_double * a,
lapack_int lda,
const lapack_int * ipiv,
lapack_complex_double * b,
lapack_int ldb )

Definition at line 35 of file lapacke_zsytrs_aa.c.

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