Fix roofline and TUI bugs (#803)

* Fix roofline rocm version bug
* Fix utils bug
* Remove unnecessary tests
* Do not check textual-fspicker package in cmake build
* Use rocprofv3 to test MI 100 and fix tests
This commit is contained in:
vedithal-amd
2025-07-09 19:15:46 -04:00
committed by GitHub
parent 8585cd8e8f
commit 000fd4f5b2
4 changed files with 46 additions and 115 deletions
+2 -2
View File
@@ -1169,7 +1169,7 @@ def gen_sysinfo(
def detect_roofline(mspec):
from utils import specs
rocm_ver = mspec.rocm_version[:1]
rocm_ver = int(mspec.rocm_version[:1])
target_binary = {"rocm_ver": rocm_ver, "distro": "override", "path": None}
@@ -1259,7 +1259,7 @@ def mibench(args, mspec):
+ "-"
+ distro_map[target_binary["distro"]]
+ "-rocm"
+ target_binary["rocm_ver"]
+ str(target_binary["rocm_ver"])
)
binary_paths.append(path_to_binary)