From 44c2c42c7ad0cd8d2d3c61fdb839a46ef823a8a1 Mon Sep 17 00:00:00 2001 From: "Michael Zikeli (at CIP3)" <michael.zikeli@fau.de> Date: Mon, 17 Mar 2025 09:24:57 +0100 Subject: [PATCH] Revert "[ci skip] Give an indication how close the computed setup is on the maximal memory usage." This reverts commit c1378dc08bd82bf44d2b465b5af87040fa468c22. --- python/waLBerla/tools/config/simulate_strong_scaling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/waLBerla/tools/config/simulate_strong_scaling.py b/python/waLBerla/tools/config/simulate_strong_scaling.py index 84426ddf2..e83577995 100644 --- a/python/waLBerla/tools/config/simulate_strong_scaling.py +++ b/python/waLBerla/tools/config/simulate_strong_scaling.py @@ -36,7 +36,7 @@ def scaling_dry_run( blocks = get_best_3d_decomposition(processes) cells_per_block = get_best_3d_decomposition(n, descending=True) - print(f"{nodes:4d} nodes: {blocks[0]:3d} x {blocks[1]:3d} x {blocks[2]:3d} blocks of {cells_per_block[0]:3d} x {cells_per_block[1]:3d} x {cells_per_block[2]:3d} cells each. (Total: [{prod(cells_per_block):.3e}/{N_max:.3e}])") + print(f"{nodes:4d} nodes: {blocks[0]:3d} x {blocks[1]:3d} x {blocks[2]:3d} blocks of {cells_per_block[0]:3d} x {cells_per_block[1]:3d} x {cells_per_block[2]:3d} cells each.") if not include_max_nodes: print(f"{max_number_of_nodes:3d} nodes: Are excluded for this configuration.") -- GitLab