sgecon_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 * sgecon_1 is the test program for the C interface to LAPACK
00036 * routine sgecon
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_sgecon( char *norm, lapack_int *n, lapack_int *lda,
00055                                  float *anorm );
00056 static void init_a( lapack_int size, float *a );
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_sgecon( float rcond, float rcond_i, lapack_int info,
00060                            lapack_int info_i );
00061 
00062 int main(void)
00063 {
00064     /* Local scalars */
00065     char norm, norm_i;
00066     lapack_int n, n_i;
00067     lapack_int lda, lda_i;
00068     lapack_int lda_r;
00069     float anorm, anorm_i;
00070     float rcond, rcond_i;
00071     lapack_int info, info_i;
00072     lapack_int i;
00073     int failed;
00074 
00075     /* Local arrays */
00076     float *a = NULL, *a_i = NULL;
00077     float *work = NULL, *work_i = NULL;
00078     lapack_int *iwork = NULL, *iwork_i = NULL;
00079     float *a_r = NULL;
00080 
00081     /* Iniitialize the scalar parameters */
00082     init_scalars_sgecon( &norm, &n, &lda, &anorm );
00083     lda_r = n+2;
00084     norm_i = norm;
00085     n_i = n;
00086     lda_i = lda;
00087     anorm_i = anorm;
00088 
00089     /* Allocate memory for the LAPACK routine arrays */
00090     a = (float *)LAPACKE_malloc( lda*n * sizeof(float) );
00091     work = (float *)LAPACKE_malloc( 4*n * sizeof(float) );
00092     iwork = (lapack_int *)LAPACKE_malloc( n * sizeof(lapack_int) );
00093 
00094     /* Allocate memory for the C interface function arrays */
00095     a_i = (float *)LAPACKE_malloc( lda*n * sizeof(float) );
00096     work_i = (float *)LAPACKE_malloc( 4*n * sizeof(float) );
00097     iwork_i = (lapack_int *)LAPACKE_malloc( n * sizeof(lapack_int) );
00098 
00099     /* Allocate memory for the row-major arrays */
00100     a_r = (float *)LAPACKE_malloc( n*(n+2) * sizeof(float) );
00101 
00102     /* Initialize input arrays */
00103     init_a( lda*n, a );
00104     init_work( 4*n, work );
00105     init_iwork( n, iwork );
00106 
00107     /* Call the LAPACK routine */
00108     sgecon_( &norm, &n, a, &lda, &anorm, &rcond, work, iwork, &info );
00109 
00110     /* Initialize input data, call the column-major middle-level
00111      * interface to LAPACK routine and check the results */
00112     for( i = 0; i < lda*n; i++ ) {
00113         a_i[i] = a[i];
00114     }
00115     for( i = 0; i < 4*n; i++ ) {
00116         work_i[i] = work[i];
00117     }
00118     for( i = 0; i < n; i++ ) {
00119         iwork_i[i] = iwork[i];
00120     }
00121     info_i = LAPACKE_sgecon_work( LAPACK_COL_MAJOR, norm_i, n_i, a_i, lda_i,
00122                                   anorm_i, &rcond_i, work_i, iwork_i );
00123 
00124     failed = compare_sgecon( rcond, rcond_i, info, info_i );
00125     if( failed == 0 ) {
00126         printf( "PASSED: column-major middle-level interface to sgecon\n" );
00127     } else {
00128         printf( "FAILED: column-major middle-level interface to sgecon\n" );
00129     }
00130 
00131     /* Initialize input data, call the column-major high-level
00132      * interface to LAPACK routine and check the results */
00133     for( i = 0; i < lda*n; i++ ) {
00134         a_i[i] = a[i];
00135     }
00136     for( i = 0; i < 4*n; i++ ) {
00137         work_i[i] = work[i];
00138     }
00139     for( i = 0; i < n; i++ ) {
00140         iwork_i[i] = iwork[i];
00141     }
00142     info_i = LAPACKE_sgecon( LAPACK_COL_MAJOR, norm_i, n_i, a_i, lda_i, anorm_i,
00143                              &rcond_i );
00144 
00145     failed = compare_sgecon( rcond, rcond_i, info, info_i );
00146     if( failed == 0 ) {
00147         printf( "PASSED: column-major high-level interface to sgecon\n" );
00148     } else {
00149         printf( "FAILED: column-major high-level interface to sgecon\n" );
00150     }
00151 
00152     /* Initialize input data, call the row-major middle-level
00153      * interface to LAPACK routine and check the results */
00154     for( i = 0; i < lda*n; i++ ) {
00155         a_i[i] = a[i];
00156     }
00157     for( i = 0; i < 4*n; i++ ) {
00158         work_i[i] = work[i];
00159     }
00160     for( i = 0; i < n; i++ ) {
00161         iwork_i[i] = iwork[i];
00162     }
00163 
00164     LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, n, a_i, lda, a_r, n+2 );
00165     info_i = LAPACKE_sgecon_work( LAPACK_ROW_MAJOR, norm_i, n_i, a_r, lda_r,
00166                                   anorm_i, &rcond_i, work_i, iwork_i );
00167 
00168     failed = compare_sgecon( rcond, rcond_i, info, info_i );
00169     if( failed == 0 ) {
00170         printf( "PASSED: row-major middle-level interface to sgecon\n" );
00171     } else {
00172         printf( "FAILED: row-major middle-level interface to sgecon\n" );
00173     }
00174 
00175     /* Initialize input data, call the row-major high-level
00176      * interface to LAPACK routine and check the results */
00177     for( i = 0; i < lda*n; i++ ) {
00178         a_i[i] = a[i];
00179     }
00180     for( i = 0; i < 4*n; i++ ) {
00181         work_i[i] = work[i];
00182     }
00183     for( i = 0; i < n; i++ ) {
00184         iwork_i[i] = iwork[i];
00185     }
00186 
00187     /* Init row_major arrays */
00188     LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, n, a_i, lda, a_r, n+2 );
00189     info_i = LAPACKE_sgecon( LAPACK_ROW_MAJOR, norm_i, n_i, a_r, lda_r, anorm_i,
00190                              &rcond_i );
00191 
00192     failed = compare_sgecon( rcond, rcond_i, info, info_i );
00193     if( failed == 0 ) {
00194         printf( "PASSED: row-major high-level interface to sgecon\n" );
00195     } else {
00196         printf( "FAILED: row-major high-level interface to sgecon\n" );
00197     }
00198 
00199     /* Release memory */
00200     if( a != NULL ) {
00201         LAPACKE_free( a );
00202     }
00203     if( a_i != NULL ) {
00204         LAPACKE_free( a_i );
00205     }
00206     if( a_r != NULL ) {
00207         LAPACKE_free( a_r );
00208     }
00209     if( work != NULL ) {
00210         LAPACKE_free( work );
00211     }
00212     if( work_i != NULL ) {
00213         LAPACKE_free( work_i );
00214     }
00215     if( iwork != NULL ) {
00216         LAPACKE_free( iwork );
00217     }
00218     if( iwork_i != NULL ) {
00219         LAPACKE_free( iwork_i );
00220     }
00221 
00222     return 0;
00223 }
00224 
00225 /* Auxiliary function: sgecon scalar parameters initialization */
00226 static void init_scalars_sgecon( char *norm, lapack_int *n, lapack_int *lda,
00227                                  float *anorm )
00228 {
00229     *norm = '1';
00230     *n = 4;
00231     *lda = 8;
00232     *anorm = 9.739999771e+000;
00233 
00234     return;
00235 }
00236 
00237 /* Auxiliary functions: sgecon array parameters initialization */
00238 static void init_a( lapack_int size, float *a ) {
00239     lapack_int i;
00240     for( i = 0; i < size; i++ ) {
00241         a[i] = 0;
00242     }
00243     a[0] = 5.250000000e+000;  /* a[0,0] */
00244     a[8] = -2.950000048e+000;  /* a[0,1] */
00245     a[16] = -9.499999881e-001;  /* a[0,2] */
00246     a[24] = -3.799999952e+000;  /* a[0,3] */
00247     a[1] = 3.428571522e-001;  /* a[1,0] */
00248     a[9] = 3.891428709e+000;  /* a[1,1] */
00249     a[17] = 2.375714302e+000;  /* a[1,2] */
00250     a[25] = 4.128571749e-001;  /* a[1,3] */
00251     a[2] = 3.009524047e-001;  /* a[2,0] */
00252     a[10] = -4.631179273e-001;  /* a[2,1] */
00253     a[18] = -1.513859272e+000;  /* a[2,2] */
00254     a[26] = 2.948207855e-001;  /* a[2,3] */
00255     a[3] = -2.114285827e-001;  /* a[3,0] */
00256     a[11] = -3.298825026e-001;  /* a[3,1] */
00257     a[19] = 4.723378923e-003;  /* a[3,2] */
00258     a[27] = 1.313732415e-001;  /* a[3,3] */
00259 }
00260 static void init_work( lapack_int size, float *work ) {
00261     lapack_int i;
00262     for( i = 0; i < size; i++ ) {
00263         work[i] = 0;
00264     }
00265 }
00266 static void init_iwork( lapack_int size, lapack_int *iwork ) {
00267     lapack_int i;
00268     for( i = 0; i < size; i++ ) {
00269         iwork[i] = 0;
00270     }
00271 }
00272 
00273 /* Auxiliary function: C interface to sgecon results check */
00274 /* Return value: 0 - test is passed, non-zero - test is failed */
00275 static int compare_sgecon( float rcond, float rcond_i, lapack_int info,
00276                            lapack_int info_i )
00277 {
00278     int failed = 0;
00279     failed += compare_floats(rcond,rcond_i);
00280     failed += (info == info_i) ? 0 : 1;
00281     if( info != 0 || info_i != 0 ) {
00282         printf( "info=%d, info_i=%d\n",(int)info,(int)info_i );
00283     }
00284 
00285     return failed;
00286 }


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