cpbcon_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 * cpbcon_1 is the test program for the C interface to LAPACK
00036 * routine cpbcon
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_cpbcon( char *uplo, lapack_int *n, lapack_int *kd,
00055                                  lapack_int *ldab, float *anorm );
00056 static void init_ab( lapack_int size, lapack_complex_float *ab );
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_cpbcon( float rcond, float rcond_i, lapack_int info,
00060                            lapack_int info_i );
00061 
00062 int main(void)
00063 {
00064     /* Local scalars */
00065     char uplo, uplo_i;
00066     lapack_int n, n_i;
00067     lapack_int kd, kd_i;
00068     lapack_int ldab, ldab_i;
00069     lapack_int ldab_r;
00070     float anorm, anorm_i;
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 *ab = NULL, *ab_i = NULL;
00078     lapack_complex_float *work = NULL, *work_i = NULL;
00079     float *rwork = NULL, *rwork_i = NULL;
00080     lapack_complex_float *ab_r = NULL;
00081 
00082     /* Iniitialize the scalar parameters */
00083     init_scalars_cpbcon( &uplo, &n, &kd, &ldab, &anorm );
00084     ldab_r = n+2;
00085     uplo_i = uplo;
00086     n_i = n;
00087     kd_i = kd;
00088     ldab_i = ldab;
00089     anorm_i = anorm;
00090 
00091     /* Allocate memory for the LAPACK routine arrays */
00092     ab = (lapack_complex_float *)
00093         LAPACKE_malloc( ldab*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     ab_i = (lapack_complex_float *)
00100         LAPACKE_malloc( ldab*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     ab_r = (lapack_complex_float *)
00107         LAPACKE_malloc( (kd+1)*(n+2) * sizeof(lapack_complex_float) );
00108 
00109     /* Initialize input arrays */
00110     init_ab( ldab*n, ab );
00111     init_work( 2*n, work );
00112     init_rwork( n, rwork );
00113 
00114     /* Call the LAPACK routine */
00115     cpbcon_( &uplo, &n, &kd, ab, &ldab, &anorm, &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 < ldab*n; i++ ) {
00120         ab_i[i] = ab[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_cpbcon_work( LAPACK_COL_MAJOR, uplo_i, n_i, kd_i, ab_i,
00129                                   ldab_i, anorm_i, &rcond_i, work_i, rwork_i );
00130 
00131     failed = compare_cpbcon( rcond, rcond_i, info, info_i );
00132     if( failed == 0 ) {
00133         printf( "PASSED: column-major middle-level interface to cpbcon\n" );
00134     } else {
00135         printf( "FAILED: column-major middle-level interface to cpbcon\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 < ldab*n; i++ ) {
00141         ab_i[i] = ab[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_cpbcon( LAPACK_COL_MAJOR, uplo_i, n_i, kd_i, ab_i, ldab_i,
00150                              anorm_i, &rcond_i );
00151 
00152     failed = compare_cpbcon( rcond, rcond_i, info, info_i );
00153     if( failed == 0 ) {
00154         printf( "PASSED: column-major high-level interface to cpbcon\n" );
00155     } else {
00156         printf( "FAILED: column-major high-level interface to cpbcon\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 < ldab*n; i++ ) {
00162         ab_i[i] = ab[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, kd+1, n, ab_i, ldab, ab_r, n+2 );
00172     info_i = LAPACKE_cpbcon_work( LAPACK_ROW_MAJOR, uplo_i, n_i, kd_i, ab_r,
00173                                   ldab_r, anorm_i, &rcond_i, work_i, rwork_i );
00174 
00175     failed = compare_cpbcon( rcond, rcond_i, info, info_i );
00176     if( failed == 0 ) {
00177         printf( "PASSED: row-major middle-level interface to cpbcon\n" );
00178     } else {
00179         printf( "FAILED: row-major middle-level interface to cpbcon\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 < ldab*n; i++ ) {
00185         ab_i[i] = ab[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, kd+1, n, ab_i, ldab, ab_r, n+2 );
00196     info_i = LAPACKE_cpbcon( LAPACK_ROW_MAJOR, uplo_i, n_i, kd_i, ab_r, ldab_r,
00197                              anorm_i, &rcond_i );
00198 
00199     failed = compare_cpbcon( rcond, rcond_i, info, info_i );
00200     if( failed == 0 ) {
00201         printf( "PASSED: row-major high-level interface to cpbcon\n" );
00202     } else {
00203         printf( "FAILED: row-major high-level interface to cpbcon\n" );
00204     }
00205 
00206     /* Release memory */
00207     if( ab != NULL ) {
00208         LAPACKE_free( ab );
00209     }
00210     if( ab_i != NULL ) {
00211         LAPACKE_free( ab_i );
00212     }
00213     if( ab_r != NULL ) {
00214         LAPACKE_free( ab_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: cpbcon scalar parameters initialization */
00233 static void init_scalars_cpbcon( char *uplo, lapack_int *n, lapack_int *kd,
00234                                  lapack_int *ldab, float *anorm )
00235 {
00236     *uplo = 'L';
00237     *n = 4;
00238     *kd = 1;
00239     *ldab = 9;
00240     *anorm = 1.142943668e+001;
00241 
00242     return;
00243 }
00244 
00245 /* Auxiliary functions: cpbcon array parameters initialization */
00246 static void init_ab( lapack_int size, lapack_complex_float *ab ) {
00247     lapack_int i;
00248     for( i = 0; i < size; i++ ) {
00249         ab[i] = lapack_make_complex_float( 0.0f, 0.0f );
00250     }
00251     ab[0] = lapack_make_complex_float( 3.064310789e+000, 0.000000000e+000 );
00252     ab[9] = lapack_make_complex_float( 1.116714001e+000, 0.000000000e+000 );
00253     ab[18] = lapack_make_complex_float( 1.606635571e+000, 0.000000000e+000 );
00254     ab[27] = lapack_make_complex_float( 4.289152622e-001, 0.000000000e+000 );
00255     ab[1] = lapack_make_complex_float( 3.524446785e-001, 5.645641685e-001 );
00256     ab[10] = lapack_make_complex_float( -3.581937775e-002, -2.596904933e-001 );
00257     ab[19] = lapack_make_complex_float( -2.053981870e-001, -1.394217849e+000 );
00258     ab[28] = lapack_make_complex_float( 0.000000000e+000, 0.000000000e+000 );
00259 }
00260 static void init_work( lapack_int size, lapack_complex_float *work ) {
00261     lapack_int i;
00262     for( i = 0; i < size; i++ ) {
00263         work[i] = lapack_make_complex_float( 0.0f, 0.0f );
00264     }
00265 }
00266 static void init_rwork( lapack_int size, float *rwork ) {
00267     lapack_int i;
00268     for( i = 0; i < size; i++ ) {
00269         rwork[i] = 0;
00270     }
00271 }
00272 
00273 /* Auxiliary function: C interface to cpbcon results check */
00274 /* Return value: 0 - test is passed, non-zero - test is failed */
00275 static int compare_cpbcon( float rcond, float rcond_i, lapack_int info,
00276                            lapack_int info_i )
00277 {
00278     int failed = 0;
00279     failed += compare_floats(rcond,rcond_i);
00280     failed += (info == info_i) ? 0 : 1;
00281     if( info != 0 || info_i != 0 ) {
00282         printf( "info=%d, info_i=%d\n",(int)info,(int)info_i );
00283     }
00284 
00285     return failed;
00286 }


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