OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
lapacke_zlarfb.c
Go to the documentation of this file.
1/*****************************************************************************
2 Copyright (c) 2014, Intel Corp.
3 All rights reserved.
4
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are met:
7
8 * Redistributions of source code must retain the above copyright notice,
9 this list of conditions and the following disclaimer.
10 * Redistributions in binary form must reproduce the above copyright
11 notice, this list of conditions and the following disclaimer in the
12 documentation and/or other materials provided with the distribution.
13 * Neither the name of Intel Corporation nor the names of its contributors
14 may be used to endorse or promote products derived from this software
15 without specific prior written permission.
16
17 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27 THE POSSIBILITY OF SUCH DAMAGE.
28*****************************************************************************
29* Contents: Native high-level C interface to LAPACK function zlarfb
30* Author: Intel Corporation
31*****************************************************************************/
32
33#include "lapacke_utils.h"
34
35lapack_int LAPACKE_zlarfb( int matrix_layout, char side, char trans, char direct,
36 char storev, lapack_int m, lapack_int n,
40 lapack_int ldc )
41{
42 lapack_int info = 0;
43 lapack_int ldwork;
44 lapack_complex_double* work = NULL;
45 lapack_int ncols_v, nrows_v;
46 if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
47 LAPACKE_xerbla( "LAPACKE_zlarfb", -1 );
48 return -1;
49 }
50#ifndef LAPACK_DISABLE_NAN_CHECK
51 if( LAPACKE_get_nancheck() ) {
52 /* Optionally check input matrices for NaNs */
53 lapack_int lrv, lcv; /* row, column stride */
54 if( matrix_layout == LAPACK_COL_MAJOR ) {
55 lrv = 1;
56 lcv = ldv;
57 } else {
58 lrv = ldv;
59 lcv = 1;
60 }
61 ncols_v = LAPACKE_lsame( storev, 'c' ) ? k :
62 ( ( LAPACKE_lsame( storev, 'r' ) && LAPACKE_lsame( side, 'l' ) ) ? m :
63 ( ( LAPACKE_lsame( storev, 'r' ) && LAPACKE_lsame( side, 'r' ) ) ? n : 1) );
64
65 nrows_v = ( LAPACKE_lsame( storev, 'c' ) && LAPACKE_lsame( side, 'l' ) ) ? m :
66 ( ( LAPACKE_lsame( storev, 'c' ) && LAPACKE_lsame( side, 'r' ) ) ? n :
67 ( LAPACKE_lsame( storev, 'r' ) ? k : 1) );
68 if( LAPACKE_zge_nancheck( matrix_layout, m, n, c, ldc ) ) {
69 return -13;
70 }
71 if( LAPACKE_zge_nancheck( matrix_layout, k, k, t, ldt ) ) {
72 return -11;
73 }
74 if( LAPACKE_lsame( storev, 'c' ) && LAPACKE_lsame( direct, 'f' ) ) {
75 if( LAPACKE_ztr_nancheck( matrix_layout, 'l', 'u', k, v, ldv ) )
76 return -9;
77 if( LAPACKE_zge_nancheck( matrix_layout, nrows_v-k, ncols_v,
78 &v[k*lrv], ldv ) )
79 return -9;
80 } else if( LAPACKE_lsame( storev, 'c' ) && LAPACKE_lsame( direct, 'b' ) ) {
81 if( k > nrows_v ) {
82 LAPACKE_xerbla( "LAPACKE_zlarfb", -8 );
83 return -8;
84 }
85 if( LAPACKE_ztr_nancheck( matrix_layout, 'u', 'u', k,
86 &v[(nrows_v-k)*lrv], ldv ) )
87 return -9;
88 if( LAPACKE_zge_nancheck( matrix_layout, nrows_v-k, ncols_v, v, ldv ) )
89 return -9;
90 } else if( LAPACKE_lsame( storev, 'r' ) && LAPACKE_lsame( direct, 'f' ) ) {
91 if( LAPACKE_ztr_nancheck( matrix_layout, 'u', 'u', k, v, ldv ) )
92 return -9;
93 if( LAPACKE_zge_nancheck( matrix_layout, nrows_v, ncols_v-k,
94 &v[k*lrv], ldv ) )
95 return -9;
96 } else if( LAPACKE_lsame( storev, 'r' ) && LAPACKE_lsame( direct, 'b' ) ) {
97 if( k > ncols_v ) {
98 LAPACKE_xerbla( "LAPACKE_zlarfb", -8 );
99 return -8;
100 }
101 if( LAPACKE_ztr_nancheck( matrix_layout, 'l', 'u', k,
102 &v[(ncols_v-k)*lcv], ldv ) )
103 return -9;
104 if( LAPACKE_zge_nancheck( matrix_layout, nrows_v, ncols_v-k, v, ldv ) )
105 return -9;
106 }
107 }
108#endif
109 if( LAPACKE_lsame( side, 'l' ) ) {
110 ldwork = n;
111 } else if( LAPACKE_lsame( side, 'r' ) ) {
112 ldwork = m;
113 } else {
114 ldwork = 1;
115 }
116 /* Allocate memory for working array(s) */
117 work = (lapack_complex_double*)
118 LAPACKE_malloc( sizeof(lapack_complex_double) * ldwork * MAX(1,k) );
119 if( work == NULL ) {
121 goto exit_level_0;
122 }
123 /* Call middle-level interface */
124 info = LAPACKE_zlarfb_work( matrix_layout, side, trans, direct, storev, m, n,
125 k, v, ldv, t, ldt, c, ldc, work, ldwork );
126 /* Release memory and exit */
127 LAPACKE_free( work );
128exit_level_0:
129 if( info == LAPACK_WORK_MEMORY_ERROR ) {
130 LAPACKE_xerbla( "LAPACKE_zlarfb", info );
131 }
132 return info;
133}
#define lapack_int
Definition lapack.h:83
#define lapack_complex_double
Definition lapack.h:63
lapack_int LAPACKE_zlarfb_work(int matrix_layout, char side, char trans, char direct, char storev, lapack_int m, lapack_int n, lapack_int k, const lapack_complex_double *v, lapack_int ldv, const lapack_complex_double *t, lapack_int ldt, lapack_complex_double *c, lapack_int ldc, lapack_complex_double *work, lapack_int ldwork)
#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
int LAPACKE_get_nancheck(void)
#define LAPACKE_malloc(size)
Definition lapacke.h:43
lapack_logical LAPACKE_lsame(char ca, char cb)
void LAPACKE_xerbla(const char *name, lapack_int info)
lapack_logical LAPACKE_zge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_double *a, lapack_int lda)
lapack_logical LAPACKE_ztr_nancheck(int matrix_layout, char uplo, char diag, lapack_int n, const lapack_complex_double *a, lapack_int lda)
#define MAX(x, y)
lapack_int LAPACKE_zlarfb(int matrix_layout, char side, char trans, char direct, char storev, lapack_int m, lapack_int n, lapack_int k, const lapack_complex_double *v, lapack_int ldv, const lapack_complex_double *t, lapack_int ldt, lapack_complex_double *c, lapack_int ldc)
n