lapacke_ctgsen_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 ctgsen
00030 * Author: Intel Corporation
00031 * Generated October, 2010
00032 *****************************************************************************/
00033 
00034 #include "lapacke.h"
00035 #include "lapacke_utils.h"
00036 
00037 lapack_int LAPACKE_ctgsen_work( int matrix_order, lapack_int ijob,
00038                                 lapack_logical wantq, lapack_logical wantz,
00039                                 const lapack_logical* select, lapack_int n,
00040                                 lapack_complex_float* a, lapack_int lda,
00041                                 lapack_complex_float* b, lapack_int ldb,
00042                                 lapack_complex_float* alpha,
00043                                 lapack_complex_float* beta,
00044                                 lapack_complex_float* q, lapack_int ldq,
00045                                 lapack_complex_float* z, lapack_int ldz,
00046                                 lapack_int* m, float* pl, float* pr, float* dif,
00047                                 lapack_complex_float* work, lapack_int lwork,
00048                                 lapack_int* iwork, lapack_int liwork )
00049 {
00050     lapack_int info = 0;
00051     if( matrix_order == LAPACK_COL_MAJOR ) {
00052         /* Call LAPACK function and adjust info */
00053         LAPACK_ctgsen( &ijob, &wantq, &wantz, select, &n, a, &lda, b, &ldb,
00054                        alpha, beta, q, &ldq, z, &ldz, m, pl, pr, dif, work,
00055                        &lwork, iwork, &liwork, &info );
00056         if( info < 0 ) {
00057             info = info - 1;
00058         }
00059     } else if( matrix_order == LAPACK_ROW_MAJOR ) {
00060         lapack_int lda_t = MAX(1,n);
00061         lapack_int ldb_t = MAX(1,n);
00062         lapack_int ldq_t = MAX(1,n);
00063         lapack_int ldz_t = MAX(1,n);
00064         lapack_complex_float* a_t = NULL;
00065         lapack_complex_float* b_t = NULL;
00066         lapack_complex_float* q_t = NULL;
00067         lapack_complex_float* z_t = NULL;
00068         /* Check leading dimension(s) */
00069         if( lda < n ) {
00070             info = -8;
00071             LAPACKE_xerbla( "LAPACKE_ctgsen_work", info );
00072             return info;
00073         }
00074         if( ldb < n ) {
00075             info = -10;
00076             LAPACKE_xerbla( "LAPACKE_ctgsen_work", info );
00077             return info;
00078         }
00079         if( ldq < n ) {
00080             info = -14;
00081             LAPACKE_xerbla( "LAPACKE_ctgsen_work", info );
00082             return info;
00083         }
00084         if( ldz < n ) {
00085             info = -16;
00086             LAPACKE_xerbla( "LAPACKE_ctgsen_work", info );
00087             return info;
00088         }
00089         /* Query optimal working array(s) size if requested */
00090         if( liwork == -1 || lwork == -1 ) {
00091             LAPACK_ctgsen( &ijob, &wantq, &wantz, select, &n, a, &lda_t, b,
00092                            &ldb_t, alpha, beta, q, &ldq_t, z, &ldz_t, m, pl, pr,
00093                            dif, work, &lwork, iwork, &liwork, &info );
00094             return (info < 0) ? (info - 1) : info;
00095         }
00096         /* Allocate memory for temporary array(s) */
00097         a_t = (lapack_complex_float*)
00098             LAPACKE_malloc( sizeof(lapack_complex_float) * lda_t * MAX(1,n) );
00099         if( a_t == NULL ) {
00100             info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00101             goto exit_level_0;
00102         }
00103         b_t = (lapack_complex_float*)
00104             LAPACKE_malloc( sizeof(lapack_complex_float) * ldb_t * MAX(1,n) );
00105         if( b_t == NULL ) {
00106             info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00107             goto exit_level_1;
00108         }
00109         if( wantq ) {
00110             q_t = (lapack_complex_float*)
00111                 LAPACKE_malloc( sizeof(lapack_complex_float) *
00112                                 ldq_t * MAX(1,n) );
00113             if( q_t == NULL ) {
00114                 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00115                 goto exit_level_2;
00116             }
00117         }
00118         if( wantz ) {
00119             z_t = (lapack_complex_float*)
00120                 LAPACKE_malloc( sizeof(lapack_complex_float) *
00121                                 ldz_t * MAX(1,n) );
00122             if( z_t == NULL ) {
00123                 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00124                 goto exit_level_3;
00125             }
00126         }
00127         /* Transpose input matrices */
00128         LAPACKE_cge_trans( matrix_order, n, n, a, lda, a_t, lda_t );
00129         LAPACKE_cge_trans( matrix_order, n, n, b, ldb, b_t, ldb_t );
00130         if( wantq ) {
00131             LAPACKE_cge_trans( matrix_order, n, n, q, ldq, q_t, ldq_t );
00132         }
00133         if( wantz ) {
00134             LAPACKE_cge_trans( matrix_order, n, n, z, ldz, z_t, ldz_t );
00135         }
00136         /* Call LAPACK function and adjust info */
00137         LAPACK_ctgsen( &ijob, &wantq, &wantz, select, &n, a_t, &lda_t, b_t,
00138                        &ldb_t, alpha, beta, q_t, &ldq_t, z_t, &ldz_t, m, pl, pr,
00139                        dif, work, &lwork, iwork, &liwork, &info );
00140         if( info < 0 ) {
00141             info = info - 1;
00142         }
00143         /* Transpose output matrices */
00144         LAPACKE_cge_trans( LAPACK_COL_MAJOR, n, n, a_t, lda_t, a, lda );
00145         LAPACKE_cge_trans( LAPACK_COL_MAJOR, n, n, b_t, ldb_t, b, ldb );
00146         if( wantq ) {
00147             LAPACKE_cge_trans( LAPACK_COL_MAJOR, n, n, q_t, ldq_t, q, ldq );
00148         }
00149         if( wantz ) {
00150             LAPACKE_cge_trans( LAPACK_COL_MAJOR, n, n, z_t, ldz_t, z, ldz );
00151         }
00152         /* Release memory and exit */
00153         if( wantz ) {
00154             LAPACKE_free( z_t );
00155         }
00156 exit_level_3:
00157         if( wantq ) {
00158             LAPACKE_free( q_t );
00159         }
00160 exit_level_2:
00161         LAPACKE_free( b_t );
00162 exit_level_1:
00163         LAPACKE_free( a_t );
00164 exit_level_0:
00165         if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
00166             LAPACKE_xerbla( "LAPACKE_ctgsen_work", info );
00167         }
00168     } else {
00169         info = -1;
00170         LAPACKE_xerbla( "LAPACKE_ctgsen_work", info );
00171     }
00172     return info;
00173 }


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