LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_zstein_work()

lapack_int LAPACKE_zstein_work ( int  matrix_layout,
lapack_int  n,
const double *  d,
const double *  e,
lapack_int  m,
const double *  w,
const lapack_int iblock,
const lapack_int isplit,
lapack_complex_double z,
lapack_int  ldz,
double *  work,
lapack_int iwork,
lapack_int ifailv 
)

Definition at line 35 of file lapacke_zstein_work.c.

43 {
44  lapack_int info = 0;
45  if( matrix_layout == LAPACK_COL_MAJOR ) {
46  /* Call LAPACK function and adjust info */
47  LAPACK_zstein( &n, d, e, &m, w, iblock, isplit, z, &ldz, work, iwork,
48  ifailv, &info );
49  if( info < 0 ) {
50  info = info - 1;
51  }
52  } else if( matrix_layout == LAPACK_ROW_MAJOR ) {
53  lapack_int ldz_t = MAX(1,n);
54  lapack_complex_double* z_t = NULL;
55  /* Check leading dimension(s) */
56  if( ldz < m ) {
57  info = -10;
58  LAPACKE_xerbla( "LAPACKE_zstein_work", info );
59  return info;
60  }
61  /* Allocate memory for temporary array(s) */
62  z_t = (lapack_complex_double*)
63  LAPACKE_malloc( sizeof(lapack_complex_double) * ldz_t * MAX(1,m) );
64  if( z_t == NULL ) {
66  goto exit_level_0;
67  }
68  /* Call LAPACK function and adjust info */
69  LAPACK_zstein( &n, d, e, &m, w, iblock, isplit, z_t, &ldz_t, work,
70  iwork, ifailv, &info );
71  if( info < 0 ) {
72  info = info - 1;
73  }
74  /* Transpose output matrices */
75  LAPACKE_zge_trans( LAPACK_COL_MAJOR, n, m, z_t, ldz_t, z, ldz );
76  /* Release memory and exit */
77  LAPACKE_free( z_t );
78 exit_level_0:
79  if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
80  LAPACKE_xerbla( "LAPACKE_zstein_work", info );
81  }
82  } else {
83  info = -1;
84  LAPACKE_xerbla( "LAPACKE_zstein_work", info );
85  }
86  return info;
Here is the call graph for this function:
Here is the caller graph for this function:
LAPACKE_free
#define LAPACKE_free(p)
Definition: lapacke.h:47
lapack_int
#define lapack_int
Definition: lapack.h:21
LAPACKE_xerbla
void LAPACKE_xerbla(const char *name, lapack_int info)
Definition: lapacke_xerbla.c:36
LAPACK_zstein
void LAPACK_zstein(lapack_int const *n, double const *D, double const *E, lapack_int const *m, double const *W, lapack_int const *IBLOCK, lapack_int const *ISPLIT, lapack_complex_double *Z, lapack_int const *ldz, double *work, lapack_int *iwork, lapack_int *IFAIL, lapack_int *info)
MAX
#define MAX(x, y)
Definition: lapacke_utils.h:47
LAPACK_TRANSPOSE_MEMORY_ERROR
#define LAPACK_TRANSPOSE_MEMORY_ERROR
Definition: lapacke.h:57
lapack_complex_double
#define lapack_complex_double
Definition: lapack.h:70
LAPACKE_malloc
#define LAPACKE_malloc(size)
Definition: lapacke.h:44
LAPACK_ROW_MAJOR
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:53
LAPACK_COL_MAJOR
#define LAPACK_COL_MAJOR
Definition: lapacke.h:54
LAPACKE_zge_trans
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)
Definition: lapacke_zge_trans.c:39