Skip to content
Snippets Groups Projects
Commit 71553cf7 authored by Richard Berger's avatar Richard Berger
Browse files

Fix PyLammps regression after output.cpp change

parent 6d0a2286
No related branches found
No related tags found
No related merge requests found
......@@ -556,9 +556,10 @@ def get_thermo_data(output):
runs = []
columns = []
in_run = False
current_run = {}
for line in lines:
if line.startswith("Memory usage per processor"):
if line.startswith("Per MPI rank memory allocation"):
in_run = True
elif in_run and len(columns) == 0:
# first line after memory usage are column names
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment