diff --git a/python/waLBerla/tools/config/simulate_strong_scaling.py b/python/waLBerla/tools/config/simulate_strong_scaling.py index 84426ddf22d7e68df48e5deca1b474ea58e7a8d6..e835779957b7c92dda4a3951f1411e5239178452 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.")