LAPACK  3.9.0
LAPACK: Linear Algebra PACKage
lapacke_ztprfb.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 ztprfb
30 * Author: Intel Corporation
31 * Generated June 2016
32 *****************************************************************************/
33 
34 #include "lapacke_utils.h"
35 
36 lapack_int LAPACKE_ztprfb( int matrix_layout, char side, char trans, char direct,
37  char storev, lapack_int m, lapack_int n,
39  const lapack_complex_double* v, lapack_int ldv,
40  const lapack_complex_double* t, lapack_int ldt,
43 {
44  lapack_int ncols_v, nrows_v, ncols_a, nrows_a;
45  lapack_int info = 0;
46  lapack_int ldwork;
47  lapack_int work_size;
48  lapack_complex_double* work = NULL;
49  if( matrix_layout != LAPACK_COL_MAJOR && matrix_layout != LAPACK_ROW_MAJOR ) {
50  LAPACKE_xerbla( "LAPACKE_ztprfb", -1 );
51  return -1;
52  }
53 #ifndef LAPACK_DISABLE_NAN_CHECK
54  if( LAPACKE_get_nancheck() ) {
55  /* Optionally check input matrices for NaNs
56  * V is m-by-k (left, columnwise)
57  * or n-by-k (right, columnwise)
58  * or k-by-m (left, rowwise)
59  * or k-by-n (right, rowwise)
60  * T is k-by-k
61  * A is k-by-n (left)
62  * or m-by-k (right)
63  * B is m-by-n
64  */
65  if( LAPACKE_lsame( storev, 'C' ) ) {
66  ncols_v = k;
67  nrows_v = LAPACKE_lsame( side, 'L' ) ? m :
68  LAPACKE_lsame( side, 'R' ) ? n : 0;
69  } else if( LAPACKE_lsame( storev, 'R' ) ) {
70  ncols_v = LAPACKE_lsame( side, 'L' ) ? m :
71  LAPACKE_lsame( side, 'R' ) ? n : 0;
72  nrows_v = k;
73  } else {
74  ncols_v = 0;
75  nrows_v = 0;
76  }
77  nrows_a = LAPACKE_lsame( side, 'L' ) ? k :
78  LAPACKE_lsame( side, 'R' ) ? m : 0;
79  ncols_a = LAPACKE_lsame( side, 'L' ) ? n :
80  LAPACKE_lsame( side, 'R' ) ? k : 0;
81  if( LAPACKE_zge_nancheck( matrix_layout, ncols_a, nrows_a, a, lda ) ) {
82  return -14;
83  }
84  if( LAPACKE_zge_nancheck( matrix_layout, m, n, b, ldb ) ) {
85  return -16;
86  }
87  if( LAPACKE_zge_nancheck( matrix_layout, k, k, t, ldt ) ) {
88  return -12;
89  }
90  if( LAPACKE_zge_nancheck( matrix_layout, nrows_v, ncols_v, v, ldv ) ) {
91  return -10;
92  }
93  }
94 #endif
95  if (side=='l' || side=='L') {
96  ldwork = k;
97  work_size = MAX(1,ldwork) * MAX(1,n);
98  }
99  else {
100  ldwork = m;
101  work_size = MAX(1,ldwork) * MAX(1,k);
102  }
103  /* Allocate memory for working array(s) */
104  work = (lapack_complex_double*)
105  LAPACKE_malloc( sizeof(lapack_complex_double) * work_size );
106  if( work == NULL ) {
108  goto exit_level_0;
109  }
110  /* Call middle-level interface */
111  info = LAPACKE_ztprfb_work( matrix_layout, side, trans, direct, storev, m, n,
112  k, l, v, ldv, t, ldt, a, lda, b, ldb, work,
113  ldwork );
114  /* Release memory and exit */
115  LAPACKE_free( work );
116 exit_level_0:
117  if( info == LAPACK_WORK_MEMORY_ERROR ) {
118  LAPACKE_xerbla( "LAPACKE_ztprfb", info );
119  }
120  return info;
121 }
LAPACKE_free
#define LAPACKE_free(p)
Definition: lapacke.h:47
lapack_int
#define lapack_int
Definition: lapack.h:21
lapacke_utils.h
LAPACK_WORK_MEMORY_ERROR
#define LAPACK_WORK_MEMORY_ERROR
Definition: lapacke.h:56
LAPACKE_xerbla
void LAPACKE_xerbla(const char *name, lapack_int info)
Definition: lapacke_xerbla.c:36
MAX
#define MAX(x, y)
Definition: lapacke_utils.h:47
lapack_complex_double
#define lapack_complex_double
Definition: lapack.h:70
LAPACKE_zge_nancheck
lapack_logical LAPACKE_zge_nancheck(int matrix_layout, lapack_int m, lapack_int n, const lapack_complex_double *a, lapack_int lda)
Definition: lapacke_zge_nancheck.c:36
LAPACKE_ztprfb
lapack_int LAPACKE_ztprfb(int matrix_layout, char side, char trans, char direct, char storev, lapack_int m, lapack_int n, lapack_int k, lapack_int l, const lapack_complex_double *v, lapack_int ldv, const lapack_complex_double *t, lapack_int ldt, lapack_complex_double *a, lapack_int lda, lapack_complex_double *b, lapack_int ldb)
Definition: lapacke_ztprfb.c:35
LAPACKE_malloc
#define LAPACKE_malloc(size)
Definition: lapacke.h:44
LAPACKE_get_nancheck
int LAPACKE_get_nancheck()
Definition: lapacke_nancheck.c:42
LAPACKE_ztprfb_work
lapack_int LAPACKE_ztprfb_work(int matrix_layout, char side, char trans, char direct, char storev, lapack_int m, lapack_int n, lapack_int k, lapack_int l, const lapack_complex_double *v, lapack_int ldv, const lapack_complex_double *t, lapack_int ldt, lapack_complex_double *a, lapack_int lda, lapack_complex_double *b, lapack_int ldb, lapack_complex_double *work, lapack_int ldwork)
Definition: lapacke_ztprfb_work.c:35
LAPACKE_lsame
lapack_logical LAPACKE_lsame(char ca, char cb)
Definition: lapacke_lsame.c:35
LAPACK_ROW_MAJOR
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:53
LAPACK_COL_MAJOR
#define LAPACK_COL_MAJOR
Definition: lapacke.h:54