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

Go to the source code of this file.

Functions

lapack_int LAPACKE_zhbtrd_work (int matrix_layout, char vect, char uplo, lapack_int n, lapack_int kd, lapack_complex_double *ab, lapack_int ldab, double *d, double *e, lapack_complex_double *q, lapack_int ldq, lapack_complex_double *work)

Function Documentation

◆ LAPACKE_zhbtrd_work()

lapack_int LAPACKE_zhbtrd_work ( int matrix_layout,
char vect,
char uplo,
lapack_int n,
lapack_int kd,
lapack_complex_double * ab,
lapack_int ldab,
double * d,
double * e,
lapack_complex_double * q,
lapack_int ldq,
lapack_complex_double * work )

Definition at line 35 of file lapacke_zhbtrd_work.c.

40{
41 lapack_int info = 0;
42 if( matrix_layout == LAPACK_COL_MAJOR ) {
43 /* Call LAPACK function and adjust info */
44 LAPACK_zhbtrd( &vect, &uplo, &n, &kd, ab, &ldab, d, e, q, &ldq, work,
45 &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 ldq_t = MAX(1,n);
52 lapack_complex_double* ab_t = NULL;
53 lapack_complex_double* q_t = NULL;
54 /* Check leading dimension(s) */
55 if( ldab < n ) {
56 info = -7;
57 LAPACKE_xerbla( "LAPACKE_zhbtrd_work", info );
58 return info;
59 }
60 if( ldq < n ) {
61 info = -11;
62 LAPACKE_xerbla( "LAPACKE_zhbtrd_work", info );
63 return info;
64 }
65 /* Allocate memory for temporary array(s) */
66 ab_t = (lapack_complex_double*)
67 LAPACKE_malloc( sizeof(lapack_complex_double) * ldab_t * MAX(1,n) );
68 if( ab_t == NULL ) {
70 goto exit_level_0;
71 }
72 if( LAPACKE_lsame( vect, 'u' ) || LAPACKE_lsame( vect, 'v' ) ) {
75 ldq_t * MAX(1,n) );
76 if( q_t == NULL ) {
78 goto exit_level_1;
79 }
80 }
81 /* Transpose input matrices */
82 LAPACKE_zhb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t );
83 if( LAPACKE_lsame( vect, 'u' ) || LAPACKE_lsame( vect, 'v' ) ) {
84 LAPACKE_zge_trans( matrix_layout, n, n, q, ldq, q_t, ldq_t );
85 }
86 /* Call LAPACK function and adjust info */
87 LAPACK_zhbtrd( &vect, &uplo, &n, &kd, ab_t, &ldab_t, d, e, q_t, &ldq_t,
88 work, &info );
89 if( info < 0 ) {
90 info = info - 1;
91 }
92 /* Transpose output matrices */
93 LAPACKE_zhb_trans( LAPACK_COL_MAJOR, uplo, n, kd, ab_t, ldab_t, ab,
94 ldab );
95 if( LAPACKE_lsame( vect, 'u' ) || LAPACKE_lsame( vect, 'v' ) ) {
96 LAPACKE_zge_trans( LAPACK_COL_MAJOR, n, n, q_t, ldq_t, q, ldq );
97 }
98 /* Release memory and exit */
99 if( LAPACKE_lsame( vect, 'u' ) || LAPACKE_lsame( vect, 'v' ) ) {
100 LAPACKE_free( q_t );
101 }
102exit_level_1:
103 LAPACKE_free( ab_t );
104exit_level_0:
105 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
106 LAPACKE_xerbla( "LAPACKE_zhbtrd_work", info );
107 }
108 } else {
109 info = -1;
110 LAPACKE_xerbla( "LAPACKE_zhbtrd_work", info );
111 }
112 return info;
113}
#define lapack_int
Definition lapack.h:83
#define LAPACK_zhbtrd(...)
Definition lapack.h:6597
#define lapack_complex_double
Definition lapack.h:63
#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_zge_trans(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_double *in, lapack_int ldin, lapack_complex_double *out, lapack_int ldout)
#define MAX(x, y)
void LAPACKE_zhb_trans(int matrix_layout, char uplo, lapack_int n, lapack_int kd, const lapack_complex_double *in, lapack_int ldin, lapack_complex_double *out, lapack_int ldout)
n