From 44e8c79361441b374e2d747cd81b408343fe0813 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cezary=20Skrzy=C5=84ski?= Date: Mon, 6 Jun 2022 13:47:08 +0200 Subject: [PATCH] #1835: use more sensible weight values --- src/vt/vrt/collection/balance/model/comm_model.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vt/vrt/collection/balance/model/comm_model.h b/src/vt/vrt/collection/balance/model/comm_model.h index 7bd3ec9ee4..c65c53832b 100644 --- a/src/vt/vrt/collection/balance/model/comm_model.h +++ b/src/vt/vrt/collection/balance/model/comm_model.h @@ -78,8 +78,8 @@ struct CommModel : public ComposedModel { // observer pointer to the underlying comm data std::unordered_map const* proc_comm_; - TimeType per_msg_weight_ = 1.0; /**< Cost per message */ - TimeType per_byte_weight_ = 1.0; /**< Cost per bytes */ + TimeType per_msg_weight_ = 0.001; + TimeType per_byte_weight_ = 0.000001; }; }}}} // namespace vt::vrt::collection::balance