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


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