dsycon_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 * dsycon_1 is the test program for the C interface to LAPACK
00036 * routine dsycon
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_dsycon( char *uplo, lapack_int *n, lapack_int *lda,
00055                                  double *anorm );
00056 static void init_a( lapack_int size, double *a );
00057 static void init_ipiv( lapack_int size, lapack_int *ipiv );
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_dsycon( double rcond, double rcond_i, lapack_int info,
00061                            lapack_int info_i );
00062 
00063 int main(void)
00064 {
00065     /* Local scalars */
00066     char uplo, uplo_i;
00067     lapack_int n, n_i;
00068     lapack_int lda, lda_i;
00069     lapack_int lda_r;
00070     double anorm, anorm_i;
00071     double rcond, rcond_i;
00072     lapack_int info, info_i;
00073     lapack_int i;
00074     int failed;
00075 
00076     /* Local arrays */
00077     double *a = NULL, *a_i = NULL;
00078     lapack_int *ipiv = NULL, *ipiv_i = NULL;
00079     double *work = NULL, *work_i = NULL;
00080     lapack_int *iwork = NULL, *iwork_i = NULL;
00081     double *a_r = NULL;
00082 
00083     /* Iniitialize the scalar parameters */
00084     init_scalars_dsycon( &uplo, &n, &lda, &anorm );
00085     lda_r = n+2;
00086     uplo_i = uplo;
00087     n_i = n;
00088     lda_i = lda;
00089     anorm_i = anorm;
00090 
00091     /* Allocate memory for the LAPACK routine arrays */
00092     a = (double *)LAPACKE_malloc( lda*n * sizeof(double) );
00093     ipiv = (lapack_int *)LAPACKE_malloc( n * sizeof(lapack_int) );
00094     work = (double *)LAPACKE_malloc( 2*n * sizeof(double) );
00095     iwork = (lapack_int *)LAPACKE_malloc( n * sizeof(lapack_int) );
00096 
00097     /* Allocate memory for the C interface function arrays */
00098     a_i = (double *)LAPACKE_malloc( lda*n * sizeof(double) );
00099     ipiv_i = (lapack_int *)LAPACKE_malloc( n * sizeof(lapack_int) );
00100     work_i = (double *)LAPACKE_malloc( 2*n * sizeof(double) );
00101     iwork_i = (lapack_int *)LAPACKE_malloc( n * sizeof(lapack_int) );
00102 
00103     /* Allocate memory for the row-major arrays */
00104     a_r = (double *)LAPACKE_malloc( n*(n+2) * sizeof(double) );
00105 
00106     /* Initialize input arrays */
00107     init_a( lda*n, a );
00108     init_ipiv( n, ipiv );
00109     init_work( 2*n, work );
00110     init_iwork( n, iwork );
00111 
00112     /* Call the LAPACK routine */
00113     dsycon_( &uplo, &n, a, &lda, ipiv, &anorm, &rcond, work, iwork, &info );
00114 
00115     /* Initialize input data, call the column-major middle-level
00116      * interface to LAPACK routine and check the results */
00117     for( i = 0; i < lda*n; i++ ) {
00118         a_i[i] = a[i];
00119     }
00120     for( i = 0; i < n; i++ ) {
00121         ipiv_i[i] = ipiv[i];
00122     }
00123     for( i = 0; i < 2*n; i++ ) {
00124         work_i[i] = work[i];
00125     }
00126     for( i = 0; i < n; i++ ) {
00127         iwork_i[i] = iwork[i];
00128     }
00129     info_i = LAPACKE_dsycon_work( LAPACK_COL_MAJOR, uplo_i, n_i, a_i, lda_i,
00130                                   ipiv_i, anorm_i, &rcond_i, work_i, iwork_i );
00131 
00132     failed = compare_dsycon( rcond, rcond_i, info, info_i );
00133     if( failed == 0 ) {
00134         printf( "PASSED: column-major middle-level interface to dsycon\n" );
00135     } else {
00136         printf( "FAILED: column-major middle-level interface to dsycon\n" );
00137     }
00138 
00139     /* Initialize input data, call the column-major high-level
00140      * interface to LAPACK routine and check the results */
00141     for( i = 0; i < lda*n; i++ ) {
00142         a_i[i] = a[i];
00143     }
00144     for( i = 0; i < n; i++ ) {
00145         ipiv_i[i] = ipiv[i];
00146     }
00147     for( i = 0; i < 2*n; i++ ) {
00148         work_i[i] = work[i];
00149     }
00150     for( i = 0; i < n; i++ ) {
00151         iwork_i[i] = iwork[i];
00152     }
00153     info_i = LAPACKE_dsycon( LAPACK_COL_MAJOR, uplo_i, n_i, a_i, lda_i, ipiv_i,
00154                              anorm_i, &rcond_i );
00155 
00156     failed = compare_dsycon( rcond, rcond_i, info, info_i );
00157     if( failed == 0 ) {
00158         printf( "PASSED: column-major high-level interface to dsycon\n" );
00159     } else {
00160         printf( "FAILED: column-major high-level interface to dsycon\n" );
00161     }
00162 
00163     /* Initialize input data, call the row-major middle-level
00164      * interface to LAPACK routine and check the results */
00165     for( i = 0; i < lda*n; i++ ) {
00166         a_i[i] = a[i];
00167     }
00168     for( i = 0; i < n; i++ ) {
00169         ipiv_i[i] = ipiv[i];
00170     }
00171     for( i = 0; i < 2*n; i++ ) {
00172         work_i[i] = work[i];
00173     }
00174     for( i = 0; i < n; i++ ) {
00175         iwork_i[i] = iwork[i];
00176     }
00177 
00178     LAPACKE_dge_trans( LAPACK_COL_MAJOR, n, n, a_i, lda, a_r, n+2 );
00179     info_i = LAPACKE_dsycon_work( LAPACK_ROW_MAJOR, uplo_i, n_i, a_r, lda_r,
00180                                   ipiv_i, anorm_i, &rcond_i, work_i, iwork_i );
00181 
00182     failed = compare_dsycon( rcond, rcond_i, info, info_i );
00183     if( failed == 0 ) {
00184         printf( "PASSED: row-major middle-level interface to dsycon\n" );
00185     } else {
00186         printf( "FAILED: row-major middle-level interface to dsycon\n" );
00187     }
00188 
00189     /* Initialize input data, call the row-major high-level
00190      * interface to LAPACK routine and check the results */
00191     for( i = 0; i < lda*n; i++ ) {
00192         a_i[i] = a[i];
00193     }
00194     for( i = 0; i < n; i++ ) {
00195         ipiv_i[i] = ipiv[i];
00196     }
00197     for( i = 0; i < 2*n; i++ ) {
00198         work_i[i] = work[i];
00199     }
00200     for( i = 0; i < n; i++ ) {
00201         iwork_i[i] = iwork[i];
00202     }
00203 
00204     /* Init row_major arrays */
00205     LAPACKE_dge_trans( LAPACK_COL_MAJOR, n, n, a_i, lda, a_r, n+2 );
00206     info_i = LAPACKE_dsycon( LAPACK_ROW_MAJOR, uplo_i, n_i, a_r, lda_r, ipiv_i,
00207                              anorm_i, &rcond_i );
00208 
00209     failed = compare_dsycon( rcond, rcond_i, info, info_i );
00210     if( failed == 0 ) {
00211         printf( "PASSED: row-major high-level interface to dsycon\n" );
00212     } else {
00213         printf( "FAILED: row-major high-level interface to dsycon\n" );
00214     }
00215 
00216     /* Release memory */
00217     if( a != NULL ) {
00218         LAPACKE_free( a );
00219     }
00220     if( a_i != NULL ) {
00221         LAPACKE_free( a_i );
00222     }
00223     if( a_r != NULL ) {
00224         LAPACKE_free( a_r );
00225     }
00226     if( ipiv != NULL ) {
00227         LAPACKE_free( ipiv );
00228     }
00229     if( ipiv_i != NULL ) {
00230         LAPACKE_free( ipiv_i );
00231     }
00232     if( work != NULL ) {
00233         LAPACKE_free( work );
00234     }
00235     if( work_i != NULL ) {
00236         LAPACKE_free( work_i );
00237     }
00238     if( iwork != NULL ) {
00239         LAPACKE_free( iwork );
00240     }
00241     if( iwork_i != NULL ) {
00242         LAPACKE_free( iwork_i );
00243     }
00244 
00245     return 0;
00246 }
00247 
00248 /* Auxiliary function: dsycon scalar parameters initialization */
00249 static void init_scalars_dsycon( char *uplo, lapack_int *n, lapack_int *lda,
00250                                  double *anorm )
00251 {
00252     *uplo = 'L';
00253     *n = 4;
00254     *lda = 8;
00255     *anorm = 1.12900000000000010e+001;
00256 
00257     return;
00258 }
00259 
00260 /* Auxiliary functions: dsycon array parameters initialization */
00261 static void init_a( lapack_int size, double *a ) {
00262     lapack_int i;
00263     for( i = 0; i < size; i++ ) {
00264         a[i] = 0;
00265     }
00266     a[0] = 2.06999999999999980e+000;  /* a[0,0] */
00267     a[8] = 0.00000000000000000e+000;  /* a[0,1] */
00268     a[16] = 0.00000000000000000e+000;  /* a[0,2] */
00269     a[24] = 0.00000000000000000e+000;  /* a[0,3] */
00270     a[1] = 4.20000000000000020e+000;  /* a[1,0] */
00271     a[9] = 1.14999999999999990e+000;  /* a[1,1] */
00272     a[17] = 0.00000000000000000e+000;  /* a[1,2] */
00273     a[25] = 0.00000000000000000e+000;  /* a[1,3] */
00274     a[2] = 2.23041384055834070e-001;  /* a[2,0] */
00275     a[10] = 8.11501032143910230e-001;  /* a[2,1] */
00276     a[18] = -2.59067708640519000e+000;  /* a[2,2] */
00277     a[26] = 0.00000000000000000e+000;  /* a[2,3] */
00278     a[3] = 6.53658376748910360e-001;  /* a[3,0] */
00279     a[11] = -5.95969723778629450e-001;  /* a[3,1] */
00280     a[19] = 3.03084679550618070e-001;  /* a[3,2] */
00281     a[27] = 4.07385198134887610e-001;  /* a[3,3] */
00282 }
00283 static void init_ipiv( lapack_int size, lapack_int *ipiv ) {
00284     lapack_int i;
00285     for( i = 0; i < size; i++ ) {
00286         ipiv[i] = 0;
00287     }
00288     ipiv[0] = -3;
00289     ipiv[1] = -3;
00290     ipiv[2] = 3;
00291     ipiv[3] = 4;
00292 }
00293 static void init_work( lapack_int size, double *work ) {
00294     lapack_int i;
00295     for( i = 0; i < size; i++ ) {
00296         work[i] = 0;
00297     }
00298 }
00299 static void init_iwork( lapack_int size, lapack_int *iwork ) {
00300     lapack_int i;
00301     for( i = 0; i < size; i++ ) {
00302         iwork[i] = 0;
00303     }
00304 }
00305 
00306 /* Auxiliary function: C interface to dsycon results check */
00307 /* Return value: 0 - test is passed, non-zero - test is failed */
00308 static int compare_dsycon( double rcond, double rcond_i, lapack_int info,
00309                            lapack_int info_i )
00310 {
00311     int failed = 0;
00312     failed += compare_doubles(rcond,rcond_i);
00313     failed += (info == info_i) ? 0 : 1;
00314     if( info != 0 || info_i != 0 ) {
00315         printf( "info=%d, info_i=%d\n",(int)info,(int)info_i );
00316     }
00317 
00318     return failed;
00319 }


swiftnav
Author(s):
autogenerated on Sat Jun 8 2019 18:55:49