Add ubuntu 24.04 detection for roofline bin loading. (#541)

Also updated docker script for dev usage.

Signed-off-by: Carrie Fallows <Carrie.Fallows@amd.com>
このコミットが含まれているのは:
cfallows-amd
2025-01-23 19:53:50 -05:00
committed by GitHub
コミット 7602341b70
2個のファイルの変更7行の追加3行の削除
+2 -1
ファイルの表示
@@ -824,7 +824,7 @@ def detect_roofline(mspec):
# Must be a valid SLES machine
# Use SP3 binary for all forward compatible service pack versions
distro = "15.3"
elif ubuntu_distro == "20.04" or ubuntu_distro == "22.04":
elif ubuntu_distro == "20.04" or ubuntu_distro == "22.04" or ubuntu_distro == "24.04":
# Must be a valid Ubuntu machine
distro = ubuntu_distro
else:
@@ -867,6 +867,7 @@ def mibench(args, mspec):
"15.3": "sles15sp5",
"20.04": "ubuntu20_04",
"22.04": "ubuntu20_04",
"24.04": "ubuntu20_04",
}
binary_paths = []