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_ctbrfs_work( int matrix_order, char uplo, char trans,
00038 char diag, lapack_int n, lapack_int kd,
00039 lapack_int nrhs, const lapack_complex_float* ab,
00040 lapack_int ldab, const lapack_complex_float* b,
00041 lapack_int ldb, const lapack_complex_float* x,
00042 lapack_int ldx, 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_ctbrfs( &uplo, &trans, &diag, &n, &kd, &nrhs, ab, &ldab, b, &ldb,
00049 x, &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 ldab_t = MAX(1,kd+1);
00055 lapack_int ldb_t = MAX(1,n);
00056 lapack_int ldx_t = MAX(1,n);
00057 lapack_complex_float* ab_t = NULL;
00058 lapack_complex_float* b_t = NULL;
00059 lapack_complex_float* x_t = NULL;
00060
00061 if( ldab < n ) {
00062 info = -9;
00063 LAPACKE_xerbla( "LAPACKE_ctbrfs_work", info );
00064 return info;
00065 }
00066 if( ldb < nrhs ) {
00067 info = -11;
00068 LAPACKE_xerbla( "LAPACKE_ctbrfs_work", info );
00069 return info;
00070 }
00071 if( ldx < nrhs ) {
00072 info = -13;
00073 LAPACKE_xerbla( "LAPACKE_ctbrfs_work", info );
00074 return info;
00075 }
00076
00077 ab_t = (lapack_complex_float*)
00078 LAPACKE_malloc( sizeof(lapack_complex_float) * ldab_t * MAX(1,n) );
00079 if( ab_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_ctb_trans( matrix_order, uplo, diag, n, kd, ab, ldab, ab_t,
00099 ldab_t );
00100 LAPACKE_cge_trans( matrix_order, n, nrhs, b, ldb, b_t, ldb_t );
00101 LAPACKE_cge_trans( matrix_order, n, nrhs, x, ldx, x_t, ldx_t );
00102
00103 LAPACK_ctbrfs( &uplo, &trans, &diag, &n, &kd, &nrhs, ab_t, &ldab_t, b_t,
00104 &ldb_t, x_t, &ldx_t, ferr, berr, work, rwork, &info );
00105 if( info < 0 ) {
00106 info = info - 1;
00107 }
00108
00109 LAPACKE_free( x_t );
00110 exit_level_2:
00111 LAPACKE_free( b_t );
00112 exit_level_1:
00113 LAPACKE_free( ab_t );
00114 exit_level_0:
00115 if( info == LAPACK_TRANSPOSE_MEMORY_ERROR ) {
00116 LAPACKE_xerbla( "LAPACKE_ctbrfs_work", info );
00117 }
00118 } else {
00119 info = -1;
00120 LAPACKE_xerbla( "LAPACKE_ctbrfs_work", info );
00121 }
00122 return info;
00123 }