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

Go to the source code of this file.

Functions

lapack_int LAPACKE_dsbevd_2stage_work (int matrix_layout, char jobz, char uplo, lapack_int n, lapack_int kd, double *ab, lapack_int ldab, double *w, double *z, lapack_int ldz, double *work, lapack_int lwork, lapack_int *iwork, lapack_int liwork)

Function Documentation

◆ LAPACKE_dsbevd_2stage_work()

lapack_int LAPACKE_dsbevd_2stage_work ( int matrix_layout,
char jobz,
char uplo,
lapack_int n,
lapack_int kd,
double * ab,
lapack_int ldab,
double * w,
double * z,
lapack_int ldz,
double * work,
lapack_int lwork,
lapack_int * iwork,
lapack_int liwork )

Definition at line 35 of file lapacke_dsbevd_2stage_work.c.

40{
41 lapack_int info = 0;
42 if( matrix_layout == LAPACK_COL_MAJOR ) {
43 /* Call LAPACK function and adjust info */
44 LAPACK_dsbevd_2stage( &jobz, &uplo, &n, &kd, ab, &ldab, w, z, &ldz, work,
45 &lwork, iwork, &liwork, &info );
46 if( info < 0 ) {
47 info = info - 1;
48 }
49 } else if( matrix_layout == LAPACK_ROW_MAJOR ) {
50 lapack_int ldab_t = MAX(1,kd+1);
51 lapack_int ldz_t = MAX(1,n);
52 double* ab_t = NULL;
53 double* z_t = NULL;
54 /* Check leading dimension(s) */
55 if( ldab < n ) {
56 info = -7;
57 LAPACKE_xerbla( "LAPACKE_dsbevd_2stage_work", info );
58 return info;
59 }
60 if( ldz < n ) {
61 info = -10;
62 LAPACKE_xerbla( "LAPACKE_dsbevd_2stage_work", info );
63 return info;
64 }
65 /* Query optimal working array(s) size if requested */
66 if( liwork == -1 || lwork == -1 ) {
67 LAPACK_dsbevd_2stage( &jobz, &uplo, &n, &kd, ab, &ldab_t, w, z, &ldz_t,
68 work, &lwork, iwork, &liwork, &info );
69 return (info < 0) ? (info - 1) : info;
70 }
71 /* Allocate memory for temporary array(s) */
72 ab_t = (double*)LAPACKE_malloc( sizeof(double) * ldab_t * MAX(1,n) );
73 if( ab_t == NULL ) {
75 goto exit_level_0;
76 }
77 if( LAPACKE_lsame( jobz, 'v' ) ) {
78 z_t = (double*)LAPACKE_malloc( sizeof(double) * ldz_t * MAX(1,n) );
79 if( z_t == NULL ) {
81 goto exit_level_1;
82 }
83 }
84 /* Transpose input matrices */
85 LAPACKE_dsb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t );
86 /* Call LAPACK function and adjust info */
87 LAPACK_dsbevd_2stage( &jobz, &uplo, &n, &kd, ab_t, &ldab_t, w, z_t, &ldz_t,
88 work, &lwork, iwork, &liwork, &info );
89 if( info < 0 ) {
90 info = info - 1;
91 }
92 /* Transpose output matrices */
93 LAPACKE_dsb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab,
94 ldab );
95 if( LAPACKE_lsame( jobz, 'v' ) ) {
96 LAPACKE_dge_trans( LAPACK_COL_MAJOR, n, n, z_t, ldz_t, z, ldz );
97 }
98 /* Release memory and exit */
99 if( LAPACKE_lsame( jobz, 'v' ) ) {
100 LAPACKE_free( z_t );
101 }
102exit_level_1:
103 LAPACKE_free( ab_t );
104exit_level_0:
105 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
106 LAPACKE_xerbla( "LAPACKE_dsbevd_2stage_work", info );
107 }
108 } else {
109 info = -1;
110 LAPACKE_xerbla( "LAPACKE_dsbevd_2stage_work", info );
111 }
112 return info;
113}
#define LAPACK_dsbevd_2stage(...)
Definition lapack.h:14848
#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_dsb_trans(int matrix_layout, char uplo, lapack_int n, lapack_int kd, const double *in, lapack_int ldin, double *out, lapack_int ldout)
#define MAX(x, y)
void LAPACKE_dge_trans(int matrix_layout, lapack_int m, lapack_int n, const double *in, lapack_int ldin, double *out, lapack_int ldout)
n