From 449093d82414be9879de14d10f6d7253d42d104c Mon Sep 17 00:00:00 2001 From: Christian Heinrich Date: Thu, 2 Aug 2018 17:32:53 +0200 Subject: [PATCH] [SMPI/LB] Add comment noting that an arg must not be 0 --- src/smpi/plugins/sampi_loadbalancer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smpi/plugins/sampi_loadbalancer.cpp b/src/smpi/plugins/sampi_loadbalancer.cpp index a9f81ac230..926ad87ff0 100644 --- a/src/smpi/plugins/sampi_loadbalancer.cpp +++ b/src/smpi/plugins/sampi_loadbalancer.cpp @@ -80,7 +80,7 @@ public: sg_host_t migration_hosts[2] = {cur_host, migrate_to_host}; // Changing this to double[2] ... will cause trouble with parallel_execute, because that fct is trying to call free(). double* comp_amount = new double[2]{0, 0}; - double* comm_amount = new double[4]{0, std::max(args.memory_consumption, 1.0), 0, 0}; + double* comm_amount = new double[4]{0, /*must not be 0*/std::max(args.memory_consumption, 1.0), 0, 0}; xbt_os_timer_t timer = smpi_process()->timer(); xbt_os_threadtimer_start(timer); -- 2.20.1