From 6c30f7cfc47553e7f20ebf03802015ec027b7dfe Mon Sep 17 00:00:00 2001 From: Mathieu Faverge <mathieu.faverge@inria.fr> Date: Fri, 4 Oct 2019 20:21:42 +0200 Subject: [PATCH] Change some default parameters --- control/context.c | 6 +++--- runtime/starpu/control/runtime_descriptor.c | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/control/context.c b/control/context.c index d57b0f1e6..4e0a6672b 100644 --- a/control/context.c +++ b/control/context.c @@ -59,8 +59,8 @@ CHAM_context_t *chameleon_context_create() /* These initializations are just in case the user disables autotuning and does not set nb and ib */ - chamctxt->nb = 128; - chamctxt->ib = 32; + chamctxt->nb = 320; + chamctxt->ib = 48; chamctxt->rhblock = 4; chamctxt->lookahead = 3; @@ -69,7 +69,7 @@ CHAM_context_t *chameleon_context_create() chamctxt->nthreads_per_worker= 1; chamctxt->warnings_enabled = CHAMELEON_TRUE; - chamctxt->autotuning_enabled = CHAMELEON_TRUE; + chamctxt->autotuning_enabled = CHAMELEON_FALSE; chamctxt->parallel_enabled = CHAMELEON_FALSE; chamctxt->profiling_enabled = CHAMELEON_FALSE; chamctxt->progress_enabled = CHAMELEON_FALSE; diff --git a/runtime/starpu/control/runtime_descriptor.c b/runtime/starpu/control/runtime_descriptor.c index 9c837e5b4..24ae67e66 100644 --- a/runtime/starpu/control/runtime_descriptor.c +++ b/runtime/starpu/control/runtime_descriptor.c @@ -30,8 +30,8 @@ /* Take 24 bits for the tile id, and 7 bits for descriptor id. These values can be changed through the call CHAMELEON_user_tag_size(int tag_width, int tag_sep) */ #define TAG_WIDTH_MIN 20 -static int tag_width = 31; -static int tag_sep = 20; +static int tag_width = 64; +static int tag_sep = 50; static int _tag_mpi_initialized_ = 0; static inline int -- GitLab