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_ctprfs_work( int matrix_order, char uplo, char trans,
00038 char diag, lapack_int n, lapack_int nrhs,
00039 const lapack_complex_float* ap,
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_ctprfs( &uplo, &trans, &diag, &n, &nrhs, ap, b, &ldb, x, &ldx,
00049 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 ldb_t = MAX(1,n);
00055 lapack_int ldx_t = MAX(1,n);
00056 lapack_complex_float* b_t = NULL;
00057 lapack_complex_float* x_t = NULL;
00058 lapack_complex_float* ap_t = NULL;
00059
00060 if( ldb < nrhs ) {
00061 info = -9;
00062 LAPACKE_xerbla( "LAPACKE_ctprfs_work", info );
00063 return info;
00064 }
00065 if( ldx < nrhs ) {
00066 info = -11;
00067 LAPACKE_xerbla( "LAPACKE_ctprfs_work", info );
00068 return info;
00069 }
00070
00071 b_t = (lapack_complex_float*)
00072 LAPACKE_malloc( sizeof(lapack_complex_float) *
00073 ldb_t * MAX(1,nrhs) );
00074 if( b_t == NULL ) {
00075 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00076 goto exit_level_0;
00077 }
00078 x_t = (lapack_complex_float*)
00079 LAPACKE_malloc( sizeof(lapack_complex_float) *
00080 ldx_t * MAX(1,nrhs) );
00081 if( x_t == NULL ) {
00082 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00083 goto exit_level_1;
00084 }
00085 ap_t = (lapack_complex_float*)
00086 LAPACKE_malloc( sizeof(lapack_complex_float) *
00087 ( MAX(1,n) * MAX(2,n+1) ) / 2 );
00088 if( ap_t == NULL ) {
00089 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00090 goto exit_level_2;
00091 }
00092
00093 LAPACKE_cge_trans( matrix_order, n, nrhs, b, ldb, b_t, ldb_t );
00094 LAPACKE_cge_trans( matrix_order, n, nrhs, x, ldx, x_t, ldx_t );
00095 LAPACKE_ctp_trans( matrix_order, uplo, diag, n, ap, ap_t );
00096
00097 LAPACK_ctprfs( &uplo, &trans, &diag, &n, &nrhs, ap_t, b_t, &ldb_t, x_t,
00098 &ldx_t, ferr, berr, work, rwork, &info );
00099 if( info < 0 ) {
00100 info = info - 1;
00101 }
00102
00103 LAPACKE_free( ap_t );
00104 exit_level_2:
00105 LAPACKE_free( x_t );
00106 exit_level_1:
00107 LAPACKE_free( b_t );
00108 exit_level_0:
00109 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
00110 LAPACKE_xerbla( "LAPACKE_ctprfs_work", info );
00111 }
00112 } else {
00113 info = -1;
00114 LAPACKE_xerbla( "LAPACKE_ctprfs_work", info );
00115 }
00116 return info;
00117 }