From 9351d75367187f42b69748fab81ef7ea10e513be Mon Sep 17 00:00:00 2001 From: Mathieu Faverge <mathieu.faverge@inria.fr> Date: Thu, 19 Dec 2019 12:16:48 +0100 Subject: [PATCH] Fix issue #87 by setting the number of threads to the default on the machine --- new-testing/testing_zauxiliary.c | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/new-testing/testing_zauxiliary.c b/new-testing/testing_zauxiliary.c index 16da205d6..cdb6d9b34 100644 --- a/new-testing/testing_zauxiliary.c +++ b/new-testing/testing_zauxiliary.c @@ -42,10 +42,10 @@ static parameter_t parameters[] = { { "nowarmup", "Disable the warmup run to load libraries", -31, PARAM_OPTION, 0, 0, TestValInt, {0}, NULL, pread_int, sprint_int }, { NULL, "Machine parameters", 0, PARAM_OPTION, 0, 0, 0, {0}, NULL, NULL, NULL }, - { "threads", "Number of CPU workers per node", 't', PARAM_OPTION | PARAM_OUTPUT, 1, 7, TestValInt, {1}, NULL, pread_int, sprint_int }, - { "gpus", "Number of GPU workers per node", 'g', PARAM_OPTION | PARAM_OUTPUT, 1, 4, TestValInt, {0}, NULL, pread_int, sprint_int }, - { "P", "Rows (P) in the PxQ process grid", 'P', PARAM_OPTION | PARAM_OUTPUT, 1, 2, TestValInt, {1}, NULL, pread_int, sprint_int }, - { "Q", "Columns (Q) in the PxQ process grid", 'Q', PARAM_OUTPUT, 1, 2, TestValInt, {1}, NULL, pread_int, sprint_int }, + { "threads", "Number of CPU workers per node", 't', PARAM_OPTION | PARAM_OUTPUT, 1, 7, TestValInt, {-1}, NULL, pread_int, sprint_int }, + { "gpus", "Number of GPU workers per node", 'g', PARAM_OPTION | PARAM_OUTPUT, 1, 4, TestValInt, { 0}, NULL, pread_int, sprint_int }, + { "P", "Rows (P) in the PxQ process grid", 'P', PARAM_OPTION | PARAM_OUTPUT, 1, 2, TestValInt, { 1}, NULL, pread_int, sprint_int }, + { "Q", "Columns (Q) in the PxQ process grid", 'Q', PARAM_OUTPUT, 1, 2, TestValInt, { 1}, NULL, pread_int, sprint_int }, { NULL, "Main input parameters", 0, PARAM_OPTION, 0, 0, 0, {0}, NULL, NULL, NULL }, { "op", "Operation to test/time", 'o', PARAM_OPTION | PARAM_OUTPUT, 1, 1, TestString, {0}, NULL, pread_string, sprint_string }, @@ -506,6 +506,13 @@ int main (int argc, char **argv) { CHAMELEON_Init( ncores, ngpus ); + /* Set ncores to the right value */ + if ( ncores == -1 ) { + parameter_t *param; + param = parameters_get( 't' ); + param->value.ival = CHAMELEON_GetThreadNbr(); + } + /* Binds the right function to be called and builds the parameters combinations */ test = testing_gettest( argv[0], func_name ); free(func_name); -- GitLab