LAPACK  3.10.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_chbtrd_work()

lapack_int LAPACKE_chbtrd_work ( int  matrix_layout,
char  vect,
char  uplo,
lapack_int  n,
lapack_int  kd,
lapack_complex_float ab,
lapack_int  ldab,
float *  d,
float *  e,
lapack_complex_float q,
lapack_int  ldq,
lapack_complex_float work 
)

Definition at line 35 of file lapacke_chbtrd_work.c.

40 {
41  lapack_int info = 0;
42  if( matrix_layout == LAPACK_COL_MAJOR ) {
43  /* Call LAPACK function and adjust info */
44  LAPACK_chbtrd( &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_float* ab_t = NULL;
53  lapack_complex_float* q_t = NULL;
54  /* Check leading dimension(s) */
55  if( ldab < n ) {
56  info = -7;
57  LAPACKE_xerbla( "LAPACKE_chbtrd_work", info );
58  return info;
59  }
60  if( ldq < n ) {
61  info = -11;
62  LAPACKE_xerbla( "LAPACKE_chbtrd_work", info );
63  return info;
64  }
65  /* Allocate memory for temporary array(s) */
66  ab_t = (lapack_complex_float*)
67  LAPACKE_malloc( sizeof(lapack_complex_float) * 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' ) ) {
73  q_t = (lapack_complex_float*)
75  ldq_t * MAX(1,n) );
76  if( q_t == NULL ) {
78  goto exit_level_1;
79  }
80  }
81  /* Transpose input matrices */
82  LAPACKE_chb_trans( matrix_layout, uplo, n, kd, ab, ldab, ab_t, ldab_t );
83  if( LAPACKE_lsame( vect, 'u' ) || LAPACKE_lsame( vect, 'v' ) ) {
84  LAPACKE_cge_trans( matrix_layout, n, n, q, ldq, q_t, ldq_t );
85  }
86  /* Call LAPACK function and adjust info */
87  LAPACK_chbtrd( &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_chb_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_cge_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  }
102 exit_level_1:
103  LAPACKE_free( ab_t );
104 exit_level_0:
105  if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
106  LAPACKE_xerbla( "LAPACKE_chbtrd_work", info );
107  }
108  } else {
109  info = -1;
110  LAPACKE_xerbla( "LAPACKE_chbtrd_work", info );
111  }
112  return info;
113 }
#define lapack_int
Definition: lapack.h:83
#define lapack_complex_float
Definition: lapack.h:45
#define LAPACK_chbtrd(...)
Definition: lapack.h:6577
#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)
Definition: lapacke_lsame.c:35
void LAPACKE_xerbla(const char *name, lapack_int info)
#define MAX(x, y)
Definition: lapacke_utils.h:46
void LAPACKE_chb_trans(int matrix_layout, char uplo, lapack_int n, lapack_int kd, const lapack_complex_float *in, lapack_int ldin, lapack_complex_float *out, lapack_int ldout)
void LAPACKE_cge_trans(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_float *in, lapack_int ldin, lapack_complex_float *out, lapack_int ldout)
Here is the call graph for this function:
Here is the caller graph for this function: