Skip to content

Commit 6be7380

Browse files
[integ-tests-framework] When generating launch time and performance reports, separate the report according to instance type
This commit makes the trend even clearer, because we won't be confused by sudden changes because we test some instance types (e.g. p6-b200) temporarily
1 parent bc081b9 commit 6be7380

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration-tests/reports_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ def generate_performance_report(reports_output_dir):
255255
)
256256
all_items.sort(key=lambda x: x["timestamp"]["N"], reverse=True)
257257
items_by_name = defaultdict(list)
258-
category_names = [("name", "S"), ("mpi_variation", "S"), ("num_instances", "N")]
258+
category_names = [("name", "S"), ("mpi_variation", "S"), ("num_instances", "N"), ("instance", "S")]
259259
for item in all_items:
260260
keys = []
261261
for category_name, value_type in category_names:

0 commit comments

Comments
 (0)