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


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