Re-add rhel8 roofline binaries (#122)

RHEL8 now being supported until EOS, rebuilding rhel8 bins for rocm7 (previously built for rocm7 rhel9).

Remove roofline-rhel9-rocm7, replace with new roofline-rhel8-rocm7.
Update check for roof bin.
Update any doc mentions of rhel min support version back to rhel8.

---------

Signed-off-by: Carrie Fallows <Carrie.Fallows@amd.com>
このコミットが含まれているのは:
cfallows-amd
2025-08-07 12:24:02 -04:00
committed by GitHub
コミット d8d739f57c
4個のファイルの変更2行の追加9行の削除
+1 -1
ファイルの表示
@@ -147,7 +147,7 @@ Full documentation for ROCm Compute Profiler is available at [https://rocm.docs.
* Changed the condition when Roofline PDFs are generated during general profiling and ``--roof-only`` profiling (skip only when ``--no-roof`` option is present).
* Updated Roofline binaries:
* Rebuild using latest ROCm stack
* Minimum OS distribution support minimum for roofline feature is now Ubuntu 22.04, RHEL 9, and SLES15 SP6.
* Minimum OS distribution support minimum for roofline feature is now Ubuntu 22.04, RHEL 8, and SLES15 SP6.
* Fixed not detecting memory clock issue when using amd-smi
* Fixed standalone GUI crashing
* Fixed L2 read/write/atomic bandwidths on MI350
バイナリ
ファイルの表示
バイナリファイルは表示されません。
バイナリファイルは表示されません。
+1 -8
ファイルの表示
@@ -1206,19 +1206,13 @@ def detect_roofline(mspec):
console_error("roofline", msg)
# Must be a valid RHEL machine
elif rocm_ver == 6 and (
elif (
rhel_distro == "platform:el8"
or rhel_distro == "platform:al8"
or rhel_distro == "platform:el9"
or rhel_distro == "platform:el10"
):
# RHEL8 supported up to ROCm6
distro = "platform:el8"
elif rocm_ver == 7 and (
rhel_distro == "platform:el9" or rhel_distro == "platform:el10"
):
# ROCm7 supports RHEL9 and above
distro = "platform:el9"
# Must be a valid SLES machine
elif (
@@ -1247,7 +1241,6 @@ def mibench(args, mspec):
distro_map = {
"platform:el8": "rhel8",
"platform:el9": "rhel9",
"15.6": "sles15sp6",
"22.04": "ubuntu22_04",
}