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_cgelss_work( int matrix_order, lapack_int m, lapack_int n,
00038 lapack_int nrhs, lapack_complex_float* a,
00039 lapack_int lda, lapack_complex_float* b,
00040 lapack_int ldb, float* s, float rcond,
00041 lapack_int* rank, lapack_complex_float* work,
00042 lapack_int lwork, float* rwork )
00043 {
00044 lapack_int info = 0;
00045 if( matrix_order == LAPACK_COL_MAJOR ) {
00046
00047 LAPACK_cgelss( &m, &n, &nrhs, a, &lda, b, &ldb, s, &rcond, rank, work,
00048 &lwork, rwork, &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,MAX(m,n));
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_cgelss_work", info );
00061 return info;
00062 }
00063 if( ldb < nrhs ) {
00064 info = -8;
00065 LAPACKE_xerbla( "LAPACKE_cgelss_work", info );
00066 return info;
00067 }
00068
00069 if( lwork == -1 ) {
00070 LAPACK_cgelss( &m, &n, &nrhs, a, &lda_t, b, &ldb_t, s, &rcond, rank,
00071 work, &lwork, rwork, &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) *
00083 ldb_t * MAX(1,nrhs) );
00084 if( b_t == NULL ) {
00085 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00086 goto exit_level_1;
00087 }
00088
00089 LAPACKE_cge_trans( matrix_order, m, n, a, lda, a_t, lda_t );
00090 LAPACKE_cge_trans( matrix_order, MAX(m,n), nrhs, b, ldb, b_t, ldb_t );
00091
00092 LAPACK_cgelss( &m, &n, &nrhs, a_t, &lda_t, b_t, &ldb_t, s, &rcond, rank,
00093 work, &lwork, rwork, &info );
00094 if( info < 0 ) {
00095 info = info - 1;
00096 }
00097
00098 LAPACKE_cge_trans( LAPACK_COL_MAJOR, m, n, a_t, lda_t, a, lda );
00099 LAPACKE_cge_trans( LAPACK_COL_MAJOR, MAX(m,n), nrhs, b_t, ldb_t, b,
00100 ldb );
00101
00102 LAPACKE_free( b_t );
00103 exit_level_1:
00104 LAPACKE_free( a_t );
00105 exit_level_0:
00106 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
00107 LAPACKE_xerbla( "LAPACKE_cgelss_work", info );
00108 }
00109 } else {
00110 info = -1;
00111 LAPACKE_xerbla( "LAPACKE_cgelss_work", info );
00112 }
00113 return info;
00114 }