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

Go to the source code of this file.

Functions

lapack_int LAPACKE_cupmtr (int matrix_layout, char side, char uplo, char trans, lapack_int m, lapack_int n, const lapack_complex_float *ap, const lapack_complex_float *tau, lapack_complex_float *c, lapack_int ldc)

Function Documentation

◆ LAPACKE_cupmtr()

lapack_int LAPACKE_cupmtr ( int matrix_layout,
char side,
char uplo,
char trans,
lapack_int m,
lapack_int n,
const lapack_complex_float * ap,
const lapack_complex_float * tau,
lapack_complex_float * c,
lapack_int ldc )

Definition at line 35 of file lapacke_cupmtr.c.

40{
41 lapack_int info = 0;
42 /* Additional scalars declarations for work arrays */
43 lapack_int lwork;
44 lapack_complex_float* work = NULL;
46 if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
47 LAPACKE_xerbla( "LAPACKE_cupmtr", -1 );
48 return -1;
49 }
50#ifndef LAPACK_DISABLE_NAN_CHECK
51 if( LAPACKE_get_nancheck() ) {
52 /* Optionally check input matrices for NaNs */
53 r = LAPACKE_lsame( side, 'l' ) ? m : n;
54 if( LAPACKE_cpp_nancheck( r, ap ) ) {
55 return -7;
56 }
57 if( LAPACKE_cge_nancheck( matrix_layout, m, n, c, ldc ) ) {
58 return -9;
59 }
60 if( LAPACKE_c_nancheck( r-1, tau, 1 ) ) {
61 return -8;
62 }
63 }
64#endif
65 /* Additional scalars initializations for work arrays */
66 if( LAPACKE_lsame( side, 'l' ) ) {
67 lwork = MAX(1,n);
68 } else if( LAPACKE_lsame( side, 'r' ) ) {
69 lwork = MAX(1,m);
70 } else {
71 lwork = 1; /* Any value */
72 }
73 /* Allocate memory for working array(s) */
74 work = (lapack_complex_float*)
75 LAPACKE_malloc( sizeof(lapack_complex_float) * lwork );
76 if( work == NULL ) {
78 goto exit_level_0;
79 }
80 /* Call middle-level interface */
81 info = LAPACKE_cupmtr_work( matrix_layout, side, uplo, trans, m, n, ap, tau,
82 c, ldc, work );
83 /* Release memory and exit */
84 LAPACKE_free( work );
85exit_level_0:
86 if( info == LAPACK_WORK_MEMORY_ERROR ) {
87 LAPACKE_xerbla( "LAPACKE_cupmtr", info );
88 }
89 return info;
90}
#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
#define LAPACKE_free(p)
Definition lapacke.h:46
#define LAPACK_ROW_MAJOR
Definition lapacke.h:52
lapack_int LAPACKE_cupmtr_work(int matrix_layout, char side, char uplo, char trans, lapack_int m, lapack_int n, const lapack_complex_float *ap, const lapack_complex_float *tau, lapack_complex_float *c, lapack_int ldc, lapack_complex_float *work)
int LAPACKE_get_nancheck(void)
#define LAPACKE_malloc(size)
Definition lapacke.h:43
lapack_logical LAPACKE_cpp_nancheck(lapack_int n, const lapack_complex_float *ap)
lapack_logical LAPACKE_lsame(char ca, char cb)
void LAPACKE_xerbla(const char *name, lapack_int info)
lapack_logical LAPACKE_c_nancheck(lapack_int n, const lapack_complex_float *x, lapack_int incx)
#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