aboutsummaryrefslogtreecommitdiff
path: root/Tools/PerformanceTests/functions_perftest.py
diff options
context:
space:
mode:
authorGravatar MaxThevenet <mthevenet@lbl.gov> 2020-08-17 15:44:04 +0200
committerGravatar GitHub <noreply@github.com> 2020-08-17 06:44:04 -0700
commitf6059b26eda595b4c17a56be8a70cb6de33039d9 (patch)
treefa53e6f76e1a916df488ab1f9574857681255182 /Tools/PerformanceTests/functions_perftest.py
parent8eee44a7084449c2a133f8a62ca51b3512976540 (diff)
downloadWarpX-f6059b26eda595b4c17a56be8a70cb6de33039d9.tar.gz
WarpX-f6059b26eda595b4c17a56be8a70cb6de33039d9.tar.zst
WarpX-f6059b26eda595b4c17a56be8a70cb6de33039d9.zip
fix performance IO automated test (#1248)
Diffstat (limited to '')
-rw-r--r--Tools/PerformanceTests/functions_perftest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/PerformanceTests/functions_perftest.py b/Tools/PerformanceTests/functions_perftest.py
index cea2b6107..6af4189b6 100644
--- a/Tools/PerformanceTests/functions_perftest.py
+++ b/Tools/PerformanceTests/functions_perftest.py
@@ -191,7 +191,7 @@ def extract_dataframe(filename, n_steps):
line_match_looptime = re.search('\nWarpX::Evolve().*', search_area)
time_wo_initialization = float(line_match_looptime.group(0).split()[3])
# New, might break something
- line_match_WritePlotFile = re.search('\nFlushFormatPlotfile::WriteToFile().*', search_area)
+ line_match_WritePlotFile = re.search('\nDiagnostics::FilterComputePackFlush().*', search_area)
if line_match_WritePlotFile is not None:
time_WritePlotFile = float(line_match_WritePlotFile.group(0).split()[3])
else: