We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03d6a3a commit fc05d0aCopy full SHA for fc05d0a
scripts/create_perf_table.py
@@ -38,6 +38,9 @@
38
task_name = result[0][1]
39
perf_type = result[0][2]
40
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)
44
result_tables[perf_type][task_name][task_type] = perf_time
45
46
0 commit comments