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
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049 #include <stdio.h>
00050 #include "lapacke.h"
00051 #include "lapacke_utils.h"
00052 #include "test_utils.h"
00053
00054 static void init_scalars_dtbcon( char *norm, char *uplo, char *diag,
00055 lapack_int *n, lapack_int *kd,
00056 lapack_int *ldab );
00057 static void init_ab( lapack_int size, double *ab );
00058 static void init_work( lapack_int size, double *work );
00059 static void init_iwork( lapack_int size, lapack_int *iwork );
00060 static int compare_dtbcon( double rcond, double rcond_i, lapack_int info,
00061 lapack_int info_i );
00062
00063 int main(void)
00064 {
00065
00066 char norm, norm_i;
00067 char uplo, uplo_i;
00068 char diag, diag_i;
00069 lapack_int n, n_i;
00070 lapack_int kd, kd_i;
00071 lapack_int ldab, ldab_i;
00072 lapack_int ldab_r;
00073 double rcond, rcond_i;
00074 lapack_int info, info_i;
00075 lapack_int i;
00076 int failed;
00077
00078
00079 double *ab = NULL, *ab_i = NULL;
00080 double *work = NULL, *work_i = NULL;
00081 lapack_int *iwork = NULL, *iwork_i = NULL;
00082 double *ab_r = NULL;
00083
00084
00085 init_scalars_dtbcon( &norm, &uplo, &diag, &n, &kd, &ldab );
00086 ldab_r = n+2;
00087 norm_i = norm;
00088 uplo_i = uplo;
00089 diag_i = diag;
00090 n_i = n;
00091 kd_i = kd;
00092 ldab_i = ldab;
00093
00094
00095 ab = (double *)LAPACKE_malloc( ldab*n * sizeof(double) );
00096 work = (double *)LAPACKE_malloc( 3*n * sizeof(double) );
00097 iwork = (lapack_int *)LAPACKE_malloc( n * sizeof(lapack_int) );
00098
00099
00100 ab_i = (double *)LAPACKE_malloc( ldab*n * sizeof(double) );
00101 work_i = (double *)LAPACKE_malloc( 3*n * sizeof(double) );
00102 iwork_i = (lapack_int *)LAPACKE_malloc( n * sizeof(lapack_int) );
00103
00104
00105 ab_r = (double *)LAPACKE_malloc( (kd+1)*(n+2) * sizeof(double) );
00106
00107
00108 init_ab( ldab*n, ab );
00109 init_work( 3*n, work );
00110 init_iwork( n, iwork );
00111
00112
00113 dtbcon_( &norm, &uplo, &diag, &n, &kd, ab, &ldab, &rcond, work, iwork,
00114 &info );
00115
00116
00117
00118 for( i = 0; i < ldab*n; i++ ) {
00119 ab_i[i] = ab[i];
00120 }
00121 for( i = 0; i < 3*n; i++ ) {
00122 work_i[i] = work[i];
00123 }
00124 for( i = 0; i < n; i++ ) {
00125 iwork_i[i] = iwork[i];
00126 }
00127 info_i = LAPACKE_dtbcon_work( LAPACK_COL_MAJOR, norm_i, uplo_i, diag_i, n_i,
00128 kd_i, ab_i, ldab_i, &rcond_i, work_i,
00129 iwork_i );
00130
00131 failed = compare_dtbcon( rcond, rcond_i, info, info_i );
00132 if( failed == 0 ) {
00133 printf( "PASSED: column-major middle-level interface to dtbcon\n" );
00134 } else {
00135 printf( "FAILED: column-major middle-level interface to dtbcon\n" );
00136 }
00137
00138
00139
00140 for( i = 0; i < ldab*n; i++ ) {
00141 ab_i[i] = ab[i];
00142 }
00143 for( i = 0; i < 3*n; i++ ) {
00144 work_i[i] = work[i];
00145 }
00146 for( i = 0; i < n; i++ ) {
00147 iwork_i[i] = iwork[i];
00148 }
00149 info_i = LAPACKE_dtbcon( LAPACK_COL_MAJOR, norm_i, uplo_i, diag_i, n_i,
00150 kd_i, ab_i, ldab_i, &rcond_i );
00151
00152 failed = compare_dtbcon( rcond, rcond_i, info, info_i );
00153 if( failed == 0 ) {
00154 printf( "PASSED: column-major high-level interface to dtbcon\n" );
00155 } else {
00156 printf( "FAILED: column-major high-level interface to dtbcon\n" );
00157 }
00158
00159
00160
00161 for( i = 0; i < ldab*n; i++ ) {
00162 ab_i[i] = ab[i];
00163 }
00164 for( i = 0; i < 3*n; i++ ) {
00165 work_i[i] = work[i];
00166 }
00167 for( i = 0; i < n; i++ ) {
00168 iwork_i[i] = iwork[i];
00169 }
00170
00171 LAPACKE_dge_trans( LAPACK_COL_MAJOR, kd+1, n, ab_i, ldab, ab_r, n+2 );
00172 info_i = LAPACKE_dtbcon_work( LAPACK_ROW_MAJOR, norm_i, uplo_i, diag_i, n_i,
00173 kd_i, ab_r, ldab_r, &rcond_i, work_i,
00174 iwork_i );
00175
00176 failed = compare_dtbcon( rcond, rcond_i, info, info_i );
00177 if( failed == 0 ) {
00178 printf( "PASSED: row-major middle-level interface to dtbcon\n" );
00179 } else {
00180 printf( "FAILED: row-major middle-level interface to dtbcon\n" );
00181 }
00182
00183
00184
00185 for( i = 0; i < ldab*n; i++ ) {
00186 ab_i[i] = ab[i];
00187 }
00188 for( i = 0; i < 3*n; i++ ) {
00189 work_i[i] = work[i];
00190 }
00191 for( i = 0; i < n; i++ ) {
00192 iwork_i[i] = iwork[i];
00193 }
00194
00195
00196 LAPACKE_dge_trans( LAPACK_COL_MAJOR, kd+1, n, ab_i, ldab, ab_r, n+2 );
00197 info_i = LAPACKE_dtbcon( LAPACK_ROW_MAJOR, norm_i, uplo_i, diag_i, n_i,
00198 kd_i, ab_r, ldab_r, &rcond_i );
00199
00200 failed = compare_dtbcon( rcond, rcond_i, info, info_i );
00201 if( failed == 0 ) {
00202 printf( "PASSED: row-major high-level interface to dtbcon\n" );
00203 } else {
00204 printf( "FAILED: row-major high-level interface to dtbcon\n" );
00205 }
00206
00207
00208 if( ab != NULL ) {
00209 LAPACKE_free( ab );
00210 }
00211 if( ab_i != NULL ) {
00212 LAPACKE_free( ab_i );
00213 }
00214 if( ab_r != NULL ) {
00215 LAPACKE_free( ab_r );
00216 }
00217 if( work != NULL ) {
00218 LAPACKE_free( work );
00219 }
00220 if( work_i != NULL ) {
00221 LAPACKE_free( work_i );
00222 }
00223 if( iwork != NULL ) {
00224 LAPACKE_free( iwork );
00225 }
00226 if( iwork_i != NULL ) {
00227 LAPACKE_free( iwork_i );
00228 }
00229
00230 return 0;
00231 }
00232
00233
00234 static void init_scalars_dtbcon( char *norm, char *uplo, char *diag,
00235 lapack_int *n, lapack_int *kd,
00236 lapack_int *ldab )
00237 {
00238 *norm = '1';
00239 *uplo = 'L';
00240 *diag = 'N';
00241 *n = 4;
00242 *kd = 1;
00243 *ldab = 9;
00244
00245 return;
00246 }
00247
00248
00249 static void init_ab( lapack_int size, double *ab ) {
00250 lapack_int i;
00251 for( i = 0; i < size; i++ ) {
00252 ab[i] = 0;
00253 }
00254 ab[0] = -4.16000000000000010e+000;
00255 ab[9] = 4.78000000000000020e+000;
00256 ab[18] = 6.32000000000000030e+000;
00257 ab[27] = 1.60000000000000000e-001;
00258 ab[1] = -2.25000000000000000e+000;
00259 ab[10] = 5.86000000000000030e+000;
00260 ab[19] = -4.82000000000000030e+000;
00261 ab[28] = 0.00000000000000000e+000;
00262 }
00263 static void init_work( lapack_int size, double *work ) {
00264 lapack_int i;
00265 for( i = 0; i < size; i++ ) {
00266 work[i] = 0;
00267 }
00268 }
00269 static void init_iwork( lapack_int size, lapack_int *iwork ) {
00270 lapack_int i;
00271 for( i = 0; i < size; i++ ) {
00272 iwork[i] = 0;
00273 }
00274 }
00275
00276
00277
00278 static int compare_dtbcon( double rcond, double rcond_i, lapack_int info,
00279 lapack_int info_i )
00280 {
00281 int failed = 0;
00282 failed += compare_doubles(rcond,rcond_i);
00283 failed += (info == info_i) ? 0 : 1;
00284 if( info != 0 || info_i != 0 ) {
00285 printf( "info=%d, info_i=%d\n",(int)info,(int)info_i );
00286 }
00287
00288 return failed;
00289 }