Skip to content

Commit 20dbfd4

Browse files
authored
Update create_perf_table.py (#339)
1 parent 42a3b03 commit 20dbfd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/create_perf_table.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
task_name = result[0][1]
3939
perf_type = result[0][2]
4040
perf_time = float(result[0][3])
41-
if perf_time < 1.0:
42-
msg = f"Performance time = {perf_time} < 1 second : for {task_type} - {task_name} - {perf_type} \n"
41+
if perf_time < 0.1:
42+
msg = f"Performance time = {perf_time} < 0.1 second : for {task_type} - {task_name} - {perf_type} \n"
4343
raise Exception(msg)
4444
result_tables[perf_type][task_name][task_type] = perf_time
4545

0 commit comments

Comments
 (0)