Skip to content

Commit

Permalink
#558: add space
Browse files Browse the repository at this point in the history
  • Loading branch information
cwschilly committed Jan 13, 2025
1 parent 6a8c2fb commit 84f9dba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lbaf/Applications/LBAF_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -670,13 +670,13 @@ def run(self, cfg=None, cfg_dir=None):
w_max_file.write(f"{w_stats.get_maximum()}")

for r in initial_phase.get_ranks():
if node:=r.get_node() is not None:
if node := r.get_node() is not None:
print(r, id(r), node.get_max_memory_usage(initial_phase))

if rebalanced_phase:
print()
for r in rebalanced_phase.get_ranks():
if node:=r.get_node() is not None:
if node := r.get_node() is not None:
print(r, id(r), node.get_max_memory_usage(rebalanced_phase))

# If this point is reached everything went fine
Expand Down

0 comments on commit 84f9dba

Please sign in to comment.