LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_clatms_work()

lapack_int LAPACKE_clatms_work ( int  matrix_layout,
lapack_int  m,
lapack_int  n,
char  dist,
lapack_int iseed,
char  sym,
float *  d,
lapack_int  mode,
float  cond,
float  dmax,
lapack_int  kl,
lapack_int  ku,
char  pack,
lapack_complex_float a,
lapack_int  lda,
lapack_complex_float work 
)

Definition at line 35 of file lapacke_clatms_work.c.

42 {
43  lapack_int info = 0;
44  if( matrix_layout == LAPACK_COL_MAJOR ) {
45  /* Call LAPACK function and adjust info */
46  LAPACK_clatms( &m, &n, &dist, iseed, &sym, d, &mode, &cond, &dmax, &kl,
47  &ku, &pack, a, &lda, work, &info );
48  if( info < 0 ) {
49  info = info - 1;
50  }
51  } else if( matrix_layout == LAPACK_ROW_MAJOR ) {
52  lapack_int lda_t = MAX(1,m);
53  lapack_complex_float* a_t = NULL;
54  /* Check leading dimension(s) */
55  if( lda < n ) {
56  info = -15;
57  LAPACKE_xerbla( "LAPACKE_clatms_work", info );
58  return info;
59  }
60  /* Allocate memory for temporary array(s) */
61  a_t = (lapack_complex_float*)
62  LAPACKE_malloc( sizeof(lapack_complex_float) * lda_t * MAX(1,n) );
63  if( a_t == NULL ) {
65  goto exit_level_0;
66  }
67  /* Transpose input matrices */
68  LAPACKE_cge_trans( matrix_layout, m, n, a, lda, a_t, lda_t );
69  /* Call LAPACK function and adjust info */
70  LAPACK_clatms( &m, &n, &dist, iseed, &sym, d, &mode, &cond, &dmax, &kl,
71  &ku, &pack, a_t, &lda_t, work, &info );
72  if( info < 0 ) {
73  info = info - 1;
74  }
75  /* Transpose output matrices */
76  LAPACKE_cge_trans( LAPACK_COL_MAJOR, m, n, a_t, lda_t, a, lda );
77  /* Release memory and exit */
78  LAPACKE_free( a_t );
79 exit_level_0:
80  if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
81  LAPACKE_xerbla( "LAPACKE_clatms_work", info );
82  }
83  } else {
84  info = -1;
85  LAPACKE_xerbla( "LAPACKE_clatms_work", info );
86  }
87  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_cge_trans
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)
Definition: lapacke_cge_trans.c:39
LAPACKE_xerbla
void LAPACKE_xerbla(const char *name, lapack_int info)
Definition: lapacke_xerbla.c:36
MAX
#define MAX(x, y)
Definition: lapacke_utils.h:47
lapack_complex_float
#define lapack_complex_float
Definition: lapack.h:56
LAPACK_TRANSPOSE_MEMORY_ERROR
#define LAPACK_TRANSPOSE_MEMORY_ERROR
Definition: lapacke.h:57
LAPACK_clatms
void LAPACK_clatms(lapack_int const *m, lapack_int const *n, char const *dist, lapack_int *iseed, char const *sym, float *D, lapack_int const *mode, float const *cond, float const *dmax, lapack_int const *kl, lapack_int const *ku, char const *pack, lapack_complex_float *A, lapack_int const *lda, lapack_complex_float *work, lapack_int *info)
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