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

Go to the source code of this file.

Functions

lapack_int LAPACKE_dsygvd_work (int matrix_layout, lapack_int itype, char jobz, char uplo, lapack_int n, double *a, lapack_int lda, double *b, lapack_int ldb, double *w, double *work, lapack_int lwork, lapack_int *iwork, lapack_int liwork)

Function Documentation

◆ LAPACKE_dsygvd_work()

lapack_int LAPACKE_dsygvd_work ( int matrix_layout,
lapack_int itype,
char jobz,
char uplo,
lapack_int n,
double * a,
lapack_int lda,
double * b,
lapack_int ldb,
double * w,
double * work,
lapack_int lwork,
lapack_int * iwork,
lapack_int liwork )

Definition at line 35 of file lapacke_dsygvd_work.c.

40{
41 lapack_int info = 0;
42 if( matrix_layout == LAPACK_COL_MAJOR ) {
43 /* Call LAPACK function and adjust info */
44 LAPACK_dsygvd( &itype, &jobz, &uplo, &n, a, &lda, b, &ldb, w, 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 lda_t = MAX(1,n);
51 lapack_int ldb_t = MAX(1,n);
52 double* a_t = NULL;
53 double* b_t = NULL;
54 /* Check leading dimension(s) */
55 if( lda < n ) {
56 info = -7;
57 LAPACKE_xerbla( "LAPACKE_dsygvd_work", info );
58 return info;
59 }
60 if( ldb < n ) {
61 info = -9;
62 LAPACKE_xerbla( "LAPACKE_dsygvd_work", info );
63 return info;
64 }
65 /* Query optimal working array(s) size if requested */
66 if( liwork == -1 || lwork == -1 ) {
67 LAPACK_dsygvd( &itype, &jobz, &uplo, &n, a, &lda_t, b, &ldb_t, w,
68 work, &lwork, iwork, &liwork, &info );
69 return (info < 0) ? (info - 1) : info;
70 }
71 /* Allocate memory for temporary array(s) */
72 a_t = (double*)LAPACKE_malloc( sizeof(double) * lda_t * MAX(1,n) );
73 if( a_t == NULL ) {
75 goto exit_level_0;
76 }
77 b_t = (double*)LAPACKE_malloc( sizeof(double) * ldb_t * MAX(1,n) );
78 if( b_t == NULL ) {
80 goto exit_level_1;
81 }
82 /* Transpose input matrices */
83 LAPACKE_dge_trans( matrix_layout, n, n, a, lda, a_t, lda_t );
84 LAPACKE_dge_trans( matrix_layout, n, n, b, ldb, b_t, ldb_t );
85 /* Call LAPACK function and adjust info */
86 LAPACK_dsygvd( &itype, &jobz, &uplo, &n, a_t, &lda_t, b_t, &ldb_t, w,
87 work, &lwork, iwork, &liwork, &info );
88 if( info < 0 ) {
89 info = info - 1;
90 }
91 /* Transpose output matrices */
92 LAPACKE_dge_trans( LAPACK_COL_MAJOR, n, n, a_t, lda_t, a, lda );
93 LAPACKE_dge_trans( LAPACK_COL_MAJOR, n, n, b_t, ldb_t, b, ldb );
94 /* Release memory and exit */
95 LAPACKE_free( b_t );
96exit_level_1:
97 LAPACKE_free( a_t );
98exit_level_0:
99 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
100 LAPACKE_xerbla( "LAPACKE_dsygvd_work", info );
101 }
102 } else {
103 info = -1;
104 LAPACKE_xerbla( "LAPACKE_dsygvd_work", info );
105 }
106 return info;
107}
#define LAPACK_dsygvd(...)
Definition lapack.h:17464
#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
void LAPACKE_xerbla(const char *name, lapack_int info)
#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