From b0416ea3500facc545b3400d5ea390e81201c301 Mon Sep 17 00:00:00 2001 From: xiaosuGW Date: Tue, 5 Oct 2021 12:51:47 -0400 Subject: [PATCH] update parse_get_avg.py --- runtime/tests/parse_get_avg.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/runtime/tests/parse_get_avg.py b/runtime/tests/parse_get_avg.py index 4144aaf..577d270 100644 --- a/runtime/tests/parse_get_avg.py +++ b/runtime/tests/parse_get_avg.py @@ -26,11 +26,11 @@ def parse_file(file_dir): fo = open(file_dir, "r+") next(fo) for line in fo: - if "module " in line: + #if "module " in line: #jump two lines - next(fo) - continue - if "min" in line or "miss" in line or "meet" in line: + # next(fo) + # continue + if "total_time" in line or "min" in line or "miss" in line or "meet" in line or "time " in line or "scheduling count" in line: continue t = line.split(",") id = t[0]