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 sgeevx
30 * Author: Intel Corporation
31 * Generated November 2015
32 *****************************************************************************/
33 
34 #include "lapacke_utils.h"
35 
LAPACKE_sgeevx_work(int matrix_layout,char balanc,char jobvl,char jobvr,char sense,lapack_int n,float * a,lapack_int lda,float * wr,float * wi,float * vl,lapack_int ldvl,float * vr,lapack_int ldvr,lapack_int * ilo,lapack_int * ihi,float * scale,float * abnrm,float * rconde,float * rcondv,float * work,lapack_int lwork,lapack_int * iwork)36 lapack_int LAPACKE_sgeevx_work( int matrix_layout, char balanc, char jobvl,
37                                 char jobvr, char sense, lapack_int n, float* a,
38                                 lapack_int lda, float* wr, float* wi, float* vl,
39                                 lapack_int ldvl, float* vr, lapack_int ldvr,
40                                 lapack_int* ilo, lapack_int* ihi, float* scale,
41                                 float* abnrm, float* rconde, float* rcondv,
42                                 float* work, lapack_int lwork,
43                                 lapack_int* iwork )
44 {
45     lapack_int info = 0;
46     if( matrix_layout == LAPACK_COL_MAJOR ) {
47         /* Call LAPACK function and adjust info */
48         LAPACK_sgeevx( &balanc, &jobvl, &jobvr, &sense, &n, a, &lda, wr, wi, vl,
49                        &ldvl, vr, &ldvr, ilo, ihi, scale, abnrm, rconde, rcondv,
50                        work, &lwork, iwork, &info );
51         if( info < 0 ) {
52             info = info - 1;
53         }
54     } else if( matrix_layout == LAPACK_ROW_MAJOR ) {
55         lapack_int lda_t = MAX(1,n);
56         lapack_int ldvl_t = MAX(1,n);
57         lapack_int ldvr_t = MAX(1,n);
58         float* a_t = NULL;
59         float* vl_t = NULL;
60         float* vr_t = NULL;
61         /* Check leading dimension(s) */
62         if( lda < n ) {
63             info = -8;
64             LAPACKE_xerbla( "LAPACKE_sgeevx_work", info );
65             return info;
66         }
67         if( ldvl < n ) {
68             info = -12;
69             LAPACKE_xerbla( "LAPACKE_sgeevx_work", info );
70             return info;
71         }
72         if( ldvr < n ) {
73             info = -14;
74             LAPACKE_xerbla( "LAPACKE_sgeevx_work", info );
75             return info;
76         }
77         /* Query optimal working array(s) size if requested */
78         if( lwork == -1 ) {
79             LAPACK_sgeevx( &balanc, &jobvl, &jobvr, &sense, &n, a, &lda_t, wr,
80                            wi, vl, &ldvl_t, vr, &ldvr_t, ilo, ihi, scale, abnrm,
81                            rconde, rcondv, work, &lwork, iwork, &info );
82             return (info < 0) ? (info - 1) : info;
83         }
84         /* Allocate memory for temporary array(s) */
85         a_t = (float*)LAPACKE_malloc( sizeof(float) * lda_t * MAX(1,n) );
86         if( a_t == NULL ) {
87             info = LAPACK_TRANSPOSE_MEMORY_ERROR;
88             goto exit_level_0;
89         }
90         if( LAPACKE_lsame( jobvl, 'v' ) ) {
91             vl_t = (float*)LAPACKE_malloc( sizeof(float) * ldvl_t * MAX(1,n) );
92             if( vl_t == NULL ) {
93                 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
94                 goto exit_level_1;
95             }
96         }
97         if( LAPACKE_lsame( jobvr, 'v' ) ) {
98             vr_t = (float*)LAPACKE_malloc( sizeof(float) * ldvr_t * MAX(1,n) );
99             if( vr_t == NULL ) {
100                 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
101                 goto exit_level_2;
102             }
103         }
104         /* Transpose input matrices */
105         LAPACKE_sge_trans( matrix_layout, n, n, a, lda, a_t, lda_t );
106         /* Call LAPACK function and adjust info */
107         LAPACK_sgeevx( &balanc, &jobvl, &jobvr, &sense, &n, a_t, &lda_t, wr, wi,
108                        vl_t, &ldvl_t, vr_t, &ldvr_t, ilo, ihi, scale, abnrm,
109                        rconde, rcondv, work, &lwork, iwork, &info );
110         if( info < 0 ) {
111             info = info - 1;
112         }
113         /* Transpose output matrices */
114         LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, n, a_t, lda_t, a, lda );
115         if( LAPACKE_lsame( jobvl, 'v' ) ) {
116             LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, n, vl_t, ldvl_t, vl, ldvl );
117         }
118         if( LAPACKE_lsame( jobvr, 'v' ) ) {
119             LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, n, vr_t, ldvr_t, vr, ldvr );
120         }
121         /* Release memory and exit */
122         if( LAPACKE_lsame( jobvr, 'v' ) ) {
123             LAPACKE_free( vr_t );
124         }
125 exit_level_2:
126         if( LAPACKE_lsame( jobvl, 'v' ) ) {
127             LAPACKE_free( vl_t );
128         }
129 exit_level_1:
130         LAPACKE_free( a_t );
131 exit_level_0:
132         if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
133             LAPACKE_xerbla( "LAPACKE_sgeevx_work", info );
134         }
135     } else {
136         info = -1;
137         LAPACKE_xerbla( "LAPACKE_sgeevx_work", info );
138     }
139     return info;
140 }
141