ctpcon_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 * ctpcon_1 is the test program for the C interface to LAPACK
00036 * routine ctpcon
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_ctpcon( char *norm, char *uplo, char *diag,
00055                                  lapack_int *n );
00056 static void init_ap( lapack_int size, lapack_complex_float *ap );
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_ctpcon( 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     float rcond, rcond_i;
00070     lapack_int info, info_i;
00071     lapack_int i;
00072     int failed;
00073 
00074     /* Local arrays */
00075     lapack_complex_float *ap = NULL, *ap_i = NULL;
00076     lapack_complex_float *work = NULL, *work_i = NULL;
00077     float *rwork = NULL, *rwork_i = NULL;
00078     lapack_complex_float *ap_r = NULL;
00079 
00080     /* Iniitialize the scalar parameters */
00081     init_scalars_ctpcon( &norm, &uplo, &diag, &n );
00082     norm_i = norm;
00083     uplo_i = uplo;
00084     diag_i = diag;
00085     n_i = n;
00086 
00087     /* Allocate memory for the LAPACK routine arrays */
00088     ap = (lapack_complex_float *)
00089         LAPACKE_malloc( ((n*(n+1)/2)) * sizeof(lapack_complex_float) );
00090     work = (lapack_complex_float *)
00091         LAPACKE_malloc( 2*n * sizeof(lapack_complex_float) );
00092     rwork = (float *)LAPACKE_malloc( n * sizeof(float) );
00093 
00094     /* Allocate memory for the C interface function arrays */
00095     ap_i = (lapack_complex_float *)
00096         LAPACKE_malloc( ((n*(n+1)/2)) * sizeof(lapack_complex_float) );
00097     work_i = (lapack_complex_float *)
00098         LAPACKE_malloc( 2*n * sizeof(lapack_complex_float) );
00099     rwork_i = (float *)LAPACKE_malloc( n * sizeof(float) );
00100 
00101     /* Allocate memory for the row-major arrays */
00102     ap_r = (lapack_complex_float *)
00103         LAPACKE_malloc( n*(n+1)/2 * sizeof(lapack_complex_float) );
00104 
00105     /* Initialize input arrays */
00106     init_ap( (n*(n+1)/2), ap );
00107     init_work( 2*n, work );
00108     init_rwork( n, rwork );
00109 
00110     /* Call the LAPACK routine */
00111     ctpcon_( &norm, &uplo, &diag, &n, ap, &rcond, work, rwork, &info );
00112 
00113     /* Initialize input data, call the column-major middle-level
00114      * interface to LAPACK routine and check the results */
00115     for( i = 0; i < (n*(n+1)/2); i++ ) {
00116         ap_i[i] = ap[i];
00117     }
00118     for( i = 0; i < 2*n; i++ ) {
00119         work_i[i] = work[i];
00120     }
00121     for( i = 0; i < n; i++ ) {
00122         rwork_i[i] = rwork[i];
00123     }
00124     info_i = LAPACKE_ctpcon_work( LAPACK_COL_MAJOR, norm_i, uplo_i, diag_i, n_i,
00125                                   ap_i, &rcond_i, work_i, rwork_i );
00126 
00127     failed = compare_ctpcon( rcond, rcond_i, info, info_i );
00128     if( failed == 0 ) {
00129         printf( "PASSED: column-major middle-level interface to ctpcon\n" );
00130     } else {
00131         printf( "FAILED: column-major middle-level interface to ctpcon\n" );
00132     }
00133 
00134     /* Initialize input data, call the column-major high-level
00135      * interface to LAPACK routine and check the results */
00136     for( i = 0; i < (n*(n+1)/2); i++ ) {
00137         ap_i[i] = ap[i];
00138     }
00139     for( i = 0; i < 2*n; i++ ) {
00140         work_i[i] = work[i];
00141     }
00142     for( i = 0; i < n; i++ ) {
00143         rwork_i[i] = rwork[i];
00144     }
00145     info_i = LAPACKE_ctpcon( LAPACK_COL_MAJOR, norm_i, uplo_i, diag_i, n_i,
00146                              ap_i, &rcond_i );
00147 
00148     failed = compare_ctpcon( rcond, rcond_i, info, info_i );
00149     if( failed == 0 ) {
00150         printf( "PASSED: column-major high-level interface to ctpcon\n" );
00151     } else {
00152         printf( "FAILED: column-major high-level interface to ctpcon\n" );
00153     }
00154 
00155     /* Initialize input data, call the row-major middle-level
00156      * interface to LAPACK routine and check the results */
00157     for( i = 0; i < (n*(n+1)/2); i++ ) {
00158         ap_i[i] = ap[i];
00159     }
00160     for( i = 0; i < 2*n; i++ ) {
00161         work_i[i] = work[i];
00162     }
00163     for( i = 0; i < n; i++ ) {
00164         rwork_i[i] = rwork[i];
00165     }
00166 
00167     LAPACKE_cpp_trans( LAPACK_COL_MAJOR, uplo, n, ap_i, ap_r );
00168     info_i = LAPACKE_ctpcon_work( LAPACK_ROW_MAJOR, norm_i, uplo_i, diag_i, n_i,
00169                                   ap_r, &rcond_i, work_i, rwork_i );
00170 
00171     failed = compare_ctpcon( rcond, rcond_i, info, info_i );
00172     if( failed == 0 ) {
00173         printf( "PASSED: row-major middle-level interface to ctpcon\n" );
00174     } else {
00175         printf( "FAILED: row-major middle-level interface to ctpcon\n" );
00176     }
00177 
00178     /* Initialize input data, call the row-major high-level
00179      * interface to LAPACK routine and check the results */
00180     for( i = 0; i < (n*(n+1)/2); i++ ) {
00181         ap_i[i] = ap[i];
00182     }
00183     for( i = 0; i < 2*n; i++ ) {
00184         work_i[i] = work[i];
00185     }
00186     for( i = 0; i < n; i++ ) {
00187         rwork_i[i] = rwork[i];
00188     }
00189 
00190     /* Init row_major arrays */
00191     LAPACKE_cpp_trans( LAPACK_COL_MAJOR, uplo, n, ap_i, ap_r );
00192     info_i = LAPACKE_ctpcon( LAPACK_ROW_MAJOR, norm_i, uplo_i, diag_i, n_i,
00193                              ap_r, &rcond_i );
00194 
00195     failed = compare_ctpcon( rcond, rcond_i, info, info_i );
00196     if( failed == 0 ) {
00197         printf( "PASSED: row-major high-level interface to ctpcon\n" );
00198     } else {
00199         printf( "FAILED: row-major high-level interface to ctpcon\n" );
00200     }
00201 
00202     /* Release memory */
00203     if( ap != NULL ) {
00204         LAPACKE_free( ap );
00205     }
00206     if( ap_i != NULL ) {
00207         LAPACKE_free( ap_i );
00208     }
00209     if( ap_r != NULL ) {
00210         LAPACKE_free( ap_r );
00211     }
00212     if( work != NULL ) {
00213         LAPACKE_free( work );
00214     }
00215     if( work_i != NULL ) {
00216         LAPACKE_free( work_i );
00217     }
00218     if( rwork != NULL ) {
00219         LAPACKE_free( rwork );
00220     }
00221     if( rwork_i != NULL ) {
00222         LAPACKE_free( rwork_i );
00223     }
00224 
00225     return 0;
00226 }
00227 
00228 /* Auxiliary function: ctpcon scalar parameters initialization */
00229 static void init_scalars_ctpcon( char *norm, char *uplo, char *diag,
00230                                  lapack_int *n )
00231 {
00232     *norm = '1';
00233     *uplo = 'L';
00234     *diag = 'N';
00235     *n = 4;
00236 
00237     return;
00238 }
00239 
00240 /* Auxiliary functions: ctpcon array parameters initialization */
00241 static void init_ap( lapack_int size, lapack_complex_float *ap ) {
00242     lapack_int i;
00243     for( i = 0; i < size; i++ ) {
00244         ap[i] = lapack_make_complex_float( 0.0f, 0.0f );
00245     }
00246     ap[0] = lapack_make_complex_float( 4.780000210e+000, 4.559999943e+000 );
00247     ap[1] = lapack_make_complex_float( 2.000000000e+000, -3.000000119e-001 );
00248     ap[2] = lapack_make_complex_float( 2.890000105e+000, -1.340000033e+000 );
00249     ap[3] = lapack_make_complex_float( -1.889999986e+000, 1.149999976e+000 );
00250     ap[4] = lapack_make_complex_float( -4.110000134e+000, 1.250000000e+000 );
00251     ap[5] = lapack_make_complex_float( 2.359999895e+000, -4.250000000e+000 );
00252     ap[6] = lapack_make_complex_float( 3.999999911e-002, -3.690000057e+000 );
00253     ap[7] = lapack_make_complex_float( 4.150000095e+000, 8.000000119e-001 );
00254     ap[8] = lapack_make_complex_float( -1.999999955e-002, 4.600000083e-001 );
00255     ap[9] = lapack_make_complex_float( 3.300000131e-001, -2.599999905e-001 );
00256 }
00257 static void init_work( lapack_int size, lapack_complex_float *work ) {
00258     lapack_int i;
00259     for( i = 0; i < size; i++ ) {
00260         work[i] = lapack_make_complex_float( 0.0f, 0.0f );
00261     }
00262 }
00263 static void init_rwork( lapack_int size, float *rwork ) {
00264     lapack_int i;
00265     for( i = 0; i < size; i++ ) {
00266         rwork[i] = 0;
00267     }
00268 }
00269 
00270 /* Auxiliary function: C interface to ctpcon results check */
00271 /* Return value: 0 - test is passed, non-zero - test is failed */
00272 static int compare_ctpcon( float rcond, float rcond_i, lapack_int info,
00273                            lapack_int info_i )
00274 {
00275     int failed = 0;
00276     failed += compare_floats(rcond,rcond_i);
00277     failed += (info == info_i) ? 0 : 1;
00278     if( info != 0 || info_i != 0 ) {
00279         printf( "info=%d, info_i=%d\n",(int)info,(int)info_i );
00280     }
00281 
00282     return failed;
00283 }


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