ctrcon_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 * ctrcon_1 is the test program for the C interface to LAPACK
00036 * routine ctrcon
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_ctrcon( char *norm, char *uplo, char *diag,
00055                                  lapack_int *n, lapack_int *lda );
00056 static void init_a( lapack_int size, lapack_complex_float *a );
00057 static void init_work( lapack_int size, lapack_complex_float *work );
00058 static void init_rwork( lapack_int size, float *rwork );
00059 static int compare_ctrcon( float rcond, float rcond_i, lapack_int info,
00060                            lapack_int info_i );
00061 
00062 int main(void)
00063 {
00064     /* Local scalars */
00065     char norm, norm_i;
00066     char uplo, uplo_i;
00067     char diag, diag_i;
00068     lapack_int n, n_i;
00069     lapack_int lda, lda_i;
00070     lapack_int lda_r;
00071     float rcond, rcond_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     lapack_complex_float *work = NULL, *work_i = NULL;
00079     float *rwork = NULL, *rwork_i = NULL;
00080     lapack_complex_float *a_r = NULL;
00081 
00082     /* Iniitialize the scalar parameters */
00083     init_scalars_ctrcon( &norm, &uplo, &diag, &n, &lda );
00084     lda_r = n+2;
00085     norm_i = norm;
00086     uplo_i = uplo;
00087     diag_i = diag;
00088     n_i = n;
00089     lda_i = lda;
00090 
00091     /* Allocate memory for the LAPACK routine arrays */
00092     a = (lapack_complex_float *)
00093         LAPACKE_malloc( lda*n * sizeof(lapack_complex_float) );
00094     work = (lapack_complex_float *)
00095         LAPACKE_malloc( 2*n * sizeof(lapack_complex_float) );
00096     rwork = (float *)LAPACKE_malloc( n * sizeof(float) );
00097 
00098     /* Allocate memory for the C interface function arrays */
00099     a_i = (lapack_complex_float *)
00100         LAPACKE_malloc( lda*n * sizeof(lapack_complex_float) );
00101     work_i = (lapack_complex_float *)
00102         LAPACKE_malloc( 2*n * sizeof(lapack_complex_float) );
00103     rwork_i = (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_work( 2*n, work );
00112     init_rwork( n, rwork );
00113 
00114     /* Call the LAPACK routine */
00115     ctrcon_( &norm, &uplo, &diag, &n, a, &lda, &rcond, work, rwork, &info );
00116 
00117     /* Initialize input data, call the column-major middle-level
00118      * interface to LAPACK routine and check the results */
00119     for( i = 0; i < lda*n; i++ ) {
00120         a_i[i] = a[i];
00121     }
00122     for( i = 0; i < 2*n; i++ ) {
00123         work_i[i] = work[i];
00124     }
00125     for( i = 0; i < n; i++ ) {
00126         rwork_i[i] = rwork[i];
00127     }
00128     info_i = LAPACKE_ctrcon_work( LAPACK_COL_MAJOR, norm_i, uplo_i, diag_i, n_i,
00129                                   a_i, lda_i, &rcond_i, work_i, rwork_i );
00130 
00131     failed = compare_ctrcon( rcond, rcond_i, info, info_i );
00132     if( failed == 0 ) {
00133         printf( "PASSED: column-major middle-level interface to ctrcon\n" );
00134     } else {
00135         printf( "FAILED: column-major middle-level interface to ctrcon\n" );
00136     }
00137 
00138     /* Initialize input data, call the column-major high-level
00139      * interface to LAPACK routine and check the results */
00140     for( i = 0; i < lda*n; i++ ) {
00141         a_i[i] = a[i];
00142     }
00143     for( i = 0; i < 2*n; i++ ) {
00144         work_i[i] = work[i];
00145     }
00146     for( i = 0; i < n; i++ ) {
00147         rwork_i[i] = rwork[i];
00148     }
00149     info_i = LAPACKE_ctrcon( LAPACK_COL_MAJOR, norm_i, uplo_i, diag_i, n_i, a_i,
00150                              lda_i, &rcond_i );
00151 
00152     failed = compare_ctrcon( rcond, rcond_i, info, info_i );
00153     if( failed == 0 ) {
00154         printf( "PASSED: column-major high-level interface to ctrcon\n" );
00155     } else {
00156         printf( "FAILED: column-major high-level interface to ctrcon\n" );
00157     }
00158 
00159     /* Initialize input data, call the row-major middle-level
00160      * interface to LAPACK routine and check the results */
00161     for( i = 0; i < lda*n; i++ ) {
00162         a_i[i] = a[i];
00163     }
00164     for( i = 0; i < 2*n; i++ ) {
00165         work_i[i] = work[i];
00166     }
00167     for( i = 0; i < n; i++ ) {
00168         rwork_i[i] = rwork[i];
00169     }
00170 
00171     LAPACKE_cge_trans( LAPACK_COL_MAJOR, n, n, a_i, lda, a_r, n+2 );
00172     info_i = LAPACKE_ctrcon_work( LAPACK_ROW_MAJOR, norm_i, uplo_i, diag_i, n_i,
00173                                   a_r, lda_r, &rcond_i, work_i, rwork_i );
00174 
00175     failed = compare_ctrcon( rcond, rcond_i, info, info_i );
00176     if( failed == 0 ) {
00177         printf( "PASSED: row-major middle-level interface to ctrcon\n" );
00178     } else {
00179         printf( "FAILED: row-major middle-level interface to ctrcon\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[i];
00186     }
00187     for( i = 0; i < 2*n; i++ ) {
00188         work_i[i] = work[i];
00189     }
00190     for( i = 0; i < n; i++ ) {
00191         rwork_i[i] = rwork[i];
00192     }
00193 
00194     /* Init row_major arrays */
00195     LAPACKE_cge_trans( LAPACK_COL_MAJOR, n, n, a_i, lda, a_r, n+2 );
00196     info_i = LAPACKE_ctrcon( LAPACK_ROW_MAJOR, norm_i, uplo_i, diag_i, n_i, a_r,
00197                              lda_r, &rcond_i );
00198 
00199     failed = compare_ctrcon( rcond, rcond_i, info, info_i );
00200     if( failed == 0 ) {
00201         printf( "PASSED: row-major high-level interface to ctrcon\n" );
00202     } else {
00203         printf( "FAILED: row-major high-level interface to ctrcon\n" );
00204     }
00205 
00206     /* Release memory */
00207     if( a != NULL ) {
00208         LAPACKE_free( a );
00209     }
00210     if( a_i != NULL ) {
00211         LAPACKE_free( a_i );
00212     }
00213     if( a_r != NULL ) {
00214         LAPACKE_free( a_r );
00215     }
00216     if( work != NULL ) {
00217         LAPACKE_free( work );
00218     }
00219     if( work_i != NULL ) {
00220         LAPACKE_free( work_i );
00221     }
00222     if( rwork != NULL ) {
00223         LAPACKE_free( rwork );
00224     }
00225     if( rwork_i != NULL ) {
00226         LAPACKE_free( rwork_i );
00227     }
00228 
00229     return 0;
00230 }
00231 
00232 /* Auxiliary function: ctrcon scalar parameters initialization */
00233 static void init_scalars_ctrcon( char *norm, char *uplo, char *diag,
00234                                  lapack_int *n, lapack_int *lda )
00235 {
00236     *norm = '1';
00237     *uplo = 'L';
00238     *diag = 'N';
00239     *n = 4;
00240     *lda = 8;
00241 
00242     return;
00243 }
00244 
00245 /* Auxiliary functions: ctrcon array parameters initialization */
00246 static void init_a( lapack_int size, lapack_complex_float *a ) {
00247     lapack_int i;
00248     for( i = 0; i < size; i++ ) {
00249         a[i] = lapack_make_complex_float( 0.0f, 0.0f );
00250     }
00251     a[0] = lapack_make_complex_float( 4.780000210e+000, 4.559999943e+000 );
00252     a[8] = lapack_make_complex_float( 0.000000000e+000, 0.000000000e+000 );
00253     a[16] = lapack_make_complex_float( 0.000000000e+000, 0.000000000e+000 );
00254     a[24] = lapack_make_complex_float( 0.000000000e+000, 0.000000000e+000 );
00255     a[1] = lapack_make_complex_float( 2.000000000e+000, -3.000000119e-001 );
00256     a[9] = lapack_make_complex_float( -4.110000134e+000, 1.250000000e+000 );
00257     a[17] = lapack_make_complex_float( 0.000000000e+000, 0.000000000e+000 );
00258     a[25] = lapack_make_complex_float( 0.000000000e+000, 0.000000000e+000 );
00259     a[2] = lapack_make_complex_float( 2.890000105e+000, -1.340000033e+000 );
00260     a[10] = lapack_make_complex_float( 2.359999895e+000, -4.250000000e+000 );
00261     a[18] = lapack_make_complex_float( 4.150000095e+000, 8.000000119e-001 );
00262     a[26] = lapack_make_complex_float( 0.000000000e+000, 0.000000000e+000 );
00263     a[3] = lapack_make_complex_float( -1.889999986e+000, 1.149999976e+000 );
00264     a[11] = lapack_make_complex_float( 3.999999911e-002, -3.690000057e+000 );
00265     a[19] = lapack_make_complex_float( -1.999999955e-002, 4.600000083e-001 );
00266     a[27] = lapack_make_complex_float( 3.300000131e-001, -2.599999905e-001 );
00267 }
00268 static void init_work( lapack_int size, lapack_complex_float *work ) {
00269     lapack_int i;
00270     for( i = 0; i < size; i++ ) {
00271         work[i] = lapack_make_complex_float( 0.0f, 0.0f );
00272     }
00273 }
00274 static void init_rwork( lapack_int size, float *rwork ) {
00275     lapack_int i;
00276     for( i = 0; i < size; i++ ) {
00277         rwork[i] = 0;
00278     }
00279 }
00280 
00281 /* Auxiliary function: C interface to ctrcon results check */
00282 /* Return value: 0 - test is passed, non-zero - test is failed */
00283 static int compare_ctrcon( float rcond, float rcond_i, lapack_int info,
00284                            lapack_int info_i )
00285 {
00286     int failed = 0;
00287     failed += compare_floats(rcond,rcond_i);
00288     failed += (info == info_i) ? 0 : 1;
00289     if( info != 0 || info_i != 0 ) {
00290         printf( "info=%d, info_i=%d\n",(int)info,(int)info_i );
00291     }
00292 
00293     return failed;
00294 }


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