LAPACK  3.9.1
LAPACK: Linear Algebra PACKage

◆ LAPACKE_zggbak_work()

lapack_int LAPACKE_zggbak_work ( int  matrix_layout,
char  job,
char  side,
lapack_int  n,
lapack_int  ilo,
lapack_int  ihi,
const double *  lscale,
const double *  rscale,
lapack_int  m,
lapack_complex_double v,
lapack_int  ldv 
)

Definition at line 35 of file lapacke_zggbak_work.c.

40 {
41  lapack_int info = 0;
42  if( matrix_layout == LAPACK_COL_MAJOR ) {
43  /* Call LAPACK function and adjust info */
44  LAPACK_zggbak( &job, &side, &n, &ilo, &ihi, lscale, rscale, &m, v, &ldv,
45  &info );
46  if( info < 0 ) {
47  info = info - 1;
48  }
49  } else if( matrix_layout == LAPACK_ROW_MAJOR ) {
50  lapack_int ldv_t = MAX(1,n);
51  lapack_complex_double* v_t = NULL;
52  /* Check leading dimension(s) */
53  if( ldv < m ) {
54  info = -11;
55  LAPACKE_xerbla( "LAPACKE_zggbak_work", info );
56  return info;
57  }
58  /* Allocate memory for temporary array(s) */
59  v_t = (lapack_complex_double*)
60  LAPACKE_malloc( sizeof(lapack_complex_double) * ldv_t * MAX(1,m) );
61  if( v_t == NULL ) {
63  goto exit_level_0;
64  }
65  /* Transpose input matrices */
66  LAPACKE_zge_trans( matrix_layout, n, m, v, ldv, v_t, ldv_t );
67  /* Call LAPACK function and adjust info */
68  LAPACK_zggbak( &job, &side, &n, &ilo, &ihi, lscale, rscale, &m, v_t,
69  &ldv_t, &info );
70  if( info < 0 ) {
71  info = info - 1;
72  }
73  /* Transpose output matrices */
74  LAPACKE_zge_trans( LAPACK_COL_MAJOR, n, m, v_t, ldv_t, v, ldv );
75  /* Release memory and exit */
76  LAPACKE_free( v_t );
77 exit_level_0:
78  if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
79  LAPACKE_xerbla( "LAPACKE_zggbak_work", info );
80  }
81  } else {
82  info = -1;
83  LAPACKE_xerbla( "LAPACKE_zggbak_work", info );
84  }
85  return info;
86 }
#define lapack_int
Definition: lapack.h:83
#define lapack_complex_double
Definition: lapack.h:63
void LAPACK_zggbak(char const *job, char const *side, lapack_int const *n, lapack_int const *ilo, lapack_int const *ihi, double const *lscale, double const *rscale, lapack_int const *m, lapack_complex_double *V, lapack_int const *ldv, lapack_int *info)
#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)
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)
Definition: lapacke_utils.h:46
Here is the call graph for this function:
Here is the caller graph for this function: