OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
lapacke_clatms.c File Reference
#include "lapacke_utils.h"

Go to the source code of this file.

Functions

lapack_int LAPACKE_clatms (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)

Function Documentation

◆ LAPACKE_clatms()

lapack_int LAPACKE_clatms ( 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 )

Definition at line 35 of file lapacke_clatms.c.

40{
41 lapack_int info = 0;
42 lapack_complex_float* work = NULL;
43 if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
44 LAPACKE_xerbla( "LAPACKE_clatms", -1 );
45 return -1;
46 }
47#ifndef LAPACK_DISABLE_NAN_CHECK
48 if( LAPACKE_get_nancheck() ) {
49 /* Optionally check input matrices for NaNs */
50 if( LAPACKE_cge_nancheck( matrix_layout, m, n, a, lda ) ) {
51 return -14;
52 }
53 if( LAPACKE_s_nancheck( 1, &cond, 1 ) ) {
54 return -9;
55 }
56 if( LAPACKE_s_nancheck( MIN(n,m), d, 1 ) ) {
57 return -7;
58 }
59 if( LAPACKE_s_nancheck( 1, &dmax, 1 ) ) {
60 return -10;
61 }
62 }
63#endif
64 /* Allocate memory for working array(s) */
65 work = (lapack_complex_float*)
66 LAPACKE_malloc( sizeof(lapack_complex_float) * MAX(1,3*(MAX(n,m))) );
67 if( work == NULL ) {
69 goto exit_level_0;
70 }
71 /* Call middle-level interface */
72 info = LAPACKE_clatms_work( matrix_layout, m, n, dist, iseed, sym, d, mode,
73 cond, dmax, kl, ku, pack, a, lda, work );
74 /* Release memory and exit */
75 LAPACKE_free( work );
76exit_level_0:
77 if( info == LAPACK_WORK_MEMORY_ERROR ) {
78 LAPACKE_xerbla( "LAPACKE_clatms", info );
79 }
80 return info;
81}
#define lapack_int
Definition lapack.h:83
#define lapack_complex_float
Definition lapack.h:45
#define LAPACK_WORK_MEMORY_ERROR
Definition lapacke.h:55
#define LAPACK_COL_MAJOR
Definition lapacke.h:53
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)
#define LAPACKE_free(p)
Definition lapacke.h:46
#define LAPACK_ROW_MAJOR
Definition lapacke.h:52
int LAPACKE_get_nancheck(void)
#define LAPACKE_malloc(size)
Definition lapacke.h:43
void LAPACKE_xerbla(const char *name, lapack_int info)
lapack_logical LAPACKE_s_nancheck(lapack_int n, const float *x, lapack_int incx)
#define MIN(x, y)
#define MAX(x, y)
lapack_logical LAPACKE_cge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_float *a, lapack_int lda)
n