LAPACK  3.6.1
LAPACK: Linear Algebra PACKage
lapacke_sorbdb_work.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 middle-level C interface to LAPACK function sorbdb
30 * Author: Intel Corporation
31 * Generated November 2015
32 *****************************************************************************/
33 
34 #include "lapacke_utils.h"
35 
36 lapack_int LAPACKE_sorbdb_work( int matrix_layout, char trans, char signs,
38  float* x11, lapack_int ldx11, float* x12,
39  lapack_int ldx12, float* x21, lapack_int ldx21,
40  float* x22, lapack_int ldx22, float* theta,
41  float* phi, float* taup1, float* taup2,
42  float* tauq1, float* tauq2, float* work,
43  lapack_int lwork )
44 {
45  lapack_int info = 0;
46  if( matrix_layout == LAPACK_COL_MAJOR ) {
47  /* Call LAPACK function and adjust info */
48  LAPACK_sorbdb( &trans, &signs, &m, &p, &q, x11, &ldx11, x12, &ldx12,
49  x21, &ldx21, x22, &ldx22, theta, phi, taup1, taup2,
50  tauq1, tauq2, work, &lwork, &info );
51  if( info < 0 ) {
52  info = info - 1;
53  }
54  } else if( matrix_layout == LAPACK_ROW_MAJOR ) {
55  lapack_int nrows_x11 = ( LAPACKE_lsame( trans, 'n' ) ? p : q);
56  lapack_int nrows_x12 = ( LAPACKE_lsame( trans, 'n' ) ? p : m-q);
57  lapack_int nrows_x21 = ( LAPACKE_lsame( trans, 'n' ) ? m-p : q);
58  lapack_int nrows_x22 = ( LAPACKE_lsame( trans, 'n' ) ? m-p : m-q);
59  lapack_int ldx11_t = MAX(1,nrows_x11);
60  lapack_int ldx12_t = MAX(1,nrows_x12);
61  lapack_int ldx21_t = MAX(1,nrows_x21);
62  lapack_int ldx22_t = MAX(1,nrows_x22);
63  float* x11_t = NULL;
64  float* x12_t = NULL;
65  float* x21_t = NULL;
66  float* x22_t = NULL;
67  /* Check leading dimension(s) */
68  if( ldx11 < q ) {
69  info = -8;
70  LAPACKE_xerbla( "LAPACKE_sorbdb_work", info );
71  return info;
72  }
73  if( ldx12 < m-q ) {
74  info = -10;
75  LAPACKE_xerbla( "LAPACKE_sorbdb_work", info );
76  return info;
77  }
78  if( ldx21 < q ) {
79  info = -12;
80  LAPACKE_xerbla( "LAPACKE_sorbdb_work", info );
81  return info;
82  }
83  if( ldx22 < m-q ) {
84  info = -14;
85  LAPACKE_xerbla( "LAPACKE_sorbdb_work", info );
86  return info;
87  }
88  /* Query optimal working array(s) size if requested */
89  if( lwork == -1 ) {
90  LAPACK_sorbdb( &trans, &signs, &m, &p, &q, x11, &ldx11_t, x12,
91  &ldx12_t, x21, &ldx21_t, x22, &ldx22_t, theta, phi,
92  taup1, taup2, tauq1, tauq2, work, &lwork, &info );
93  return (info < 0) ? (info - 1) : info;
94  }
95  /* Allocate memory for temporary array(s) */
96  x11_t = (float*)LAPACKE_malloc( sizeof(float) * ldx11_t * MAX(1,q) );
97  if( x11_t == NULL ) {
99  goto exit_level_0;
100  }
101  x12_t = (float*)LAPACKE_malloc( sizeof(float) * ldx12_t * MAX(1,m-q) );
102  if( x12_t == NULL ) {
104  goto exit_level_1;
105  }
106  x21_t = (float*)LAPACKE_malloc( sizeof(float) * ldx21_t * MAX(1,q) );
107  if( x21_t == NULL ) {
109  goto exit_level_2;
110  }
111  x22_t = (float*)LAPACKE_malloc( sizeof(float) * ldx22_t * MAX(1,m-q) );
112  if( x22_t == NULL ) {
114  goto exit_level_3;
115  }
116  /* Transpose input matrices */
117  LAPACKE_sge_trans( matrix_layout, nrows_x11, q, x11, ldx11, x11_t,
118  ldx11_t );
119  LAPACKE_sge_trans( matrix_layout, nrows_x12, m-q, x12, ldx12, x12_t,
120  ldx12_t );
121  LAPACKE_sge_trans( matrix_layout, nrows_x21, q, x21, ldx21, x21_t,
122  ldx21_t );
123  LAPACKE_sge_trans( matrix_layout, nrows_x22, m-q, x22, ldx22, x22_t,
124  ldx22_t );
125  /* Call LAPACK function and adjust info */
126  LAPACK_sorbdb( &trans, &signs, &m, &p, &q, x11_t, &ldx11_t, x12_t,
127  &ldx12_t, x21_t, &ldx21_t, x22_t, &ldx22_t, theta, phi,
128  taup1, taup2, tauq1, tauq2, work, &lwork, &info );
129  if( info < 0 ) {
130  info = info - 1;
131  }
132  /* Transpose output matrices */
133  LAPACKE_sge_trans( LAPACK_COL_MAJOR, nrows_x11, q, x11_t, ldx11_t, x11,
134  ldx11 );
135  LAPACKE_sge_trans( LAPACK_COL_MAJOR, nrows_x12, m-q, x12_t, ldx12_t,
136  x12, ldx12 );
137  LAPACKE_sge_trans( LAPACK_COL_MAJOR, nrows_x21, q, x21_t, ldx21_t, x21,
138  ldx21 );
139  LAPACKE_sge_trans( LAPACK_COL_MAJOR, nrows_x22, m-q, x22_t, ldx22_t,
140  x22, ldx22 );
141  /* Release memory and exit */
142  LAPACKE_free( x22_t );
143 exit_level_3:
144  LAPACKE_free( x21_t );
145 exit_level_2:
146  LAPACKE_free( x12_t );
147 exit_level_1:
148  LAPACKE_free( x11_t );
149 exit_level_0:
150  if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
151  LAPACKE_xerbla( "LAPACKE_sorbdb_work", info );
152  }
153  } else {
154  info = -1;
155  LAPACKE_xerbla( "LAPACKE_sorbdb_work", info );
156  }
157  return info;
158 }
#define LAPACK_ROW_MAJOR
Definition: lapacke.h:119
void LAPACKE_sge_trans(int matrix_layout, lapack_int m, lapack_int n, const float *in, lapack_int ldin, float *out, lapack_int ldout)
#define MAX(x, y)
Definition: lapacke_utils.h:47
void LAPACK_sorbdb(char *trans, char *signs, lapack_int *m, lapack_int *p, lapack_int *q, float *x11, lapack_int *ldx11, float *x12, lapack_int *ldx12, float *x21, lapack_int *ldx21, float *x22, lapack_int *ldx22, float *theta, float *phi, float *taup1, float *taup2, float *tauq1, float *tauq2, float *work, lapack_int *lwork, lapack_int *info)
#define LAPACKE_free(p)
Definition: lapacke.h:113
#define LAPACKE_malloc(size)
Definition: lapacke.h:110
lapack_logical LAPACKE_lsame(char ca, char cb)
Definition: lapacke_lsame.c:36
#define LAPACK_COL_MAJOR
Definition: lapacke.h:120
void LAPACKE_xerbla(const char *name, lapack_int info)
lapack_int LAPACKE_sorbdb_work(int matrix_layout, char trans, char signs, lapack_int m, lapack_int p, lapack_int q, float *x11, lapack_int ldx11, float *x12, lapack_int ldx12, float *x21, lapack_int ldx21, float *x22, lapack_int ldx22, float *theta, float *phi, float *taup1, float *taup2, float *tauq1, float *tauq2, float *work, lapack_int lwork)
#define lapack_int
Definition: lapacke.h:47
#define LAPACK_TRANSPOSE_MEMORY_ERROR
Definition: lapacke.h:123