[AMD][DI][CI] 1/N: MI355X disaggregation nightly benchmark (#29084)

Co-authored-by: Michael <13900043+michaelzhang-ai@users.noreply.github.com>
Co-authored-by: bingxche <bingxche@amd.com>
Co-authored-by: yctseng0211 <yctseng@amd.com>
This commit is contained in:
Zhaoyi Li
2026-06-25 19:21:28 -07:00
committed by GitHub
co-authored by Michael bingxche yctseng0211
parent cfc0a0e0e0
commit 413aeac0c9
10 changed files with 816 additions and 9 deletions
+7 -1
View File
@@ -113,7 +113,13 @@ def main():
for r in results
]
print("## GB200 Nightly Benchmark Results\n")
hw_label = "/".join(sorted({r["hw"].upper() for r in results}))
if hw_label == "GB200":
# NVIDIA GB200 nightly: keep the original hardcoded title untouched.
print("## GB200 Nightly Benchmark Results\n")
else:
# AMD (e.g. MI355X) nightly: derive the title from the result hardware.
print(f"## {hw_label} Nightly Benchmark Results\n")
print(tabulate(rows, headers=HEADERS, tablefmt="github"))
print()