LAPACK  3.10.1
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.

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