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_cggrqf_work( int matrix_order, lapack_int m, lapack_int p,
00038 lapack_int n, lapack_complex_float* a,
00039 lapack_int lda, lapack_complex_float* taua,
00040 lapack_complex_float* b, lapack_int ldb,
00041 lapack_complex_float* taub,
00042 lapack_complex_float* work, lapack_int lwork )
00043 {
00044 lapack_int info = 0;
00045 if( matrix_order == LAPACK_COL_MAJOR ) {
00046
00047 LAPACK_cggrqf( &m, &p, &n, a, &lda, taua, b, &ldb, taub, work, &lwork,
00048 &info );
00049 if( info < 0 ) {
00050 info = info - 1;
00051 }
00052 } else if( matrix_order == LAPACK_ROW_MAJOR ) {
00053 lapack_int lda_t = MAX(1,m);
00054 lapack_int ldb_t = MAX(1,p);
00055 lapack_complex_float* a_t = NULL;
00056 lapack_complex_float* b_t = NULL;
00057
00058 if( lda < n ) {
00059 info = -6;
00060 LAPACKE_xerbla( "LAPACKE_cggrqf_work", info );
00061 return info;
00062 }
00063 if( ldb < n ) {
00064 info = -9;
00065 LAPACKE_xerbla( "LAPACKE_cggrqf_work", info );
00066 return info;
00067 }
00068
00069 if( lwork == -1 ) {
00070 LAPACK_cggrqf( &m, &p, &n, a, &lda_t, taua, b, &ldb_t, taub, work,
00071 &lwork, &info );
00072 return (info < 0) ? (info - 1) : info;
00073 }
00074
00075 a_t = (lapack_complex_float*)
00076 LAPACKE_malloc( sizeof(lapack_complex_float) * lda_t * MAX(1,n) );
00077 if( a_t == NULL ) {
00078 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00079 goto exit_level_0;
00080 }
00081 b_t = (lapack_complex_float*)
00082 LAPACKE_malloc( sizeof(lapack_complex_float) * ldb_t * MAX(1,n) );
00083 if( b_t == NULL ) {
00084 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00085 goto exit_level_1;
00086 }
00087
00088 LAPACKE_cge_trans( matrix_order, m, n, a, lda, a_t, lda_t );
00089 LAPACKE_cge_trans( matrix_order, p, n, b, ldb, b_t, ldb_t );
00090
00091 LAPACK_cggrqf( &m, &p, &n, a_t, &lda_t, taua, b_t, &ldb_t, taub, work,
00092 &lwork, &info );
00093 if( info < 0 ) {
00094 info = info - 1;
00095 }
00096
00097 LAPACKE_cge_trans( LAPACK_COL_MAJOR, m, n, a_t, lda_t, a, lda );
00098 LAPACKE_cge_trans( LAPACK_COL_MAJOR, p, n, b_t, ldb_t, b, ldb );
00099
00100 LAPACKE_free( b_t );
00101 exit_level_1:
00102 LAPACKE_free( a_t );
00103 exit_level_0:
00104 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
00105 LAPACKE_xerbla( "LAPACKE_cggrqf_work", info );
00106 }
00107 } else {
00108 info = -1;
00109 LAPACKE_xerbla( "LAPACKE_cggrqf_work", info );
00110 }
00111 return info;
00112 }