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 42a3b03 commit 20dbfd4Copy full SHA for 20dbfd4
scripts/create_perf_table.py
@@ -38,8 +38,8 @@
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"
+ if perf_time < 0.1:
+ msg = f"Performance time = {perf_time} < 0.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
0 commit comments