00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
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
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
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
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
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
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
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
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
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 }