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_cpbrfs_work( int matrix_order, char uplo, lapack_int n,
00038 lapack_int kd, lapack_int nrhs,
00039 const lapack_complex_float* ab, lapack_int ldab,
00040 const lapack_complex_float* afb,
00041 lapack_int ldafb, const lapack_complex_float* b,
00042 lapack_int ldb, lapack_complex_float* x,
00043 lapack_int ldx, float* ferr, float* berr,
00044 lapack_complex_float* work, float* rwork )
00045 {
00046 lapack_int info = 0;
00047 if( matrix_order == LAPACK_COL_MAJOR ) {
00048
00049 LAPACK_cpbrfs( &uplo, &n, &kd, &nrhs, ab, &ldab, afb, &ldafb, b, &ldb,
00050 x, &ldx, ferr, berr, work, rwork, &info );
00051 if( info < 0 ) {
00052 info = info - 1;
00053 }
00054 } else if( matrix_order == LAPACK_ROW_MAJOR ) {
00055 lapack_int ldab_t = MAX(1,kd+1);
00056 lapack_int ldafb_t = MAX(1,kd+1);
00057 lapack_int ldb_t = MAX(1,n);
00058 lapack_int ldx_t = MAX(1,n);
00059 lapack_complex_float* ab_t = NULL;
00060 lapack_complex_float* afb_t = NULL;
00061 lapack_complex_float* b_t = NULL;
00062 lapack_complex_float* x_t = NULL;
00063
00064 if( ldab < n ) {
00065 info = -7;
00066 LAPACKE_xerbla( "LAPACKE_cpbrfs_work", info );
00067 return info;
00068 }
00069 if( ldafb < n ) {
00070 info = -9;
00071 LAPACKE_xerbla( "LAPACKE_cpbrfs_work", info );
00072 return info;
00073 }
00074 if( ldb < nrhs ) {
00075 info = -11;
00076 LAPACKE_xerbla( "LAPACKE_cpbrfs_work", info );
00077 return info;
00078 }
00079 if( ldx < nrhs ) {
00080 info = -13;
00081 LAPACKE_xerbla( "LAPACKE_cpbrfs_work", info );
00082 return info;
00083 }
00084
00085 ab_t = (lapack_complex_float*)
00086 LAPACKE_malloc( sizeof(lapack_complex_float) * ldab_t * MAX(1,n) );
00087 if( ab_t == NULL ) {
00088 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00089 goto exit_level_0;
00090 }
00091 afb_t = (lapack_complex_float*)
00092 LAPACKE_malloc( sizeof(lapack_complex_float) * ldafb_t * MAX(1,n) );
00093 if( afb_t == NULL ) {
00094 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00095 goto exit_level_1;
00096 }
00097 b_t = (lapack_complex_float*)
00098 LAPACKE_malloc( sizeof(lapack_complex_float) *
00099 ldb_t * MAX(1,nrhs) );
00100 if( b_t == NULL ) {
00101 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00102 goto exit_level_2;
00103 }
00104 x_t = (lapack_complex_float*)
00105 LAPACKE_malloc( sizeof(lapack_complex_float) *
00106 ldx_t * MAX(1,nrhs) );
00107 if( x_t == NULL ) {
00108 info = LAPACK_TRANSPOSE_MEMORY_ERROR;
00109 goto exit_level_3;
00110 }
00111
00112 LAPACKE_cpb_trans( matrix_order, uplo, n, kd, ab, ldab, ab_t, ldab_t );
00113 LAPACKE_cpb_trans( matrix_order, uplo, n, kd, afb, ldafb, afb_t,
00114 ldafb_t );
00115 LAPACKE_cge_trans( matrix_order, n, nrhs, b, ldb, b_t, ldb_t );
00116 LAPACKE_cge_trans( matrix_order, n, nrhs, x, ldx, x_t, ldx_t );
00117
00118 LAPACK_cpbrfs( &uplo, &n, &kd, &nrhs, ab_t, &ldab_t, afb_t, &ldafb_t,
00119 b_t, &ldb_t, x_t, &ldx_t, ferr, berr, work, rwork,
00120 &info );
00121 if( info < 0 ) {
00122 info = info - 1;
00123 }
00124
00125 LAPACKE_cge_trans( LAPACK_COL_MAJOR, n, nrhs, x_t, ldx_t, x, ldx );
00126
00127 LAPACKE_free( x_t );
00128 exit_level_3:
00129 LAPACKE_free( b_t );
00130 exit_level_2:
00131 LAPACKE_free( afb_t );
00132 exit_level_1:
00133 LAPACKE_free( ab_t );
00134 exit_level_0:
00135 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
00136 LAPACKE_xerbla( "LAPACKE_cpbrfs_work", info );
00137 }
00138 } else {
00139 info = -1;
00140 LAPACKE_xerbla( "LAPACKE_cpbrfs_work", info );
00141 }
00142 return info;
00143 }