cgebal_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 * cgebal_1 is the test program for the C interface to LAPACK
00036 * routine cgebal
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_cgebal( char *job, lapack_int *n, lapack_int *lda );
00055 static void init_a( lapack_int size, lapack_complex_float *a );
00056 static void init_scale( lapack_int size, float *scale );
00057 static int compare_cgebal( lapack_complex_float *a, lapack_complex_float *a_i,
00058                            lapack_int ilo, lapack_int ilo_i, lapack_int ihi,
00059                            lapack_int ihi_i, float *scale, float *scale_i,
00060                            lapack_int info, lapack_int info_i, char job,
00061                            lapack_int lda, lapack_int n );
00062 
00063 int main(void)
00064 {
00065     /* Local scalars */
00066     char job, job_i;
00067     lapack_int n, n_i;
00068     lapack_int lda, lda_i;
00069     lapack_int lda_r;
00070     lapack_int ilo, ilo_i;
00071     lapack_int ihi, ihi_i;
00072     lapack_int info, info_i;
00073     lapack_int i;
00074     int failed;
00075 
00076     /* Local arrays */
00077     lapack_complex_float *a = NULL, *a_i = NULL;
00078     float *scale = NULL, *scale_i = NULL;
00079     lapack_complex_float *a_save = NULL;
00080     float *scale_save = NULL;
00081     lapack_complex_float *a_r = NULL;
00082 
00083     /* Iniitialize the scalar parameters */
00084     init_scalars_cgebal( &job, &n, &lda );
00085     lda_r = n+2;
00086     job_i = job;
00087     n_i = n;
00088     lda_i = lda;
00089 
00090     /* Allocate memory for the LAPACK routine arrays */
00091     a = (lapack_complex_float *)
00092         LAPACKE_malloc( lda*n * sizeof(lapack_complex_float) );
00093     scale = (float *)LAPACKE_malloc( n * sizeof(float) );
00094 
00095     /* Allocate memory for the C interface function arrays */
00096     a_i = (lapack_complex_float *)
00097         LAPACKE_malloc( lda*n * sizeof(lapack_complex_float) );
00098     scale_i = (float *)LAPACKE_malloc( n * sizeof(float) );
00099 
00100     /* Allocate memory for the backup arrays */
00101     a_save = (lapack_complex_float *)
00102         LAPACKE_malloc( lda*n * sizeof(lapack_complex_float) );
00103     scale_save = (float *)LAPACKE_malloc( n * sizeof(float) );
00104 
00105     /* Allocate memory for the row-major arrays */
00106     a_r = (lapack_complex_float *)
00107         LAPACKE_malloc( n*(n+2) * sizeof(lapack_complex_float) );
00108 
00109     /* Initialize input arrays */
00110     init_a( lda*n, a );
00111     init_scale( n, scale );
00112 
00113     /* Backup the ouptut arrays */
00114     for( i = 0; i < lda*n; i++ ) {
00115         a_save[i] = a[i];
00116     }
00117     for( i = 0; i < n; i++ ) {
00118         scale_save[i] = scale[i];
00119     }
00120 
00121     /* Call the LAPACK routine */
00122     cgebal_( &job, &n, a, &lda, &ilo, &ihi, scale, &info );
00123 
00124     /* Initialize input data, call the column-major middle-level
00125      * interface to LAPACK routine and check the results */
00126     for( i = 0; i < lda*n; i++ ) {
00127         a_i[i] = a_save[i];
00128     }
00129     for( i = 0; i < n; i++ ) {
00130         scale_i[i] = scale_save[i];
00131     }
00132     info_i = LAPACKE_cgebal_work( LAPACK_COL_MAJOR, job_i, n_i, a_i, lda_i,
00133                                   &ilo_i, &ihi_i, scale_i );
00134 
00135     failed = compare_cgebal( a, a_i, ilo, ilo_i, ihi, ihi_i, scale, scale_i,
00136                              info, info_i, job, lda, n );
00137     if( failed == 0 ) {
00138         printf( "PASSED: column-major middle-level interface to cgebal\n" );
00139     } else {
00140         printf( "FAILED: column-major middle-level interface to cgebal\n" );
00141     }
00142 
00143     /* Initialize input data, call the column-major high-level
00144      * interface to LAPACK routine and check the results */
00145     for( i = 0; i < lda*n; i++ ) {
00146         a_i[i] = a_save[i];
00147     }
00148     for( i = 0; i < n; i++ ) {
00149         scale_i[i] = scale_save[i];
00150     }
00151     info_i = LAPACKE_cgebal( LAPACK_COL_MAJOR, job_i, n_i, a_i, lda_i, &ilo_i,
00152                              &ihi_i, scale_i );
00153 
00154     failed = compare_cgebal( a, a_i, ilo, ilo_i, ihi, ihi_i, scale, scale_i,
00155                              info, info_i, job, lda, n );
00156     if( failed == 0 ) {
00157         printf( "PASSED: column-major high-level interface to cgebal\n" );
00158     } else {
00159         printf( "FAILED: column-major high-level interface to cgebal\n" );
00160     }
00161 
00162     /* Initialize input data, call the row-major middle-level
00163      * interface to LAPACK routine and check the results */
00164     for( i = 0; i < lda*n; i++ ) {
00165         a_i[i] = a_save[i];
00166     }
00167     for( i = 0; i < n; i++ ) {
00168         scale_i[i] = scale_save[i];
00169     }
00170 
00171     if( LAPACKE_lsame( job, 'b' ) || LAPACKE_lsame( job, 'p' ) ||
00172         LAPACKE_lsame( job, 's' ) ) {
00173         LAPACKE_cge_trans( LAPACK_COL_MAJOR, n, n, a_i, lda, a_r, n+2 );
00174     }
00175     info_i = LAPACKE_cgebal_work( LAPACK_ROW_MAJOR, job_i, n_i, a_r, lda_r,
00176                                   &ilo_i, &ihi_i, scale_i );
00177 
00178     if( LAPACKE_lsame( job, 'b' ) || LAPACKE_lsame( job, 'p' ) ||
00179         LAPACKE_lsame( job, 's' ) ) {
00180         LAPACKE_cge_trans( LAPACK_ROW_MAJOR, n, n, a_r, n+2, a_i, lda );
00181     }
00182 
00183     failed = compare_cgebal( a, a_i, ilo, ilo_i, ihi, ihi_i, scale, scale_i,
00184                              info, info_i, job, lda, n );
00185     if( failed == 0 ) {
00186         printf( "PASSED: row-major middle-level interface to cgebal\n" );
00187     } else {
00188         printf( "FAILED: row-major middle-level interface to cgebal\n" );
00189     }
00190 
00191     /* Initialize input data, call the row-major high-level
00192      * interface to LAPACK routine and check the results */
00193     for( i = 0; i < lda*n; i++ ) {
00194         a_i[i] = a_save[i];
00195     }
00196     for( i = 0; i < n; i++ ) {
00197         scale_i[i] = scale_save[i];
00198     }
00199 
00200     /* Init row_major arrays */
00201     if( LAPACKE_lsame( job, 'b' ) || LAPACKE_lsame( job, 'p' ) ||
00202         LAPACKE_lsame( job, 's' ) ) {
00203         LAPACKE_cge_trans( LAPACK_COL_MAJOR, n, n, a_i, lda, a_r, n+2 );
00204     }
00205     info_i = LAPACKE_cgebal( LAPACK_ROW_MAJOR, job_i, n_i, a_r, lda_r, &ilo_i,
00206                              &ihi_i, scale_i );
00207 
00208     if( LAPACKE_lsame( job, 'b' ) || LAPACKE_lsame( job, 'p' ) ||
00209         LAPACKE_lsame( job, 's' ) ) {
00210         LAPACKE_cge_trans( LAPACK_ROW_MAJOR, n, n, a_r, n+2, a_i, lda );
00211     }
00212 
00213     failed = compare_cgebal( a, a_i, ilo, ilo_i, ihi, ihi_i, scale, scale_i,
00214                              info, info_i, job, lda, n );
00215     if( failed == 0 ) {
00216         printf( "PASSED: row-major high-level interface to cgebal\n" );
00217     } else {
00218         printf( "FAILED: row-major high-level interface to cgebal\n" );
00219     }
00220 
00221     /* Release memory */
00222     if( a != NULL ) {
00223         LAPACKE_free( a );
00224     }
00225     if( a_i != NULL ) {
00226         LAPACKE_free( a_i );
00227     }
00228     if( a_r != NULL ) {
00229         LAPACKE_free( a_r );
00230     }
00231     if( a_save != NULL ) {
00232         LAPACKE_free( a_save );
00233     }
00234     if( scale != NULL ) {
00235         LAPACKE_free( scale );
00236     }
00237     if( scale_i != NULL ) {
00238         LAPACKE_free( scale_i );
00239     }
00240     if( scale_save != NULL ) {
00241         LAPACKE_free( scale_save );
00242     }
00243 
00244     return 0;
00245 }
00246 
00247 /* Auxiliary function: cgebal scalar parameters initialization */
00248 static void init_scalars_cgebal( char *job, lapack_int *n, lapack_int *lda )
00249 {
00250     *job = 'B';
00251     *n = 4;
00252     *lda = 8;
00253 
00254     return;
00255 }
00256 
00257 /* Auxiliary functions: cgebal array parameters initialization */
00258 static void init_a( lapack_int size, lapack_complex_float *a ) {
00259     lapack_int i;
00260     for( i = 0; i < size; i++ ) {
00261         a[i] = lapack_make_complex_float( 0.0f, 0.0f );
00262     }
00263     a[0] = lapack_make_complex_float( 1.500000000e+000, -2.750000000e+000 );
00264     a[8] = lapack_make_complex_float( 0.000000000e+000, 0.000000000e+000 );
00265     a[16] = lapack_make_complex_float( 0.000000000e+000, 0.000000000e+000 );
00266     a[24] = lapack_make_complex_float( 0.000000000e+000, 0.000000000e+000 );
00267     a[1] = lapack_make_complex_float( -8.060000420e+000, -1.240000010e+000 );
00268     a[9] = lapack_make_complex_float( -2.500000000e+000, -5.000000000e-001 );
00269     a[17] = lapack_make_complex_float( 0.000000000e+000, 0.000000000e+000 );
00270     a[25] = lapack_make_complex_float( -7.500000000e-001, 5.000000000e-001 );
00271     a[2] = lapack_make_complex_float( -2.089999914e+000, 7.559999943e+000 );
00272     a[10] = lapack_make_complex_float( 1.389999986e+000, 3.970000029e+000 );
00273     a[18] = lapack_make_complex_float( -1.250000000e+000, 7.500000000e-001 );
00274     a[26] = lapack_make_complex_float( -4.820000172e+000, -5.670000076e+000 );
00275     a[3] = lapack_make_complex_float( 6.179999828e+000, 9.789999962e+000 );
00276     a[11] = lapack_make_complex_float( -9.200000167e-001, -6.200000048e-001 );
00277     a[19] = lapack_make_complex_float( 0.000000000e+000, 0.000000000e+000 );
00278     a[27] = lapack_make_complex_float( -2.500000000e+000, -5.000000000e-001 );
00279 }
00280 static void init_scale( lapack_int size, float *scale ) {
00281     lapack_int i;
00282     for( i = 0; i < size; i++ ) {
00283         scale[i] = 0;
00284     }
00285 }
00286 
00287 /* Auxiliary function: C interface to cgebal results check */
00288 /* Return value: 0 - test is passed, non-zero - test is failed */
00289 static int compare_cgebal( lapack_complex_float *a, lapack_complex_float *a_i,
00290                            lapack_int ilo, lapack_int ilo_i, lapack_int ihi,
00291                            lapack_int ihi_i, float *scale, float *scale_i,
00292                            lapack_int info, lapack_int info_i, char job,
00293                            lapack_int lda, lapack_int n )
00294 {
00295     lapack_int i;
00296     int failed = 0;
00297     if( LAPACKE_lsame( job, 'b' ) || LAPACKE_lsame( job, 'p' ) ||
00298         LAPACKE_lsame( job, 's' ) ) {
00299         for( i = 0; i < lda*n; i++ ) {
00300             failed += compare_complex_floats(a[i],a_i[i]);
00301         }
00302     }
00303     failed += (ilo == ilo_i) ? 0 : 1;
00304     failed += (ihi == ihi_i) ? 0 : 1;
00305     for( i = 0; i < n; i++ ) {
00306         failed += compare_floats(scale[i],scale_i[i]);
00307     }
00308     failed += (info == info_i) ? 0 : 1;
00309     if( info != 0 || info_i != 0 ) {
00310         printf( "info=%d, info_i=%d\n",(int)info,(int)info_i );
00311     }
00312 
00313     return failed;
00314 }


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