Skip to content

Commit 8a228b2

Browse files
authored
[ci] Enable disabled hipBLASLt tests (ROCm#1603)
ROCm#1114 is fixed! Working here: https://github.com/ROCm/TheRock/actions/runs/18023622950 Removing exclude logic as no longer needed for hipBLASLt. The tests still run into an occasional GPU hang but that is a separate and known issue
1 parent 87b4741 commit 8a228b2

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

build_tools/github_actions/test_executable_scripts/test_hipblaslt.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,5 @@
2323

2424
cmd = [f"{THEROCK_BIN_DIR}/hipblaslt-test", "--gtest_filter=*pre_checkin*"]
2525

26-
tests_to_exclude = {
27-
# Related issue: https://github.com/ROCm/TheRock/issues/1114
28-
"gfx1151": {
29-
"windows": ["_/aux_test.conversion/pre_checkin_aux_auxiliary_func_f16_r"]
30-
}
31-
}
32-
33-
if AMDGPU_FAMILIES in tests_to_exclude and PLATFORM in tests_to_exclude.get(
34-
AMDGPU_FAMILIES, {}
35-
):
36-
exclusion_list = ":".join(tests_to_exclude[AMDGPU_FAMILIES][PLATFORM])
37-
cmd.append(f"--gtest_filter=-{exclusion_list}")
38-
39-
4026
logging.info(f"++ Exec [{THEROCK_DIR}]$ {shlex.join(cmd)}")
4127
subprocess.run(cmd, cwd=THEROCK_DIR, check=True, env=envion_vars)

0 commit comments

Comments
 (0)