LAPACK  3.9.0
LAPACK: Linear Algebra PACKage

◆ LAPACKE_slatms_work()

lapack_int LAPACKE_slatms_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,
float *  a,
lapack_int  lda,
float *  work 
)

Definition at line 35 of file lapacke_slatms_work.c.

42 {
43  lapack_int info = 0;
44  if( matrix_layout == LAPACK_COL_MAJOR ) {
45  /* Call LAPACK function and adjust info */
46  LAPACK_slatms( &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  float* a_t = NULL;
54  /* Check leading dimension(s) */
55  if( lda < n ) {
56  info = -15;
57  LAPACKE_xerbla( "LAPACKE_slatms_work", info );
58  return info;
59  }
60  /* Allocate memory for temporary array(s) */
61  a_t = (float*)LAPACKE_malloc( sizeof(float) * lda_t * MAX(1,n) );
62  if( a_t == NULL ) {
64  goto exit_level_0;
65  }
66  /* Transpose input matrices */
67  LAPACKE_sge_trans( matrix_layout, m, n, a, lda, a_t, lda_t );
68  /* Call LAPACK function and adjust info */
69  LAPACK_slatms( &m, &n, &dist, iseed, &sym, d, &mode, &cond, &dmax, &kl,
70  &ku, &pack, a_t, &lda_t, work, &info );
71  if( info < 0 ) {
72  info = info - 1;
73  }
74  /* Transpose output matrices */
75  LAPACKE_sge_trans( LAPACK_COL_MAJOR, m, n, a_t, lda_t, a, lda );
76  /* Release memory and exit */
77  LAPACKE_free( a_t );
78 exit_level_0:
79  if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
80  LAPACKE_xerbla( "LAPACKE_slatms_work", info );
81  }
82  } else {
83  info = -1;
84  LAPACKE_xerbla( "LAPACKE_slatms_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
LAPACKE_sge_trans
void LAPACKE_sge_trans(int matrix_layout, lapack_int m, lapack_int n, const float *in, lapack_int ldin, float *out, lapack_int ldout)
Definition: lapacke_sge_trans.c:39
lapack_int
#define lapack_int
Definition: lapack.h:21
LAPACK_slatms
void LAPACK_slatms(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, float *A, lapack_int const *lda, float *work, lapack_int *info)
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_TRANSPOSE_MEMORY_ERROR
#define LAPACK_TRANSPOSE_MEMORY_ERROR
Definition: lapacke.h:57
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