lapacke_sggesx_work.c
Go to the documentation of this file.
00001 /*****************************************************************************
00002   Copyright (c) 2010, Intel Corp.
00003   All rights reserved.
00004 
00005   Redistribution and use in source and binary forms, with or without
00006   modification, are permitted provided that the following conditions are met:
00007 
00008     * Redistributions of source code must retain the above copyright notice,
00009       this list of conditions and the following disclaimer.
00010     * Redistributions in binary form must reproduce the above copyright
00011       notice, this list of conditions and the following disclaimer in the
00012       documentation and/or other materials provided with the distribution.
00013     * Neither the name of Intel Corporation nor the names of its contributors
00014       may be used to endorse or promote products derived from this software
00015       without specific prior written permission.
00016 
00017   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
00018   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00019   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00020   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
00021   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
00022   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
00023   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
00024   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
00025   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
00026   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
00027   THE POSSIBILITY OF SUCH DAMAGE.
00028 ******************************************************************************
00029 * Contents: Native middle-level C interface to LAPACK function sggesx
00030 * Author: Intel Corporation
00031 * Generated October, 2010
00032 *****************************************************************************/
00033 
00034 #include "lapacke.h"
00035 #include "lapacke_utils.h"
00036 
00037 lapack_int LAPACKE_sggesx_work( int matrix_order, char jobvsl, char jobvsr,
00038                                 char sort, LAPACK_S_SELECT3 selctg, char sense,
00039                                 lapack_int n, float* a, lapack_int lda,
00040                                 float* b, lapack_int ldb, lapack_int* sdim,
00041                                 float* alphar, float* alphai, float* beta,
00042                                 float* vsl, lapack_int ldvsl, float* vsr,
00043                                 lapack_int ldvsr, float* rconde, float* rcondv,
00044                                 float* work, lapack_int lwork,
00045                                 lapack_int* iwork, lapack_int liwork,
00046                                 lapack_logical* bwork )
00047 {
00048     lapack_int info = 0;
00049     if( matrix_order == LAPACK_COL_MAJOR ) {
00050         /* Call LAPACK function and adjust info */
00051         LAPACK_sggesx( &jobvsl, &jobvsr, &sort, selctg, &sense, &n, a, &lda, b,
00052                        &ldb, sdim, alphar, alphai, beta, vsl, &ldvsl, vsr,
00053                        &ldvsr, rconde, rcondv, work, &lwork, iwork, &liwork,
00054                        bwork, &info );
00055         if( info < 0 ) {
00056             info = info - 1;
00057         }
00058     } else if( matrix_order == LAPACK_ROW_MAJOR ) {
00059         lapack_int lda_t = MAX(1,n);
00060         lapack_int ldb_t = MAX(1,n);
00061         lapack_int ldvsl_t = MAX(1,n);
00062         lapack_int ldvsr_t = MAX(1,n);
00063         float* a_t = NULL;
00064         float* b_t = NULL;
00065         float* vsl_t = NULL;
00066         float* vsr_t = NULL;
00067         /* Check leading dimension(s) */
00068         if( lda < n ) {
00069             info = -9;
00070             LAPACKE_xerbla( "LAPACKE_sggesx_work", info );
00071             return info;
00072         }
00073         if( ldb < n ) {
00074             info = -11;
00075             LAPACKE_xerbla( "LAPACKE_sggesx_work", info );
00076             return info;
00077         }
00078         if( ldvsl < n ) {
00079             info = -17;
00080             LAPACKE_xerbla( "LAPACKE_sggesx_work", info );
00081             return info;
00082         }
00083         if( ldvsr < n ) {
00084             info = -19;
00085             LAPACKE_xerbla( "LAPACKE_sggesx_work", info );
00086             return info;
00087         }
00088         /* Query optimal working array(s) size if requested */
00089         if( liwork == -1 || lwork == -1 ) {
00090             LAPACK_sggesx( &jobvsl, &jobvsr, &sort, selctg, &sense, &n, a,
00091                            &lda_t, b, &ldb_t, sdim, alphar, alphai, beta, vsl,
00092                            &ldvsl_t, vsr, &ldvsr_t, rconde, rcondv, work,
00093                            &lwork, iwork, &liwork, bwork, &info );
00094             return (info < 0) ? (info - 1) : info;
00095         }
00096         /* Allocate memory for temporary array(s) */
00097         a_t = (float*)LAPACKE_malloc( sizeof(float) * lda_t * MAX(1,n) );
00098         if( a_t == NULL ) {
00099             info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00100             goto exit_level_0;
00101         }
00102         b_t = (float*)LAPACKE_malloc( sizeof(float) * ldb_t * MAX(1,n) );
00103         if( b_t == NULL ) {
00104             info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00105             goto exit_level_1;
00106         }
00107         if( LAPACKE_lsame( jobvsl, 'v' ) ) {
00108             vsl_t = (float*)
00109                 LAPACKE_malloc( sizeof(float) * ldvsl_t * MAX(1,n) );
00110             if( vsl_t == NULL ) {
00111                 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00112                 goto exit_level_2;
00113             }
00114         }
00115         if( LAPACKE_lsame( jobvsr, 'v' ) ) {
00116             vsr_t = (float*)
00117                 LAPACKE_malloc( sizeof(float) * ldvsr_t * MAX(1,n) );
00118             if( vsr_t == NULL ) {
00119                 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00120                 goto exit_level_3;
00121             }
00122         }
00123         /* Transpose input matrices */
00124         LAPACKE_sge_trans( matrix_order, n, n, a, lda, a_t, lda_t );
00125         LAPACKE_sge_trans( matrix_order, n, n, b, ldb, b_t, ldb_t );
00126         /* Call LAPACK function and adjust info */
00127         LAPACK_sggesx( &jobvsl, &jobvsr, &sort, selctg, &sense, &n, a_t, &lda_t,
00128                        b_t, &ldb_t, sdim, alphar, alphai, beta, vsl_t, &ldvsl_t,
00129                        vsr_t, &ldvsr_t, rconde, rcondv, work, &lwork, iwork,
00130                        &liwork, bwork, &info );
00131         if( info < 0 ) {
00132             info = info - 1;
00133         }
00134         /* Transpose output matrices */
00135         LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, n, a_t, lda_t, a, lda );
00136         LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, n, b_t, ldb_t, b, ldb );
00137         if( LAPACKE_lsame( jobvsl, 'v' ) ) {
00138             LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, n, vsl_t, ldvsl_t, vsl,
00139                                ldvsl );
00140         }
00141         if( LAPACKE_lsame( jobvsr, 'v' ) ) {
00142             LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, n, vsr_t, ldvsr_t, vsr,
00143                                ldvsr );
00144         }
00145         /* Release memory and exit */
00146         if( LAPACKE_lsame( jobvsr, 'v' ) ) {
00147             LAPACKE_free( vsr_t );
00148         }
00149 exit_level_3:
00150         if( LAPACKE_lsame( jobvsl, 'v' ) ) {
00151             LAPACKE_free( vsl_t );
00152         }
00153 exit_level_2:
00154         LAPACKE_free( b_t );
00155 exit_level_1:
00156         LAPACKE_free( a_t );
00157 exit_level_0:
00158         if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
00159             LAPACKE_xerbla( "LAPACKE_sggesx_work", info );
00160         }
00161     } else {
00162         info = -1;
00163         LAPACKE_xerbla( "LAPACKE_sggesx_work", info );
00164     }
00165     return info;
00166 }


swiftnav
Author(s):
autogenerated on Sat Jun 8 2019 18:55:54