From debfb49ae6124ead67c31d3a2062e25b5cc1834f Mon Sep 17 00:00:00 2001 From: Mathieu Faverge <mathieu.faverge@inria.fr> Date: Tue, 26 Nov 2019 17:35:06 +0100 Subject: [PATCH] Set gflops to -1 if computations failed as mentioned in !179 --- new-testing/testing_zgeadd.c | 2 +- new-testing/testing_zgelqf.c | 2 +- new-testing/testing_zgelqf_hqr.c | 2 +- new-testing/testing_zgels.c | 2 +- new-testing/testing_zgels_hqr.c | 2 +- new-testing/testing_zgemm.c | 2 +- new-testing/testing_zgeqrf.c | 2 +- new-testing/testing_zgeqrf_hqr.c | 2 +- new-testing/testing_zgeqrs.c | 2 +- new-testing/testing_zgesv.c | 2 +- new-testing/testing_zgetrf.c | 2 +- new-testing/testing_zgetrs.c | 2 +- new-testing/testing_zhemm.c | 2 +- new-testing/testing_zher2k.c | 2 +- new-testing/testing_zherk.c | 2 +- new-testing/testing_zlacpy.c | 2 +- new-testing/testing_zlange.c | 2 +- new-testing/testing_zlanhe.c | 2 +- new-testing/testing_zlansy.c | 2 +- new-testing/testing_zlantr.c | 2 +- new-testing/testing_zlascal.c | 2 +- new-testing/testing_zlauum.c | 2 +- new-testing/testing_zposv.c | 2 +- new-testing/testing_zpotrf.c | 2 +- new-testing/testing_zpotri.c | 2 +- new-testing/testing_zpotrs.c | 2 +- new-testing/testing_zsymm.c | 2 +- new-testing/testing_zsyr2k.c | 2 +- new-testing/testing_zsyrk.c | 2 +- new-testing/testing_zsysv.c | 2 +- new-testing/testing_zsytrf.c | 2 +- new-testing/testing_zsytrs.c | 2 +- new-testing/testing_ztradd.c | 2 +- new-testing/testing_ztrmm.c | 2 +- new-testing/testing_ztrsm.c | 2 +- new-testing/testing_ztrtri.c | 2 +- new-testing/testing_zunglq.c | 2 +- new-testing/testing_zunglq_hqr.c | 2 +- new-testing/testing_zungqr.c | 2 +- new-testing/testing_zungqr_hqr.c | 2 +- new-testing/testing_zunmlq.c | 2 +- new-testing/testing_zunmlq_hqr.c | 2 +- new-testing/testing_zunmqr.c | 2 +- new-testing/testing_zunmqr_hqr.c | 2 +- 44 files changed, 44 insertions(+), 44 deletions(-) diff --git a/new-testing/testing_zgeadd.c b/new-testing/testing_zgeadd.c index 41eef6dc3..bf41b265e 100644 --- a/new-testing/testing_zgeadd.c +++ b/new-testing/testing_zgeadd.c @@ -88,7 +88,7 @@ testing_zgeadd( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Check the solution */ if ( check ) { diff --git a/new-testing/testing_zgelqf.c b/new-testing/testing_zgelqf.c index 98aea232c..d3b3eb9c3 100644 --- a/new-testing/testing_zgelqf.c +++ b/new-testing/testing_zgelqf.c @@ -65,7 +65,7 @@ testing_zgelqf( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation and orthogonality */ if ( check ) { diff --git a/new-testing/testing_zgelqf_hqr.c b/new-testing/testing_zgelqf_hqr.c index b5f81b0f5..8ed1cccfb 100644 --- a/new-testing/testing_zgelqf_hqr.c +++ b/new-testing/testing_zgelqf_hqr.c @@ -73,7 +73,7 @@ testing_zgelqf_hqr( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation and orthogonality */ if ( check ) { diff --git a/new-testing/testing_zgels.c b/new-testing/testing_zgels.c index 2813ffe34..e8e5932ae 100644 --- a/new-testing/testing_zgels.c +++ b/new-testing/testing_zgels.c @@ -84,7 +84,7 @@ testing_zgels( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); if ( check ) { CHAM_desc_t *descA0, *descB; diff --git a/new-testing/testing_zgels_hqr.c b/new-testing/testing_zgels_hqr.c index 30d9aa670..34dbdeb4f 100644 --- a/new-testing/testing_zgels_hqr.c +++ b/new-testing/testing_zgels_hqr.c @@ -90,7 +90,7 @@ testing_zgels_hqr( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); if ( check ) { CHAM_desc_t *descA0, *descB; diff --git a/new-testing/testing_zgemm.c b/new-testing/testing_zgemm.c index 129115404..5b41ffb32 100644 --- a/new-testing/testing_zgemm.c +++ b/new-testing/testing_zgemm.c @@ -90,7 +90,7 @@ testing_zgemm( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Check the solution */ if ( check ) { diff --git a/new-testing/testing_zgeqrf.c b/new-testing/testing_zgeqrf.c index ae74dd91c..ad08ca8f7 100644 --- a/new-testing/testing_zgeqrf.c +++ b/new-testing/testing_zgeqrf.c @@ -65,7 +65,7 @@ testing_zgeqrf( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation and orthogonality */ if ( check ) { diff --git a/new-testing/testing_zgeqrf_hqr.c b/new-testing/testing_zgeqrf_hqr.c index c485a5dcc..a244facc4 100644 --- a/new-testing/testing_zgeqrf_hqr.c +++ b/new-testing/testing_zgeqrf_hqr.c @@ -73,7 +73,7 @@ testing_zgeqrf_hqr( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation and orthogonality */ if ( check ) { diff --git a/new-testing/testing_zgeqrs.c b/new-testing/testing_zgeqrs.c index 4af8bfeea..899701e2a 100644 --- a/new-testing/testing_zgeqrs.c +++ b/new-testing/testing_zgeqrs.c @@ -81,7 +81,7 @@ testing_zgeqrs( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation, orthogonality and residue */ if ( check ) { diff --git a/new-testing/testing_zgesv.c b/new-testing/testing_zgesv.c index c97e2f2b2..c3731f1d7 100644 --- a/new-testing/testing_zgesv.c +++ b/new-testing/testing_zgesv.c @@ -65,7 +65,7 @@ testing_zgesv( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation and residue */ if ( check ) { diff --git a/new-testing/testing_zgetrf.c b/new-testing/testing_zgetrf.c index 8bedc058d..68491ba58 100644 --- a/new-testing/testing_zgetrf.c +++ b/new-testing/testing_zgetrf.c @@ -53,7 +53,7 @@ testing_zgetrf( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); fprintf( stdout, "hres = %d\n", hres ); diff --git a/new-testing/testing_zgetrs.c b/new-testing/testing_zgetrs.c index ce9fa2bf3..b773d9ddf 100644 --- a/new-testing/testing_zgetrs.c +++ b/new-testing/testing_zgetrs.c @@ -62,7 +62,7 @@ testing_zgetrs( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation and residue */ if ( check ) { diff --git a/new-testing/testing_zhemm.c b/new-testing/testing_zhemm.c index b08ea7f9d..8a710cce3 100644 --- a/new-testing/testing_zhemm.c +++ b/new-testing/testing_zhemm.c @@ -81,7 +81,7 @@ testing_zhemm( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the solution */ if ( check ) { diff --git a/new-testing/testing_zher2k.c b/new-testing/testing_zher2k.c index 470fa1082..874c6f3b3 100644 --- a/new-testing/testing_zher2k.c +++ b/new-testing/testing_zher2k.c @@ -83,7 +83,7 @@ testing_zher2k( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Check the solution */ if ( check ) { diff --git a/new-testing/testing_zherk.c b/new-testing/testing_zherk.c index dc28ac8db..e4a6035fb 100644 --- a/new-testing/testing_zherk.c +++ b/new-testing/testing_zherk.c @@ -79,7 +79,7 @@ testing_zherk( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the solution */ if ( check ) { diff --git a/new-testing/testing_zlacpy.c b/new-testing/testing_zlacpy.c index 705ad4e19..a6119bf6e 100644 --- a/new-testing/testing_zlacpy.c +++ b/new-testing/testing_zlacpy.c @@ -90,7 +90,7 @@ testing_zlacpy( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks their differences */ if ( check ) { diff --git a/new-testing/testing_zlange.c b/new-testing/testing_zlange.c index 1839f3e8a..d897aa28e 100644 --- a/new-testing/testing_zlange.c +++ b/new-testing/testing_zlange.c @@ -82,7 +82,7 @@ testing_zlange( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the solution */ if ( check ) { diff --git a/new-testing/testing_zlanhe.c b/new-testing/testing_zlanhe.c index 11cae1848..8d30f6103 100644 --- a/new-testing/testing_zlanhe.c +++ b/new-testing/testing_zlanhe.c @@ -83,7 +83,7 @@ testing_zlanhe( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the solution */ if ( check ) { diff --git a/new-testing/testing_zlansy.c b/new-testing/testing_zlansy.c index c9d310fb2..98885994a 100644 --- a/new-testing/testing_zlansy.c +++ b/new-testing/testing_zlansy.c @@ -83,7 +83,7 @@ testing_zlansy( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the solution */ if ( check ) { diff --git a/new-testing/testing_zlantr.c b/new-testing/testing_zlantr.c index cb8962c96..bee20a0f8 100644 --- a/new-testing/testing_zlantr.c +++ b/new-testing/testing_zlantr.c @@ -83,7 +83,7 @@ testing_zlantr( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the solution */ if ( check ) { diff --git a/new-testing/testing_zlascal.c b/new-testing/testing_zlascal.c index f3cd07a70..86b0373a3 100644 --- a/new-testing/testing_zlascal.c +++ b/new-testing/testing_zlascal.c @@ -80,7 +80,7 @@ testing_zlascal( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the solution */ if ( check ) { diff --git a/new-testing/testing_zlauum.c b/new-testing/testing_zlauum.c index 0f92f5f7b..db3d0fe39 100644 --- a/new-testing/testing_zlauum.c +++ b/new-testing/testing_zlauum.c @@ -60,7 +60,7 @@ testing_zlauum( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); if ( check ) { CHAM_desc_t *descA0 = CHAMELEON_Desc_Copy( descA, NULL ); diff --git a/new-testing/testing_zposv.c b/new-testing/testing_zposv.c index 10094e322..b34991726 100644 --- a/new-testing/testing_zposv.c +++ b/new-testing/testing_zposv.c @@ -66,7 +66,7 @@ testing_zposv( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation and residue */ if ( check ) { diff --git a/new-testing/testing_zpotrf.c b/new-testing/testing_zpotrf.c index 11b0c45b2..2b930b49d 100644 --- a/new-testing/testing_zpotrf.c +++ b/new-testing/testing_zpotrf.c @@ -53,7 +53,7 @@ testing_zpotrf( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation and residue */ if ( check ) { diff --git a/new-testing/testing_zpotri.c b/new-testing/testing_zpotri.c index f4c269fd7..c56b67eea 100644 --- a/new-testing/testing_zpotri.c +++ b/new-testing/testing_zpotri.c @@ -58,7 +58,7 @@ testing_zpotri( run_arg_list_t *args, int check ) gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Check the inverse */ if ( check ) { diff --git a/new-testing/testing_zpotrs.c b/new-testing/testing_zpotrs.c index 9bee6d2ec..ba3f104fc 100644 --- a/new-testing/testing_zpotrs.c +++ b/new-testing/testing_zpotrs.c @@ -63,7 +63,7 @@ testing_zpotrs( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation and residue */ if ( check ) { diff --git a/new-testing/testing_zsymm.c b/new-testing/testing_zsymm.c index dd72d9c79..c15b2bbe6 100644 --- a/new-testing/testing_zsymm.c +++ b/new-testing/testing_zsymm.c @@ -81,7 +81,7 @@ testing_zsymm( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the solution */ if ( check ) { diff --git a/new-testing/testing_zsyr2k.c b/new-testing/testing_zsyr2k.c index 473b555ba..cf3ace77d 100644 --- a/new-testing/testing_zsyr2k.c +++ b/new-testing/testing_zsyr2k.c @@ -83,7 +83,7 @@ testing_zsyr2k( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Check the solution */ if ( check ) { diff --git a/new-testing/testing_zsyrk.c b/new-testing/testing_zsyrk.c index a9429ebc3..34a181391 100644 --- a/new-testing/testing_zsyrk.c +++ b/new-testing/testing_zsyrk.c @@ -78,7 +78,7 @@ testing_zsyrk( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the solution */ if ( check ) { diff --git a/new-testing/testing_zsysv.c b/new-testing/testing_zsysv.c index f7358abb0..c4db9afd9 100644 --- a/new-testing/testing_zsysv.c +++ b/new-testing/testing_zsysv.c @@ -66,7 +66,7 @@ testing_zsysv( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation and residue */ if ( check ) { diff --git a/new-testing/testing_zsytrf.c b/new-testing/testing_zsytrf.c index 6252f929c..77c83064c 100644 --- a/new-testing/testing_zsytrf.c +++ b/new-testing/testing_zsytrf.c @@ -53,7 +53,7 @@ testing_zsytrf( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation and residue */ if ( check ) { diff --git a/new-testing/testing_zsytrs.c b/new-testing/testing_zsytrs.c index 6944b92c3..129903ecb 100644 --- a/new-testing/testing_zsytrs.c +++ b/new-testing/testing_zsytrs.c @@ -63,7 +63,7 @@ testing_zsytrs( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation and residue */ if ( check ) { diff --git a/new-testing/testing_ztradd.c b/new-testing/testing_ztradd.c index 4fbd11f00..758b4dad6 100644 --- a/new-testing/testing_ztradd.c +++ b/new-testing/testing_ztradd.c @@ -118,7 +118,7 @@ testing_ztradd( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the solution */ if ( check ) { diff --git a/new-testing/testing_ztrmm.c b/new-testing/testing_ztrmm.c index 060bbae0d..1ef480dd6 100644 --- a/new-testing/testing_ztrmm.c +++ b/new-testing/testing_ztrmm.c @@ -76,7 +76,7 @@ testing_ztrmm( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the solution */ if ( check ) { diff --git a/new-testing/testing_ztrsm.c b/new-testing/testing_ztrsm.c index 3560e1fb1..3922d156f 100644 --- a/new-testing/testing_ztrsm.c +++ b/new-testing/testing_ztrsm.c @@ -77,7 +77,7 @@ testing_ztrsm( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the solution */ if ( check ) { diff --git a/new-testing/testing_ztrtri.c b/new-testing/testing_ztrtri.c index 34eb2092a..4eccb1b03 100644 --- a/new-testing/testing_ztrtri.c +++ b/new-testing/testing_ztrtri.c @@ -54,7 +54,7 @@ testing_ztrtri( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the inverse */ if ( check ) { diff --git a/new-testing/testing_zunglq.c b/new-testing/testing_zunglq.c index f821da810..bfd9417c1 100644 --- a/new-testing/testing_zunglq.c +++ b/new-testing/testing_zunglq.c @@ -76,7 +76,7 @@ testing_zunglq( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation and orthogonality */ if ( check ) { diff --git a/new-testing/testing_zunglq_hqr.c b/new-testing/testing_zunglq_hqr.c index 7051bcbc9..f9e1406d5 100644 --- a/new-testing/testing_zunglq_hqr.c +++ b/new-testing/testing_zunglq_hqr.c @@ -84,7 +84,7 @@ testing_zunglq_hqr( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation and orthogonality */ if ( check ) { diff --git a/new-testing/testing_zungqr.c b/new-testing/testing_zungqr.c index 7d177fcf0..51097db05 100644 --- a/new-testing/testing_zungqr.c +++ b/new-testing/testing_zungqr.c @@ -76,7 +76,7 @@ testing_zungqr( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation and orthogonality */ if ( check ) { diff --git a/new-testing/testing_zungqr_hqr.c b/new-testing/testing_zungqr_hqr.c index 9735bdf21..e31c224cb 100644 --- a/new-testing/testing_zungqr_hqr.c +++ b/new-testing/testing_zungqr_hqr.c @@ -84,7 +84,7 @@ testing_zungqr_hqr( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation and orthogonality */ if ( check ) { diff --git a/new-testing/testing_zunmlq.c b/new-testing/testing_zunmlq.c index 3557367e4..ef8fcbeeb 100644 --- a/new-testing/testing_zunmlq.c +++ b/new-testing/testing_zunmlq.c @@ -82,7 +82,7 @@ testing_zunmlq( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation and orthogonality */ if ( check ) { diff --git a/new-testing/testing_zunmlq_hqr.c b/new-testing/testing_zunmlq_hqr.c index b556c8cba..2c6dac1a3 100644 --- a/new-testing/testing_zunmlq_hqr.c +++ b/new-testing/testing_zunmlq_hqr.c @@ -90,7 +90,7 @@ testing_zunmlq_hqr( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation and orthogonality */ if ( check ) { diff --git a/new-testing/testing_zunmqr.c b/new-testing/testing_zunmqr.c index 11bca5f13..88635dd90 100644 --- a/new-testing/testing_zunmqr.c +++ b/new-testing/testing_zunmqr.c @@ -82,7 +82,7 @@ testing_zunmqr( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation and orthogonality */ if ( check ) { diff --git a/new-testing/testing_zunmqr_hqr.c b/new-testing/testing_zunmqr_hqr.c index ba5bde274..cf56de1a9 100644 --- a/new-testing/testing_zunmqr_hqr.c +++ b/new-testing/testing_zunmqr_hqr.c @@ -90,7 +90,7 @@ testing_zunmqr_hqr( run_arg_list_t *args, int check ) STOP_TIMING( t ); gflops = flops * 1.e-9 / t; run_arg_add_fixdbl( args, "time", t ); - run_arg_add_fixdbl( args, "gflops", gflops ); + run_arg_add_fixdbl( args, "gflops", ( hres == CHAMELEON_SUCCESS ) ? gflops : -1. ); /* Checks the factorisation and orthogonality */ if ( check ) { -- GitLab