dgetri_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 * dgetri_1 is the test program for the C interface to LAPACK
00036 * routine dgetri
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_dgetri( lapack_int *n, lapack_int *lda,
00055                                  lapack_int *lwork );
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 int compare_dgetri( double *a, double *a_i, lapack_int info,
00060                            lapack_int info_i, lapack_int lda, lapack_int n );
00061 
00062 int main(void)
00063 {
00064     /* Local scalars */
00065     lapack_int n, n_i;
00066     lapack_int lda, lda_i;
00067     lapack_int lda_r;
00068     lapack_int lwork, lwork_i;
00069     lapack_int info, info_i;
00070     lapack_int i;
00071     int failed;
00072 
00073     /* Local arrays */
00074     double *a = NULL, *a_i = NULL;
00075     lapack_int *ipiv = NULL, *ipiv_i = NULL;
00076     double *work = NULL, *work_i = NULL;
00077     double *a_save = NULL;
00078     double *a_r = NULL;
00079 
00080     /* Iniitialize the scalar parameters */
00081     init_scalars_dgetri( &n, &lda, &lwork );
00082     lda_r = n+2;
00083     n_i = n;
00084     lda_i = lda;
00085     lwork_i = lwork;
00086 
00087     /* Allocate memory for the LAPACK routine arrays */
00088     a = (double *)LAPACKE_malloc( lda*n * sizeof(double) );
00089     ipiv = (lapack_int *)LAPACKE_malloc( n * sizeof(lapack_int) );
00090     work = (double *)LAPACKE_malloc( lwork * sizeof(double) );
00091 
00092     /* Allocate memory for the C interface function arrays */
00093     a_i = (double *)LAPACKE_malloc( lda*n * sizeof(double) );
00094     ipiv_i = (lapack_int *)LAPACKE_malloc( n * sizeof(lapack_int) );
00095     work_i = (double *)LAPACKE_malloc( lwork * sizeof(double) );
00096 
00097     /* Allocate memory for the backup arrays */
00098     a_save = (double *)LAPACKE_malloc( lda*n * sizeof(double) );
00099 
00100     /* Allocate memory for the row-major arrays */
00101     a_r = (double *)LAPACKE_malloc( n*(n+2) * sizeof(double) );
00102 
00103     /* Initialize input arrays */
00104     init_a( lda*n, a );
00105     init_ipiv( n, ipiv );
00106     init_work( lwork, work );
00107 
00108     /* Backup the ouptut arrays */
00109     for( i = 0; i < lda*n; i++ ) {
00110         a_save[i] = a[i];
00111     }
00112 
00113     /* Call the LAPACK routine */
00114     dgetri_( &n, a, &lda, ipiv, work, &lwork, &info );
00115 
00116     /* Initialize input data, call the column-major middle-level
00117      * interface to LAPACK routine and check the results */
00118     for( i = 0; i < lda*n; i++ ) {
00119         a_i[i] = a_save[i];
00120     }
00121     for( i = 0; i < n; i++ ) {
00122         ipiv_i[i] = ipiv[i];
00123     }
00124     for( i = 0; i < lwork; i++ ) {
00125         work_i[i] = work[i];
00126     }
00127     info_i = LAPACKE_dgetri_work( LAPACK_COL_MAJOR, n_i, a_i, lda_i, ipiv_i,
00128                                   work_i, lwork_i );
00129 
00130     failed = compare_dgetri( a, a_i, info, info_i, lda, n );
00131     if( failed == 0 ) {
00132         printf( "PASSED: column-major middle-level interface to dgetri\n" );
00133     } else {
00134         printf( "FAILED: column-major middle-level interface to dgetri\n" );
00135     }
00136 
00137     /* Initialize input data, call the column-major high-level
00138      * interface to LAPACK routine and check the results */
00139     for( i = 0; i < lda*n; i++ ) {
00140         a_i[i] = a_save[i];
00141     }
00142     for( i = 0; i < n; i++ ) {
00143         ipiv_i[i] = ipiv[i];
00144     }
00145     for( i = 0; i < lwork; i++ ) {
00146         work_i[i] = work[i];
00147     }
00148     info_i = LAPACKE_dgetri( LAPACK_COL_MAJOR, n_i, a_i, lda_i, ipiv_i );
00149 
00150     failed = compare_dgetri( a, a_i, info, info_i, lda, n );
00151     if( failed == 0 ) {
00152         printf( "PASSED: column-major high-level interface to dgetri\n" );
00153     } else {
00154         printf( "FAILED: column-major high-level interface to dgetri\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 < lwork; i++ ) {
00166         work_i[i] = work[i];
00167     }
00168 
00169     LAPACKE_dge_trans( LAPACK_COL_MAJOR, n, n, a_i, lda, a_r, n+2 );
00170     info_i = LAPACKE_dgetri_work( LAPACK_ROW_MAJOR, n_i, a_r, lda_r, ipiv_i,
00171                                   work_i, lwork_i );
00172 
00173     LAPACKE_dge_trans( LAPACK_ROW_MAJOR, n, n, a_r, n+2, a_i, lda );
00174 
00175     failed = compare_dgetri( a, a_i, info, info_i, lda, n );
00176     if( failed == 0 ) {
00177         printf( "PASSED: row-major middle-level interface to dgetri\n" );
00178     } else {
00179         printf( "FAILED: row-major middle-level interface to dgetri\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 < lwork; i++ ) {
00191         work_i[i] = work[i];
00192     }
00193 
00194     /* Init row_major arrays */
00195     LAPACKE_dge_trans( LAPACK_COL_MAJOR, n, n, a_i, lda, a_r, n+2 );
00196     info_i = LAPACKE_dgetri( LAPACK_ROW_MAJOR, n_i, a_r, lda_r, ipiv_i );
00197 
00198     LAPACKE_dge_trans( LAPACK_ROW_MAJOR, n, n, a_r, n+2, a_i, lda );
00199 
00200     failed = compare_dgetri( a, a_i, info, info_i, lda, n );
00201     if( failed == 0 ) {
00202         printf( "PASSED: row-major high-level interface to dgetri\n" );
00203     } else {
00204         printf( "FAILED: row-major high-level interface to dgetri\n" );
00205     }
00206 
00207     /* Release memory */
00208     if( a != NULL ) {
00209         LAPACKE_free( a );
00210     }
00211     if( a_i != NULL ) {
00212         LAPACKE_free( a_i );
00213     }
00214     if( a_r != NULL ) {
00215         LAPACKE_free( a_r );
00216     }
00217     if( a_save != NULL ) {
00218         LAPACKE_free( a_save );
00219     }
00220     if( ipiv != NULL ) {
00221         LAPACKE_free( ipiv );
00222     }
00223     if( ipiv_i != NULL ) {
00224         LAPACKE_free( ipiv_i );
00225     }
00226     if( work != NULL ) {
00227         LAPACKE_free( work );
00228     }
00229     if( work_i != NULL ) {
00230         LAPACKE_free( work_i );
00231     }
00232 
00233     return 0;
00234 }
00235 
00236 /* Auxiliary function: dgetri scalar parameters initialization */
00237 static void init_scalars_dgetri( lapack_int *n, lapack_int *lda,
00238                                  lapack_int *lwork )
00239 {
00240     *n = 4;
00241     *lda = 8;
00242     *lwork = 512;
00243 
00244     return;
00245 }
00246 
00247 /* Auxiliary functions: dgetri array parameters initialization */
00248 static void init_a( lapack_int size, double *a ) {
00249     lapack_int i;
00250     for( i = 0; i < size; i++ ) {
00251         a[i] = 0;
00252     }
00253     a[0] = 5.25000000000000000e+000;  /* a[0,0] */
00254     a[8] = -2.95000000000000020e+000;  /* a[0,1] */
00255     a[16] = -9.49999999999999960e-001;  /* a[0,2] */
00256     a[24] = -3.79999999999999980e+000;  /* a[0,3] */
00257     a[1] = 3.42857142857142860e-001;  /* a[1,0] */
00258     a[9] = 3.89142857142857150e+000;  /* a[1,1] */
00259     a[17] = 2.37571428571428540e+000;  /* a[1,2] */
00260     a[25] = 4.12857142857142700e-001;  /* a[1,3] */
00261     a[2] = 3.00952380952380970e-001;  /* a[2,0] */
00262     a[10] = -4.63117963778756640e-001;  /* a[2,1] */
00263     a[18] = -1.51385927557513480e+000;  /* a[2,2] */
00264     a[26] = 2.94820606950562780e-001;  /* a[2,3] */
00265     a[3] = -2.11428571428571440e-001;  /* a[3,0] */
00266     a[11] = -3.29882525697503700e-001;  /* a[3,1] */
00267     a[19] = 4.72336766398369880e-003;  /* a[3,2] */
00268     a[27] = 1.31373239487851680e-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] = 2;
00276     ipiv[1] = 2;
00277     ipiv[2] = 3;
00278     ipiv[3] = 4;
00279 }
00280 static void init_work( lapack_int size, double *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 dgetri results check */
00288 /* Return value: 0 - test is passed, non-zero - test is failed */
00289 static int compare_dgetri( double *a, double *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_doubles(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:55:45