zgebal_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 * zgebal_1 is the test program for the C interface to LAPACK
00036 * routine zgebal
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_zgebal( char *job, lapack_int *n, lapack_int *lda );
00055 static void init_a( lapack_int size, lapack_complex_double *a );
00056 static void init_scale( lapack_int size, double *scale );
00057 static int compare_zgebal( lapack_complex_double *a, lapack_complex_double *a_i,
00058                            lapack_int ilo, lapack_int ilo_i, lapack_int ihi,
00059                            lapack_int ihi_i, double *scale, double *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_double *a = NULL, *a_i = NULL;
00078     double *scale = NULL, *scale_i = NULL;
00079     lapack_complex_double *a_save = NULL;
00080     double *scale_save = NULL;
00081     lapack_complex_double *a_r = NULL;
00082 
00083     /* Iniitialize the scalar parameters */
00084     init_scalars_zgebal( &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_double *)
00092         LAPACKE_malloc( lda*n * sizeof(lapack_complex_double) );
00093     scale = (double *)LAPACKE_malloc( n * sizeof(double) );
00094 
00095     /* Allocate memory for the C interface function arrays */
00096     a_i = (lapack_complex_double *)
00097         LAPACKE_malloc( lda*n * sizeof(lapack_complex_double) );
00098     scale_i = (double *)LAPACKE_malloc( n * sizeof(double) );
00099 
00100     /* Allocate memory for the backup arrays */
00101     a_save = (lapack_complex_double *)
00102         LAPACKE_malloc( lda*n * sizeof(lapack_complex_double) );
00103     scale_save = (double *)LAPACKE_malloc( n * sizeof(double) );
00104 
00105     /* Allocate memory for the row-major arrays */
00106     a_r = (lapack_complex_double *)
00107         LAPACKE_malloc( n*(n+2) * sizeof(lapack_complex_double) );
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     zgebal_( &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_zgebal_work( LAPACK_COL_MAJOR, job_i, n_i, a_i, lda_i,
00133                                   &ilo_i, &ihi_i, scale_i );
00134 
00135     failed = compare_zgebal( 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 zgebal\n" );
00139     } else {
00140         printf( "FAILED: column-major middle-level interface to zgebal\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_zgebal( LAPACK_COL_MAJOR, job_i, n_i, a_i, lda_i, &ilo_i,
00152                              &ihi_i, scale_i );
00153 
00154     failed = compare_zgebal( 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 zgebal\n" );
00158     } else {
00159         printf( "FAILED: column-major high-level interface to zgebal\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_zge_trans( LAPACK_COL_MAJOR, n, n, a_i, lda, a_r, n+2 );
00174     }
00175     info_i = LAPACKE_zgebal_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_zge_trans( LAPACK_ROW_MAJOR, n, n, a_r, n+2, a_i, lda );
00181     }
00182 
00183     failed = compare_zgebal( 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 zgebal\n" );
00187     } else {
00188         printf( "FAILED: row-major middle-level interface to zgebal\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_zge_trans( LAPACK_COL_MAJOR, n, n, a_i, lda, a_r, n+2 );
00204     }
00205     info_i = LAPACKE_zgebal( 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_zge_trans( LAPACK_ROW_MAJOR, n, n, a_r, n+2, a_i, lda );
00211     }
00212 
00213     failed = compare_zgebal( 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 zgebal\n" );
00217     } else {
00218         printf( "FAILED: row-major high-level interface to zgebal\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: zgebal scalar parameters initialization */
00248 static void init_scalars_zgebal( 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: zgebal array parameters initialization */
00258 static void init_a( lapack_int size, lapack_complex_double *a ) {
00259     lapack_int i;
00260     for( i = 0; i < size; i++ ) {
00261         a[i] = lapack_make_complex_double( 0.0, 0.0 );
00262     }
00263     a[0] = lapack_make_complex_double( 1.50000000000000000e+000,
00264                                        -2.75000000000000000e+000 );
00265     a[8] = lapack_make_complex_double( 0.00000000000000000e+000,
00266                                        0.00000000000000000e+000 );
00267     a[16] = lapack_make_complex_double( 0.00000000000000000e+000,
00268                                         0.00000000000000000e+000 );
00269     a[24] = lapack_make_complex_double( 0.00000000000000000e+000,
00270                                         0.00000000000000000e+000 );
00271     a[1] = lapack_make_complex_double( -8.06000000000000050e+000,
00272                                        -1.24000000000000000e+000 );
00273     a[9] = lapack_make_complex_double( -2.50000000000000000e+000,
00274                                        -5.00000000000000000e-001 );
00275     a[17] = lapack_make_complex_double( 0.00000000000000000e+000,
00276                                         0.00000000000000000e+000 );
00277     a[25] = lapack_make_complex_double( -7.50000000000000000e-001,
00278                                         5.00000000000000000e-001 );
00279     a[2] = lapack_make_complex_double( -2.08999999999999990e+000,
00280                                        7.55999999999999960e+000 );
00281     a[10] = lapack_make_complex_double( 1.38999999999999990e+000,
00282                                         3.97000000000000020e+000 );
00283     a[18] = lapack_make_complex_double( -1.25000000000000000e+000,
00284                                         7.50000000000000000e-001 );
00285     a[26] = lapack_make_complex_double( -4.82000000000000030e+000,
00286                                         -5.66999999999999990e+000 );
00287     a[3] = lapack_make_complex_double( 6.17999999999999970e+000,
00288                                        9.78999999999999910e+000 );
00289     a[11] = lapack_make_complex_double( -9.20000000000000040e-001,
00290                                         -6.20000000000000000e-001 );
00291     a[19] = lapack_make_complex_double( 0.00000000000000000e+000,
00292                                         0.00000000000000000e+000 );
00293     a[27] = lapack_make_complex_double( -2.50000000000000000e+000,
00294                                         -5.00000000000000000e-001 );
00295 }
00296 static void init_scale( lapack_int size, double *scale ) {
00297     lapack_int i;
00298     for( i = 0; i < size; i++ ) {
00299         scale[i] = 0;
00300     }
00301 }
00302 
00303 /* Auxiliary function: C interface to zgebal results check */
00304 /* Return value: 0 - test is passed, non-zero - test is failed */
00305 static int compare_zgebal( lapack_complex_double *a, lapack_complex_double *a_i,
00306                            lapack_int ilo, lapack_int ilo_i, lapack_int ihi,
00307                            lapack_int ihi_i, double *scale, double *scale_i,
00308                            lapack_int info, lapack_int info_i, char job,
00309                            lapack_int lda, lapack_int n )
00310 {
00311     lapack_int i;
00312     int failed = 0;
00313     if( LAPACKE_lsame( job, 'b' ) || LAPACKE_lsame( job, 'p' ) ||
00314         LAPACKE_lsame( job, 's' ) ) {
00315         for( i = 0; i < lda*n; i++ ) {
00316             failed += compare_complex_doubles(a[i],a_i[i]);
00317         }
00318     }
00319     failed += (ilo == ilo_i) ? 0 : 1;
00320     failed += (ihi == ihi_i) ? 0 : 1;
00321     for( i = 0; i < n; i++ ) {
00322         failed += compare_doubles(scale[i],scale_i[i]);
00323     }
00324     failed += (info == info_i) ? 0 : 1;
00325     if( info != 0 || info_i != 0 ) {
00326         printf( "info=%d, info_i=%d\n",(int)info,(int)info_i );
00327     }
00328 
00329     return failed;
00330 }


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