Skip to content

Commit fc05d0a

Browse files
authored
Check perf time < 1 sec (#323)
1 parent 03d6a3a commit fc05d0a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scripts/create_perf_table.py

+3
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@
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"
43+
raise Exception(msg)
4144
result_tables[perf_type][task_name][task_type] = perf_time
4245

4346

0 commit comments

Comments
 (0)