From 0dc4bcb20312db5676f87285d9244e7b34918b33 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Fri, 3 May 2024 11:52:59 +0200 Subject: [PATCH] Format utlilisation for larger FPGA as well --- common/kernel/design_utils.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/kernel/design_utils.cc b/common/kernel/design_utils.cc index f52cc304..cd7063cd 100644 --- a/common/kernel/design_utils.cc +++ b/common/kernel/design_utils.cc @@ -44,7 +44,7 @@ void print_utilisation(const Context *ctx) for (auto type : available_types) { IdString type_id = type.first; int used_bels = get_or_default(used_types, type.first, 0); - log_info("\t%20s: %5d/%5d %5d%%\n", type_id.c_str(ctx), used_bels, type.second, 100 * used_bels / type.second); + log_info("\t%20s: %7d/%7d %5d%%\n", type_id.c_str(ctx), used_bels, type.second, 100 * used_bels / type.second); } log_break(); }