Skip to content

Commit e2e034d

Browse files
update the summary excel
1 parent eda75dd commit e2e034d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/scripts/op_perf_comparison.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ def write_to_github_summary(content):
4545
def format_parameters(record):
4646
params = []
4747
for key, value in record.items():
48-
if key not in ['case_name', 'op_name', 'datatype', 'time_xpu_file', 'time_baseline_file', 'difference', 'change', 'E2E total time(us)', 'E2E forward time(us)']:
48+
if key not in ['case_name', 'op_name', 'datatype',
49+
'profile_time_xpu', 'profile_time_base', 'profile_diff', 'profile_change',
50+
'e2e_time_xpu', 'e2e_time_base', 'e2e_diff', 'e2e_change',
51+
'E2E total time(us)', 'E2E forward time(us)']:
4952
if value != "NULL":
5053
params.append(f"{key}: {value}")
5154
return "<br>".join(params)

0 commit comments

Comments
 (0)