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_ctrrfs_work( int matrix_order, char uplo, char trans,
00038 char diag, lapack_int n, lapack_int nrhs,
00039 const lapack_complex_float* a, lapack_int lda,
00040 const lapack_complex_float* b, lapack_int ldb,
00041 const lapack_complex_float* x, lapack_int ldx,
00042 float* ferr, float* berr,
00043 lapack_complex_float* work, float* rwork )
00044 {
00045 lapack_int info = 0;
00046 if( matrix_order == LAPACK_COL_MAJOR ) {
00047
00048 LAPACK_ctrrfs( &uplo, &trans, &diag, &n, &nrhs, a, &lda, b, &ldb, x,
00049 &ldx, ferr, berr, work, rwork, &info );
00050 if( info < 0 ) {
00051 info = info - 1;
00052 }
00053 } else if( matrix_order == LAPACK_ROW_MAJOR ) {
00054 lapack_int lda_t = MAX(1,n);
00055 lapack_int ldb_t = MAX(1,n);
00056 lapack_int ldx_t = MAX(1,n);
00057 lapack_complex_float* a_t = NULL;
00058 lapack_complex_float* b_t = NULL;
00059 lapack_complex_float* x_t = NULL;
00060
00061 if( lda < n ) {
00062 info = -8;
00063 LAPACKE_xerbla( "LAPACKE_ctrrfs_work", info );
00064 return info;
00065 }
00066 if( ldb < nrhs ) {
00067 info = -10;
00068 LAPACKE_xerbla( "LAPACKE_ctrrfs_work", info );
00069 return info;
00070 }
00071 if( ldx < nrhs ) {
00072 info = -12;
00073 LAPACKE_xerbla( "LAPACKE_ctrrfs_work", info );
00074 return info;
00075 }
00076
00077 a_t = (lapack_complex_float*)
00078 LAPACKE_malloc( sizeof(lapack_complex_float) * lda_t * MAX(1,n) );
00079 if( a_t == NULL ) {
00080 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00081 goto exit_level_0;
00082 }
00083 b_t = (lapack_complex_float*)
00084 LAPACKE_malloc( sizeof(lapack_complex_float) *
00085 ldb_t * MAX(1,nrhs) );
00086 if( b_t == NULL ) {
00087 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00088 goto exit_level_1;
00089 }
00090 x_t = (lapack_complex_float*)
00091 LAPACKE_malloc( sizeof(lapack_complex_float) *
00092 ldx_t * MAX(1,nrhs) );
00093 if( x_t == NULL ) {
00094 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00095 goto exit_level_2;
00096 }
00097
00098 LAPACKE_ctr_trans( matrix_order, uplo, diag, n, a, lda, a_t, lda_t );
00099 LAPACKE_cge_trans( matrix_order, n, nrhs, b, ldb, b_t, ldb_t );
00100 LAPACKE_cge_trans( matrix_order, n, nrhs, x, ldx, x_t, ldx_t );
00101
00102 LAPACK_ctrrfs( &uplo, &trans, &diag, &n, &nrhs, a_t, &lda_t, b_t,
00103 &ldb_t, x_t, &ldx_t, ferr, berr, work, rwork, &info );
00104 if( info < 0 ) {
00105 info = info - 1;
00106 }
00107
00108 LAPACKE_free( x_t );
00109 exit_level_2:
00110 LAPACKE_free( b_t );
00111 exit_level_1:
00112 LAPACKE_free( a_t );
00113 exit_level_0:
00114 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
00115 LAPACKE_xerbla( "LAPACKE_ctrrfs_work", info );
00116 }
00117 } else {
00118 info = -1;
00119 LAPACKE_xerbla( "LAPACKE_ctrrfs_work", info );
00120 }
00121 return info;
00122 }