spbcon_1.c
Go to the documentation of this file.
00001 /*****************************************************************************
00002   Copyright (c) 2010, Intel Corp.
00003   All rights reserved.
00004 
00005   Redistribution and use in source and binary forms, with or without
00006   modification, are permitted provided that the following conditions are met:
00007 
00008     * Redistributions of source code must retain the above copyright notice,
00009       this list of conditions and the following disclaimer.
00010     * Redistributions in binary form must reproduce the above copyright
00011       notice, this list of conditions and the following disclaimer in the
00012       documentation and/or other materials provided with the distribution.
00013     * Neither the name of Intel Corporation nor the names of its contributors
00014       may be used to endorse or promote products derived from this software
00015       without specific prior written permission.
00016 
00017   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
00018   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00019   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00020   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
00021   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
00022   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
00023   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
00024   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
00025   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
00026   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
00027   THE POSSIBILITY OF SUCH DAMAGE.
00028 *****************************************************************************/
00029 /*  Contents: test routine for C interface to LAPACK
00030 *   Author: Intel Corporation
00031 *   Created in March, 2010
00032 *
00033 * Purpose
00034 *
00035 * spbcon_1 is the test program for the C interface to LAPACK
00036 * routine spbcon
00037 * The program doesn't require an input, the input data is hardcoded in the
00038 * test program.
00039 * The program tests the C interface in the four combinations:
00040 *   1) column-major layout, middle-level interface
00041 *   2) column-major layout, high-level interface
00042 *   3) row-major layout, middle-level interface
00043 *   4) row-major layout, high-level interface
00044 * The output of the C interface function is compared to those obtained from
00045 * the corresponiding LAPACK routine with the same input data, and the
00046 * comparison diagnostics is then printed on the standard output having PASSED
00047 * keyword if the test is passed, and FAILED keyword if the test isn't passed.
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_spbcon( char *uplo, lapack_int *n, lapack_int *kd,
00055                                  lapack_int *ldab, float *anorm );
00056 static void init_ab( lapack_int size, float *ab );
00057 static void init_work( lapack_int size, float *work );
00058 static void init_iwork( lapack_int size, lapack_int *iwork );
00059 static int compare_spbcon( float rcond, float rcond_i, lapack_int info,
00060                            lapack_int info_i );
00061 
00062 int main(void)
00063 {
00064     /* Local scalars */
00065     char uplo, uplo_i;
00066     lapack_int n, n_i;
00067     lapack_int kd, kd_i;
00068     lapack_int ldab, ldab_i;
00069     lapack_int ldab_r;
00070     float anorm, anorm_i;
00071     float rcond, rcond_i;
00072     lapack_int info, info_i;
00073     lapack_int i;
00074     int failed;
00075 
00076     /* Local arrays */
00077     float *ab = NULL, *ab_i = NULL;
00078     float *work = NULL, *work_i = NULL;
00079     lapack_int *iwork = NULL, *iwork_i = NULL;
00080     float *ab_r = NULL;
00081 
00082     /* Iniitialize the scalar parameters */
00083     init_scalars_spbcon( &uplo, &n, &kd, &ldab, &anorm );
00084     ldab_r = n+2;
00085     uplo_i = uplo;
00086     n_i = n;
00087     kd_i = kd;
00088     ldab_i = ldab;
00089     anorm_i = anorm;
00090 
00091     /* Allocate memory for the LAPACK routine arrays */
00092     ab = (float *)LAPACKE_malloc( ldab*n * sizeof(float) );
00093     work = (float *)LAPACKE_malloc( 3*n * sizeof(float) );
00094     iwork = (lapack_int *)LAPACKE_malloc( n * sizeof(lapack_int) );
00095 
00096     /* Allocate memory for the C interface function arrays */
00097     ab_i = (float *)LAPACKE_malloc( ldab*n * sizeof(float) );
00098     work_i = (float *)LAPACKE_malloc( 3*n * sizeof(float) );
00099     iwork_i = (lapack_int *)LAPACKE_malloc( n * sizeof(lapack_int) );
00100 
00101     /* Allocate memory for the row-major arrays */
00102     ab_r = (float *)LAPACKE_malloc( (kd+1)*(n+2) * sizeof(float) );
00103 
00104     /* Initialize input arrays */
00105     init_ab( ldab*n, ab );
00106     init_work( 3*n, work );
00107     init_iwork( n, iwork );
00108 
00109     /* Call the LAPACK routine */
00110     spbcon_( &uplo, &n, &kd, ab, &ldab, &anorm, &rcond, work, iwork, &info );
00111 
00112     /* Initialize input data, call the column-major middle-level
00113      * interface to LAPACK routine and check the results */
00114     for( i = 0; i < ldab*n; i++ ) {
00115         ab_i[i] = ab[i];
00116     }
00117     for( i = 0; i < 3*n; i++ ) {
00118         work_i[i] = work[i];
00119     }
00120     for( i = 0; i < n; i++ ) {
00121         iwork_i[i] = iwork[i];
00122     }
00123     info_i = LAPACKE_spbcon_work( LAPACK_COL_MAJOR, uplo_i, n_i, kd_i, ab_i,
00124                                   ldab_i, anorm_i, &rcond_i, work_i, iwork_i );
00125 
00126     failed = compare_spbcon( rcond, rcond_i, info, info_i );
00127     if( failed == 0 ) {
00128         printf( "PASSED: column-major middle-level interface to spbcon\n" );
00129     } else {
00130         printf( "FAILED: column-major middle-level interface to spbcon\n" );
00131     }
00132 
00133     /* Initialize input data, call the column-major high-level
00134      * interface to LAPACK routine and check the results */
00135     for( i = 0; i < ldab*n; i++ ) {
00136         ab_i[i] = ab[i];
00137     }
00138     for( i = 0; i < 3*n; i++ ) {
00139         work_i[i] = work[i];
00140     }
00141     for( i = 0; i < n; i++ ) {
00142         iwork_i[i] = iwork[i];
00143     }
00144     info_i = LAPACKE_spbcon( LAPACK_COL_MAJOR, uplo_i, n_i, kd_i, ab_i, ldab_i,
00145                              anorm_i, &rcond_i );
00146 
00147     failed = compare_spbcon( rcond, rcond_i, info, info_i );
00148     if( failed == 0 ) {
00149         printf( "PASSED: column-major high-level interface to spbcon\n" );
00150     } else {
00151         printf( "FAILED: column-major high-level interface to spbcon\n" );
00152     }
00153 
00154     /* Initialize input data, call the row-major middle-level
00155      * interface to LAPACK routine and check the results */
00156     for( i = 0; i < ldab*n; i++ ) {
00157         ab_i[i] = ab[i];
00158     }
00159     for( i = 0; i < 3*n; i++ ) {
00160         work_i[i] = work[i];
00161     }
00162     for( i = 0; i < n; i++ ) {
00163         iwork_i[i] = iwork[i];
00164     }
00165 
00166     LAPACKE_sge_trans( LAPACK_COL_MAJOR, kd+1, n, ab_i, ldab, ab_r, n+2 );
00167     info_i = LAPACKE_spbcon_work( LAPACK_ROW_MAJOR, uplo_i, n_i, kd_i, ab_r,
00168                                   ldab_r, anorm_i, &rcond_i, work_i, iwork_i );
00169 
00170     failed = compare_spbcon( rcond, rcond_i, info, info_i );
00171     if( failed == 0 ) {
00172         printf( "PASSED: row-major middle-level interface to spbcon\n" );
00173     } else {
00174         printf( "FAILED: row-major middle-level interface to spbcon\n" );
00175     }
00176 
00177     /* Initialize input data, call the row-major high-level
00178      * interface to LAPACK routine and check the results */
00179     for( i = 0; i < ldab*n; i++ ) {
00180         ab_i[i] = ab[i];
00181     }
00182     for( i = 0; i < 3*n; i++ ) {
00183         work_i[i] = work[i];
00184     }
00185     for( i = 0; i < n; i++ ) {
00186         iwork_i[i] = iwork[i];
00187     }
00188 
00189     /* Init row_major arrays */
00190     LAPACKE_sge_trans( LAPACK_COL_MAJOR, kd+1, n, ab_i, ldab, ab_r, n+2 );
00191     info_i = LAPACKE_spbcon( LAPACK_ROW_MAJOR, uplo_i, n_i, kd_i, ab_r, ldab_r,
00192                              anorm_i, &rcond_i );
00193 
00194     failed = compare_spbcon( rcond, rcond_i, info, info_i );
00195     if( failed == 0 ) {
00196         printf( "PASSED: row-major high-level interface to spbcon\n" );
00197     } else {
00198         printf( "FAILED: row-major high-level interface to spbcon\n" );
00199     }
00200 
00201     /* Release memory */
00202     if( ab != NULL ) {
00203         LAPACKE_free( ab );
00204     }
00205     if( ab_i != NULL ) {
00206         LAPACKE_free( ab_i );
00207     }
00208     if( ab_r != NULL ) {
00209         LAPACKE_free( ab_r );
00210     }
00211     if( work != NULL ) {
00212         LAPACKE_free( work );
00213     }
00214     if( work_i != NULL ) {
00215         LAPACKE_free( work_i );
00216     }
00217     if( iwork != NULL ) {
00218         LAPACKE_free( iwork );
00219     }
00220     if( iwork_i != NULL ) {
00221         LAPACKE_free( iwork_i );
00222     }
00223 
00224     return 0;
00225 }
00226 
00227 /* Auxiliary function: spbcon scalar parameters initialization */
00228 static void init_scalars_spbcon( char *uplo, lapack_int *n, lapack_int *kd,
00229                                  lapack_int *ldab, float *anorm )
00230 {
00231     *uplo = 'L';
00232     *n = 4;
00233     *kd = 1;
00234     *ldab = 9;
00235     *anorm = 1.070000076e+001;
00236 
00237     return;
00238 }
00239 
00240 /* Auxiliary functions: spbcon array parameters initialization */
00241 static void init_ab( lapack_int size, float *ab ) {
00242     lapack_int i;
00243     for( i = 0; i < size; i++ ) {
00244         ab[i] = 0;
00245     }
00246     ab[0] = 2.343074799e+000;  /* ab[0,0] */
00247     ab[9] = 2.078877211e+000;  /* ab[0,1] */
00248     ab[18] = 1.130612254e+000;  /* ab[0,2] */
00249     ab[27] = 1.146524668e+000;  /* ab[0,3] */
00250     ab[1] = 1.143796206e+000;  /* ab[1,0] */
00251     ab[10] = -1.149659038e+000;  /* ab[1,1] */
00252     ab[19] = -1.963537931e+000;  /* ab[1,2] */
00253     ab[28] = 0.000000000e+000;  /* ab[1,3] */
00254 }
00255 static void init_work( lapack_int size, float *work ) {
00256     lapack_int i;
00257     for( i = 0; i < size; i++ ) {
00258         work[i] = 0;
00259     }
00260 }
00261 static void init_iwork( lapack_int size, lapack_int *iwork ) {
00262     lapack_int i;
00263     for( i = 0; i < size; i++ ) {
00264         iwork[i] = 0;
00265     }
00266 }
00267 
00268 /* Auxiliary function: C interface to spbcon results check */
00269 /* Return value: 0 - test is passed, non-zero - test is failed */
00270 static int compare_spbcon( float rcond, float rcond_i, lapack_int info,
00271                            lapack_int info_i )
00272 {
00273     int failed = 0;
00274     failed += compare_floats(rcond,rcond_i);
00275     failed += (info == info_i) ? 0 : 1;
00276     if( info != 0 || info_i != 0 ) {
00277         printf( "info=%d, info_i=%d\n",(int)info,(int)info_i );
00278     }
00279 
00280     return failed;
00281 }


swiftnav
Author(s):
autogenerated on Sat Jun 8 2019 18:56:12