strevc_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 * strevc_1 is the test program for the C interface to LAPACK
00036 * routine strevc
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_strevc( char *side, char *howmny, lapack_int *n,
00055                                  lapack_int *ldt, lapack_int *ldvl,
00056                                  lapack_int *ldvr, lapack_int *mm );
00057 static void init_select( lapack_int size, lapack_int *select );
00058 static void init_t( lapack_int size, float *t );
00059 static void init_vl( lapack_int size, float *vl );
00060 static void init_vr( lapack_int size, float *vr );
00061 static void init_work( lapack_int size, float *work );
00062 static int compare_strevc( lapack_int *select, lapack_int *select_i, float *vl,
00063                            float *vl_i, float *vr, float *vr_i, lapack_int m,
00064                            lapack_int m_i, lapack_int info, lapack_int info_i,
00065                            char howmny, lapack_int ldvl, lapack_int ldvr,
00066                            lapack_int mm, lapack_int n, char side );
00067 
00068 int main(void)
00069 {
00070     /* Local scalars */
00071     char side, side_i;
00072     char howmny, howmny_i;
00073     lapack_int n, n_i;
00074     lapack_int ldt, ldt_i;
00075     lapack_int ldt_r;
00076     lapack_int ldvl, ldvl_i;
00077     lapack_int ldvl_r;
00078     lapack_int ldvr, ldvr_i;
00079     lapack_int ldvr_r;
00080     lapack_int mm, mm_i;
00081     lapack_int m, m_i;
00082     lapack_int info, info_i;
00083     lapack_int i;
00084     int failed;
00085 
00086     /* Local arrays */
00087     lapack_int *select = NULL, *select_i = NULL;
00088     float *t = NULL, *t_i = NULL;
00089     float *vl = NULL, *vl_i = NULL;
00090     float *vr = NULL, *vr_i = NULL;
00091     float *work = NULL, *work_i = NULL;
00092     lapack_int *select_save = NULL;
00093     float *vl_save = NULL;
00094     float *vr_save = NULL;
00095     float *t_r = NULL;
00096     float *vl_r = NULL;
00097     float *vr_r = NULL;
00098 
00099     /* Iniitialize the scalar parameters */
00100     init_scalars_strevc( &side, &howmny, &n, &ldt, &ldvl, &ldvr, &mm );
00101     ldt_r = n+2;
00102     ldvl_r = mm+2;
00103     ldvr_r = mm+2;
00104     side_i = side;
00105     howmny_i = howmny;
00106     n_i = n;
00107     ldt_i = ldt;
00108     ldvl_i = ldvl;
00109     ldvr_i = ldvr;
00110     mm_i = mm;
00111 
00112     /* Allocate memory for the LAPACK routine arrays */
00113     select = (lapack_int *)LAPACKE_malloc( n * sizeof(lapack_int) );
00114     t = (float *)LAPACKE_malloc( ldt*n * sizeof(float) );
00115     vl = (float *)LAPACKE_malloc( ldvl*mm * sizeof(float) );
00116     vr = (float *)LAPACKE_malloc( ldvr*mm * sizeof(float) );
00117     work = (float *)LAPACKE_malloc( 3*n * sizeof(float) );
00118 
00119     /* Allocate memory for the C interface function arrays */
00120     select_i = (lapack_int *)LAPACKE_malloc( n * sizeof(lapack_int) );
00121     t_i = (float *)LAPACKE_malloc( ldt*n * sizeof(float) );
00122     vl_i = (float *)LAPACKE_malloc( ldvl*mm * sizeof(float) );
00123     vr_i = (float *)LAPACKE_malloc( ldvr*mm * sizeof(float) );
00124     work_i = (float *)LAPACKE_malloc( 3*n * sizeof(float) );
00125 
00126     /* Allocate memory for the backup arrays */
00127     select_save = (lapack_int *)LAPACKE_malloc( n * sizeof(lapack_int) );
00128     vl_save = (float *)LAPACKE_malloc( ldvl*mm * sizeof(float) );
00129     vr_save = (float *)LAPACKE_malloc( ldvr*mm * sizeof(float) );
00130 
00131     /* Allocate memory for the row-major arrays */
00132     t_r = (float *)LAPACKE_malloc( n*(n+2) * sizeof(float) );
00133     vl_r = (float *)LAPACKE_malloc( n*(mm+2) * sizeof(float) );
00134     vr_r = (float *)LAPACKE_malloc( n*(mm+2) * sizeof(float) );
00135 
00136     /* Initialize input arrays */
00137     init_select( n, select );
00138     init_t( ldt*n, t );
00139     init_vl( ldvl*mm, vl );
00140     init_vr( ldvr*mm, vr );
00141     init_work( 3*n, work );
00142 
00143     /* Backup the ouptut arrays */
00144     for( i = 0; i < n; i++ ) {
00145         select_save[i] = select[i];
00146     }
00147     for( i = 0; i < ldvl*mm; i++ ) {
00148         vl_save[i] = vl[i];
00149     }
00150     for( i = 0; i < ldvr*mm; i++ ) {
00151         vr_save[i] = vr[i];
00152     }
00153 
00154     /* Call the LAPACK routine */
00155     strevc_( &side, &howmny, select, &n, t, &ldt, vl, &ldvl, vr, &ldvr, &mm, &m,
00156              work, &info );
00157 
00158     /* Initialize input data, call the column-major middle-level
00159      * interface to LAPACK routine and check the results */
00160     for( i = 0; i < n; i++ ) {
00161         select_i[i] = select_save[i];
00162     }
00163     for( i = 0; i < ldt*n; i++ ) {
00164         t_i[i] = t[i];
00165     }
00166     for( i = 0; i < ldvl*mm; i++ ) {
00167         vl_i[i] = vl_save[i];
00168     }
00169     for( i = 0; i < ldvr*mm; i++ ) {
00170         vr_i[i] = vr_save[i];
00171     }
00172     for( i = 0; i < 3*n; i++ ) {
00173         work_i[i] = work[i];
00174     }
00175     info_i = LAPACKE_strevc_work( LAPACK_COL_MAJOR, side_i, howmny_i, select_i,
00176                                   n_i, t_i, ldt_i, vl_i, ldvl_i, vr_i, ldvr_i,
00177                                   mm_i, &m_i, work_i );
00178 
00179     failed = compare_strevc( select, select_i, vl, vl_i, vr, vr_i, m, m_i, info,
00180                              info_i, howmny, ldvl, ldvr, mm, n, side );
00181     if( failed == 0 ) {
00182         printf( "PASSED: column-major middle-level interface to strevc\n" );
00183     } else {
00184         printf( "FAILED: column-major middle-level interface to strevc\n" );
00185     }
00186 
00187     /* Initialize input data, call the column-major high-level
00188      * interface to LAPACK routine and check the results */
00189     for( i = 0; i < n; i++ ) {
00190         select_i[i] = select_save[i];
00191     }
00192     for( i = 0; i < ldt*n; i++ ) {
00193         t_i[i] = t[i];
00194     }
00195     for( i = 0; i < ldvl*mm; i++ ) {
00196         vl_i[i] = vl_save[i];
00197     }
00198     for( i = 0; i < ldvr*mm; i++ ) {
00199         vr_i[i] = vr_save[i];
00200     }
00201     for( i = 0; i < 3*n; i++ ) {
00202         work_i[i] = work[i];
00203     }
00204     info_i = LAPACKE_strevc( LAPACK_COL_MAJOR, side_i, howmny_i, select_i, n_i,
00205                              t_i, ldt_i, vl_i, ldvl_i, vr_i, ldvr_i, mm_i,
00206                              &m_i );
00207 
00208     failed = compare_strevc( select, select_i, vl, vl_i, vr, vr_i, m, m_i, info,
00209                              info_i, howmny, ldvl, ldvr, mm, n, side );
00210     if( failed == 0 ) {
00211         printf( "PASSED: column-major high-level interface to strevc\n" );
00212     } else {
00213         printf( "FAILED: column-major high-level interface to strevc\n" );
00214     }
00215 
00216     /* Initialize input data, call the row-major middle-level
00217      * interface to LAPACK routine and check the results */
00218     for( i = 0; i < n; i++ ) {
00219         select_i[i] = select_save[i];
00220     }
00221     for( i = 0; i < ldt*n; i++ ) {
00222         t_i[i] = t[i];
00223     }
00224     for( i = 0; i < ldvl*mm; i++ ) {
00225         vl_i[i] = vl_save[i];
00226     }
00227     for( i = 0; i < ldvr*mm; i++ ) {
00228         vr_i[i] = vr_save[i];
00229     }
00230     for( i = 0; i < 3*n; i++ ) {
00231         work_i[i] = work[i];
00232     }
00233 
00234     LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, n, t_i, ldt, t_r, n+2 );
00235     if( LAPACKE_lsame( side, 'b' ) || LAPACKE_lsame( side, 'l' ) ) {
00236         LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, mm, vl_i, ldvl, vl_r, mm+2 );
00237     }
00238     if( LAPACKE_lsame( side, 'b' ) || LAPACKE_lsame( side, 'r' ) ) {
00239         LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, mm, vr_i, ldvr, vr_r, mm+2 );
00240     }
00241     info_i = LAPACKE_strevc_work( LAPACK_ROW_MAJOR, side_i, howmny_i, select_i,
00242                                   n_i, t_r, ldt_r, vl_r, ldvl_r, vr_r, ldvr_r,
00243                                   mm_i, &m_i, work_i );
00244 
00245     if( LAPACKE_lsame( side, 'b' ) || LAPACKE_lsame( side, 'l' ) ) {
00246         LAPACKE_sge_trans( LAPACK_ROW_MAJOR, n, mm, vl_r, mm+2, vl_i, ldvl );
00247     }
00248     if( LAPACKE_lsame( side, 'b' ) || LAPACKE_lsame( side, 'r' ) ) {
00249         LAPACKE_sge_trans( LAPACK_ROW_MAJOR, n, mm, vr_r, mm+2, vr_i, ldvr );
00250     }
00251 
00252     failed = compare_strevc( select, select_i, vl, vl_i, vr, vr_i, m, m_i, info,
00253                              info_i, howmny, ldvl, ldvr, mm, n, side );
00254     if( failed == 0 ) {
00255         printf( "PASSED: row-major middle-level interface to strevc\n" );
00256     } else {
00257         printf( "FAILED: row-major middle-level interface to strevc\n" );
00258     }
00259 
00260     /* Initialize input data, call the row-major high-level
00261      * interface to LAPACK routine and check the results */
00262     for( i = 0; i < n; i++ ) {
00263         select_i[i] = select_save[i];
00264     }
00265     for( i = 0; i < ldt*n; i++ ) {
00266         t_i[i] = t[i];
00267     }
00268     for( i = 0; i < ldvl*mm; i++ ) {
00269         vl_i[i] = vl_save[i];
00270     }
00271     for( i = 0; i < ldvr*mm; i++ ) {
00272         vr_i[i] = vr_save[i];
00273     }
00274     for( i = 0; i < 3*n; i++ ) {
00275         work_i[i] = work[i];
00276     }
00277 
00278     /* Init row_major arrays */
00279     LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, n, t_i, ldt, t_r, n+2 );
00280     if( LAPACKE_lsame( side, 'b' ) || LAPACKE_lsame( side, 'l' ) ) {
00281         LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, mm, vl_i, ldvl, vl_r, mm+2 );
00282     }
00283     if( LAPACKE_lsame( side, 'b' ) || LAPACKE_lsame( side, 'r' ) ) {
00284         LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, mm, vr_i, ldvr, vr_r, mm+2 );
00285     }
00286     info_i = LAPACKE_strevc( LAPACK_ROW_MAJOR, side_i, howmny_i, select_i, n_i,
00287                              t_r, ldt_r, vl_r, ldvl_r, vr_r, ldvr_r, mm_i,
00288                              &m_i );
00289 
00290     if( LAPACKE_lsame( side, 'b' ) || LAPACKE_lsame( side, 'l' ) ) {
00291         LAPACKE_sge_trans( LAPACK_ROW_MAJOR, n, mm, vl_r, mm+2, vl_i, ldvl );
00292     }
00293     if( LAPACKE_lsame( side, 'b' ) || LAPACKE_lsame( side, 'r' ) ) {
00294         LAPACKE_sge_trans( LAPACK_ROW_MAJOR, n, mm, vr_r, mm+2, vr_i, ldvr );
00295     }
00296 
00297     failed = compare_strevc( select, select_i, vl, vl_i, vr, vr_i, m, m_i, info,
00298                              info_i, howmny, ldvl, ldvr, mm, n, side );
00299     if( failed == 0 ) {
00300         printf( "PASSED: row-major high-level interface to strevc\n" );
00301     } else {
00302         printf( "FAILED: row-major high-level interface to strevc\n" );
00303     }
00304 
00305     /* Release memory */
00306     if( select != NULL ) {
00307         LAPACKE_free( select );
00308     }
00309     if( select_i != NULL ) {
00310         LAPACKE_free( select_i );
00311     }
00312     if( select_save != NULL ) {
00313         LAPACKE_free( select_save );
00314     }
00315     if( t != NULL ) {
00316         LAPACKE_free( t );
00317     }
00318     if( t_i != NULL ) {
00319         LAPACKE_free( t_i );
00320     }
00321     if( t_r != NULL ) {
00322         LAPACKE_free( t_r );
00323     }
00324     if( vl != NULL ) {
00325         LAPACKE_free( vl );
00326     }
00327     if( vl_i != NULL ) {
00328         LAPACKE_free( vl_i );
00329     }
00330     if( vl_r != NULL ) {
00331         LAPACKE_free( vl_r );
00332     }
00333     if( vl_save != NULL ) {
00334         LAPACKE_free( vl_save );
00335     }
00336     if( vr != NULL ) {
00337         LAPACKE_free( vr );
00338     }
00339     if( vr_i != NULL ) {
00340         LAPACKE_free( vr_i );
00341     }
00342     if( vr_r != NULL ) {
00343         LAPACKE_free( vr_r );
00344     }
00345     if( vr_save != NULL ) {
00346         LAPACKE_free( vr_save );
00347     }
00348     if( work != NULL ) {
00349         LAPACKE_free( work );
00350     }
00351     if( work_i != NULL ) {
00352         LAPACKE_free( work_i );
00353     }
00354 
00355     return 0;
00356 }
00357 
00358 /* Auxiliary function: strevc scalar parameters initialization */
00359 static void init_scalars_strevc( char *side, char *howmny, lapack_int *n,
00360                                  lapack_int *ldt, lapack_int *ldvl,
00361                                  lapack_int *ldvr, lapack_int *mm )
00362 {
00363     *side = 'R';
00364     *howmny = 'B';
00365     *n = 4;
00366     *ldt = 8;
00367     *ldvl = 1;
00368     *ldvr = 8;
00369     *mm = 4;
00370 
00371     return;
00372 }
00373 
00374 /* Auxiliary functions: strevc array parameters initialization */
00375 static void init_select( lapack_int size, lapack_int *select ) {
00376     lapack_int i;
00377     for( i = 0; i < size; i++ ) {
00378         select[i] = 0;
00379     }
00380     select[0] = 0;
00381     select[1] = 0;
00382     select[2] = 0;
00383     select[3] = 0;
00384 }
00385 static void init_t( lapack_int size, float *t ) {
00386     lapack_int i;
00387     for( i = 0; i < size; i++ ) {
00388         t[i] = 0;
00389     }
00390     t[0] = -4.000000060e-001;  /* t[0,0] */
00391     t[8] = -5.513220429e-001;  /* t[0,1] */
00392     t[16] = 5.378702164e+000;  /* t[0,2] */
00393     t[24] = -6.404341698e+000;  /* t[0,3] */
00394     t[1] = 0.000000000e+000;  /* t[1,0] */
00395     t[9] = -4.020780563e+000;  /* t[1,1] */
00396     t[17] = -9.760121703e-001;  /* t[1,2] */
00397     t[25] = -1.791715026e+000;  /* t[1,3] */
00398     t[2] = 0.000000000e+000;  /* t[2,0] */
00399     t[10] = 0.000000000e+000;  /* t[2,1] */
00400     t[18] = 3.013556719e+000;  /* t[2,2] */
00401     t[26] = -5.063679218e-001;  /* t[2,3] */
00402     t[3] = 0.000000000e+000;  /* t[3,0] */
00403     t[11] = 0.000000000e+000;  /* t[3,1] */
00404     t[19] = 0.000000000e+000;  /* t[3,2] */
00405     t[27] = 7.007224083e+000;  /* t[3,3] */
00406 }
00407 static void init_vl( lapack_int size, float *vl ) {
00408     lapack_int i;
00409     for( i = 0; i < size; i++ ) {
00410         vl[i] = 0;
00411     }
00412     vl[0] = 0.000000000e+000;  /* vl[0,0] */
00413     vl[1] = 0.000000000e+000;  /* vl[0,1] */
00414     vl[2] = 0.000000000e+000;  /* vl[0,2] */
00415     vl[3] = 0.000000000e+000;  /* vl[0,3] */
00416     vl[1] = 0.000000000e+000;  /* vl[1,0] */
00417     vl[2] = 0.000000000e+000;  /* vl[1,1] */
00418     vl[3] = 0.000000000e+000;  /* vl[1,2] */
00419     vl[2] = 0.000000000e+000;  /* vl[2,0] */
00420     vl[3] = 0.000000000e+000;  /* vl[2,1] */
00421     vl[3] = 0.000000000e+000;  /* vl[3,0] */
00422 }
00423 static void init_vr( lapack_int size, float *vr ) {
00424     lapack_int i;
00425     for( i = 0; i < size; i++ ) {
00426         vr[i] = 0;
00427     }
00428     vr[0] = 1.000000000e+000;  /* vr[0,0] */
00429     vr[8] = 0.000000000e+000;  /* vr[0,1] */
00430     vr[16] = 0.000000000e+000;  /* vr[0,2] */
00431     vr[24] = 0.000000000e+000;  /* vr[0,3] */
00432     vr[1] = 0.000000000e+000;  /* vr[1,0] */
00433     vr[9] = -7.058854699e-001;  /* vr[1,1] */
00434     vr[17] = 6.936097145e-001;  /* vr[1,2] */
00435     vr[25] = 1.436354816e-001;  /* vr[1,3] */
00436     vr[2] = 0.000000000e+000;  /* vr[2,0] */
00437     vr[10] = 3.465942442e-001;  /* vr[2,1] */
00438     vr[18] = 5.150713325e-001;  /* vr[2,2] */
00439     vr[26] = -7.839475870e-001;  /* vr[2,3] */
00440     vr[3] = 0.000000000e+000;  /* vr[3,0] */
00441     vr[11] = 6.177361608e-001;  /* vr[3,1] */
00442     vr[19] = 5.035938621e-001;  /* vr[3,2] */
00443     vr[27] = 6.039826274e-001;  /* vr[3,3] */
00444 }
00445 static void init_work( lapack_int size, float *work ) {
00446     lapack_int i;
00447     for( i = 0; i < size; i++ ) {
00448         work[i] = 0;
00449     }
00450 }
00451 
00452 /* Auxiliary function: C interface to strevc results check */
00453 /* Return value: 0 - test is passed, non-zero - test is failed */
00454 static int compare_strevc( lapack_int *select, lapack_int *select_i, float *vl,
00455                            float *vl_i, float *vr, float *vr_i, lapack_int m,
00456                            lapack_int m_i, lapack_int info, lapack_int info_i,
00457                            char howmny, lapack_int ldvl, lapack_int ldvr,
00458                            lapack_int mm, lapack_int n, char side )
00459 {
00460     lapack_int i;
00461     int failed = 0;
00462     if( LAPACKE_lsame( howmny, 's' ) ) {
00463         for( i = 0; i < n; i++ ) {
00464             failed += (select[i] == select_i[i]) ? 0 : 1;
00465         }
00466     }
00467     if( LAPACKE_lsame( side, 'b' ) || LAPACKE_lsame( side, 'l' ) ) {
00468         for( i = 0; i < ldvl*mm; i++ ) {
00469             failed += compare_floats(vl[i],vl_i[i]);
00470         }
00471     }
00472     if( LAPACKE_lsame( side, 'b' ) || LAPACKE_lsame( side, 'r' ) ) {
00473         for( i = 0; i < ldvr*mm; i++ ) {
00474             failed += compare_floats(vr[i],vr_i[i]);
00475         }
00476     }
00477     failed += (m == m_i) ? 0 : 1;
00478     failed += (info == info_i) ? 0 : 1;
00479     if( info != 0 || info_i != 0 ) {
00480         printf( "info=%d, info_i=%d\n",(int)info,(int)info_i );
00481     }
00482 
00483     return failed;
00484 }


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