Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 6c30f7cf authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

Change some default parameters

parent 8e233047
No related branches found
No related tags found
1 merge request!171Change default parameters and add functionalities to the descriptor interface
...@@ -59,8 +59,8 @@ CHAM_context_t *chameleon_context_create() ...@@ -59,8 +59,8 @@ CHAM_context_t *chameleon_context_create()
/* These initializations are just in case the user /* These initializations are just in case the user
disables autotuning and does not set nb and ib */ disables autotuning and does not set nb and ib */
chamctxt->nb = 128; chamctxt->nb = 320;
chamctxt->ib = 32; chamctxt->ib = 48;
chamctxt->rhblock = 4; chamctxt->rhblock = 4;
chamctxt->lookahead = 3; chamctxt->lookahead = 3;
...@@ -69,7 +69,7 @@ CHAM_context_t *chameleon_context_create() ...@@ -69,7 +69,7 @@ CHAM_context_t *chameleon_context_create()
chamctxt->nthreads_per_worker= 1; chamctxt->nthreads_per_worker= 1;
chamctxt->warnings_enabled = CHAMELEON_TRUE; chamctxt->warnings_enabled = CHAMELEON_TRUE;
chamctxt->autotuning_enabled = CHAMELEON_TRUE; chamctxt->autotuning_enabled = CHAMELEON_FALSE;
chamctxt->parallel_enabled = CHAMELEON_FALSE; chamctxt->parallel_enabled = CHAMELEON_FALSE;
chamctxt->profiling_enabled = CHAMELEON_FALSE; chamctxt->profiling_enabled = CHAMELEON_FALSE;
chamctxt->progress_enabled = CHAMELEON_FALSE; chamctxt->progress_enabled = CHAMELEON_FALSE;
......
...@@ -30,8 +30,8 @@ ...@@ -30,8 +30,8 @@
/* Take 24 bits for the tile id, and 7 bits for descriptor id. /* 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) */ These values can be changed through the call CHAMELEON_user_tag_size(int tag_width, int tag_sep) */
#define TAG_WIDTH_MIN 20 #define TAG_WIDTH_MIN 20
static int tag_width = 31; static int tag_width = 64;
static int tag_sep = 20; static int tag_sep = 50;
static int _tag_mpi_initialized_ = 0; static int _tag_mpi_initialized_ = 0;
static inline int static inline int
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment