From 2b7cc510bd4b617cac21bb6cd36c4fb2dc8f7abd Mon Sep 17 00:00:00 2001 From: Raphael Boucherie <raphael.boucherie@inria.fr> Date: Mon, 22 May 2017 14:44:44 +0200 Subject: [PATCH] added the auxiliary for hqr and systolic --- testing/testing_zauxiliary.c | 10 ++++++++-- testing/testing_zauxiliary.h | 2 ++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/testing/testing_zauxiliary.c b/testing/testing_zauxiliary.c index e27824b97..3b0b92075 100644 --- a/testing/testing_zauxiliary.c +++ b/testing/testing_zauxiliary.c @@ -185,8 +185,8 @@ int main (int argc, char **argv) else*/ MORSE_Init( ncores, ngpus); MORSE_Disable(MORSE_AUTOTUNING); - MORSE_Set(MORSE_TILE_SIZE, 320 ); - MORSE_Set(MORSE_INNER_BLOCK_SIZE, 48 ); + MORSE_Set(MORSE_TILE_SIZE, 20 ); + MORSE_Set(MORSE_INNER_BLOCK_SIZE, 7 ); argc -= 4; argv += 4; @@ -251,6 +251,12 @@ int main (int argc, char **argv) else if ( strcmp(func, "GELS_PARAM") == 0 ) { info += testing_zgels_param( argc, argv ); } + else if ( strcmp(func, "GELS_HQR") == 0 ) { + info += testing_zgels_hqr( argc, argv ); + } + else if ( strcmp(func, "GELS_SYSTOLIC") == 0 ) { + info += testing_zgels_systolic( argc, argv ); + } /* else if ( strcmp(func, "GESV") == 0 ) { */ /* info += testing_zgesv( argc, argv ); */ /* } */ diff --git a/testing/testing_zauxiliary.h b/testing/testing_zauxiliary.h index dcd828513..e652e085a 100644 --- a/testing/testing_zauxiliary.h +++ b/testing/testing_zauxiliary.h @@ -93,6 +93,8 @@ int testing_zgeadd(int argc, char **argv); int testing_zposv(int argc, char **argv); int testing_zgels(int argc, char **argv); int testing_zgels_param(int argc, char **argv); +int testing_zgels_hqr(int argc, char **argv); +int testing_zgels_systolic(int argc, char **argv); int testing_zgesv(int argc, char **argv); int testing_zgesv_incpiv(int argc, char **argv); -- GitLab