From c4a1eabdf80ae6cb4e29bc144478354e9115d4d3 Mon Sep 17 00:00:00 2001 From: Matthieu Schaller <matthieu.schaller@durham.ac.uk> Date: Wed, 6 Apr 2016 14:13:16 +0100 Subject: [PATCH] Be verbose about changes in split sizes. --- src/space.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/space.c b/src/space.c index 4524d376e4..ca93490cb4 100644 --- a/src/space.c +++ b/src/space.c @@ -1338,6 +1338,9 @@ void space_init(struct space *s, const struct swift_params *params, space_maxsize = parser_get_param_int(params, "Scheduler:cell_max_size"); space_subsize = parser_get_param_int(params, "Scheduler:cell_sub_size"); space_splitsize = parser_get_param_int(params, "Scheduler:cell_split_size"); + if(verbose) + message("max_size set to %d, sub_size set to %d, split_size set to %d", + space_maxsize, space_subsize, space_splitsize); /* Check that we have enough cells */ if (s->cell_min * 3 > dim[0] || s->cell_min * 3 > dim[1] || -- GitLab