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

Go to the source code of this file.

Functions

lapack_int LAPACKE_ssbevd (int matrix_layout, char jobz, char uplo, lapack_int n, lapack_int kd, float *ab, lapack_int ldab, float *w, float *z, lapack_int ldz)

Function Documentation

◆ LAPACKE_ssbevd()

lapack_int LAPACKE_ssbevd ( int matrix_layout,
char jobz,
char uplo,
lapack_int n,
lapack_int kd,
float * ab,
lapack_int ldab,
float * w,
float * z,
lapack_int ldz )

Definition at line 35 of file lapacke_ssbevd.c.

38{
39 lapack_int info = 0;
40 lapack_int liwork = -1;
41 lapack_int lwork = -1;
42 lapack_int* iwork = NULL;
43 float* work = NULL;
44 lapack_int iwork_query;
45 float work_query;
46 if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
47 LAPACKE_xerbla( "LAPACKE_ssbevd", -1 );
48 return -1;
49 }
50#ifndef LAPACK_DISABLE_NAN_CHECK
51 if( LAPACKE_get_nancheck() ) {
52 /* Optionally check input matrices for NaNs */
53 if( LAPACKE_ssb_nancheck( matrix_layout, uplo, n, kd, ab, ldab ) ) {
54 return -6;
55 }
56 }
57#endif
58 /* Query optimal working array(s) size */
59 info = LAPACKE_ssbevd_work( matrix_layout, jobz, uplo, n, kd, ab, ldab, w, z,
60 ldz, &work_query, lwork, &iwork_query, liwork );
61 if( info != 0 ) {
62 goto exit_level_0;
63 }
64 liwork = iwork_query;
65 lwork = (lapack_int)work_query;
66 /* Allocate memory for work arrays */
67 iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * liwork );
68 if( iwork == NULL ) {
70 goto exit_level_0;
71 }
72 work = (float*)LAPACKE_malloc( sizeof(float) * lwork );
73 if( work == NULL ) {
75 goto exit_level_1;
76 }
77 /* Call middle-level interface */
78 info = LAPACKE_ssbevd_work( matrix_layout, jobz, uplo, n, kd, ab, ldab, w, z,
79 ldz, work, lwork, iwork, liwork );
80 /* Release memory and exit */
81 LAPACKE_free( work );
82exit_level_1:
83 LAPACKE_free( iwork );
84exit_level_0:
85 if( info == LAPACK_WORK_MEMORY_ERROR ) {
86 LAPACKE_xerbla( "LAPACKE_ssbevd", info );
87 }
88 return info;
89}
#define lapack_int
Definition lapack.h:83
#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
#define LAPACK_ROW_MAJOR
Definition lapacke.h:52
lapack_int LAPACKE_ssbevd_work(int matrix_layout, char jobz, char uplo, lapack_int n, lapack_int kd, float *ab, lapack_int ldab, float *w, float *z, lapack_int ldz, float *work, lapack_int lwork, lapack_int *iwork, lapack_int liwork)
int LAPACKE_get_nancheck(void)
#define LAPACKE_malloc(size)
Definition lapacke.h:43
void LAPACKE_xerbla(const char *name, lapack_int info)
lapack_logical LAPACKE_ssb_nancheck(int matrix_layout, char uplo, lapack_int n, lapack_int kd, const float *ab, lapack_int ldab)
n