LAPACK 3.11.0
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ LAPACKE_dlatms_work()

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

Definition at line 35 of file lapacke_dlatms_work.c.

41{
42 lapack_int info = 0;
43 if( matrix_layout == LAPACK_COL_MAJOR ) {
44 /* Call LAPACK function and adjust info */
45 LAPACK_dlatms( &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 double* a_t = NULL;
53 /* Check leading dimension(s) */
54 if( lda < n ) {
55 info = -15;
56 LAPACKE_xerbla( "LAPACKE_dlatms_work", info );
57 return info;
58 }
59 /* Allocate memory for temporary array(s) */
60 a_t = (double*)LAPACKE_malloc( sizeof(double) * lda_t * MAX(1,n) );
61 if( a_t == NULL ) {
63 goto exit_level_0;
64 }
65 /* Transpose input matrices */
66 LAPACKE_dge_trans( matrix_layout, m, n, a, lda, a_t, lda_t );
67 /* Call LAPACK function and adjust info */
68 LAPACK_dlatms( &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_dge_trans( LAPACK_COL_MAJOR, m, n, a_t, lda_t, a, lda );
75 /* Release memory and exit */
76 LAPACKE_free( a_t );
77exit_level_0:
78 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
79 LAPACKE_xerbla( "LAPACKE_dlatms_work", info );
80 }
81 } else {
82 info = -1;
83 LAPACKE_xerbla( "LAPACKE_dlatms_work", info );
84 }
85 return info;
86}
#define LAPACK_dlatms(...)
Definition: lapack.h:11003
#define lapack_int
Definition: lapack.h:87
#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)
#define MAX(x, y)
Definition: lapacke_utils.h:46
void LAPACKE_dge_trans(int matrix_layout, lapack_int m, lapack_int n, const double *in, lapack_int ldin, double *out, lapack_int ldout)
Here is the call graph for this function:
Here is the caller graph for this function: