Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@
"Unit_hipGetProcAddress_spt_Stream",
]
},
"gfx110X-all": {
"windows": [
"Unit_hipStreamValue_Wait_Blocking - uint64_t",
"Unit_hipStreamValue_Wait_Blocking - uint32_t",
]
},
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,26 @@
import shlex
import subprocess
from pathlib import Path
import platform

THEROCK_BIN_DIR = os.getenv("THEROCK_BIN_DIR")
SCRIPT_DIR = Path(__file__).resolve().parent
THEROCK_DIR = SCRIPT_DIR.parent.parent.parent

AMDGPU_FAMILIES = os.getenv("AMDGPU_FAMILIES")
os_type = platform.system().lower()

logging.basicConfig(level=logging.INFO)

TEST_TO_IGNORE = {
# TODO(#3709): Re-enable gfx110X tests once issues are resolved
"gfx110X-all": {
"windows": [
"miopen_plugin_integration_tests",
]
}
}

logging.basicConfig(level=logging.INFO)

cmd = [
Expand All @@ -24,6 +39,10 @@
"1200",
]

if AMDGPU_FAMILIES in TEST_TO_IGNORE and os_type in TEST_TO_IGNORE[AMDGPU_FAMILIES]:
ignored_tests = TEST_TO_IGNORE[AMDGPU_FAMILIES][os_type]
cmd.extend(["--exclude-regex", "|".join(ignored_tests)])

# Determine test filter based on TEST_TYPE environment variable
environ_vars = os.environ.copy()
test_type = os.getenv("TEST_TYPE", "full")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,22 @@
logging.basicConfig(level=logging.INFO)

TEST_TO_IGNORE = {
# TODO(#2836): Re-enable gfx110X tests once issues are resolved
"gfx110X-all": {
"windows": [
"rocprim.block_discontinuity",
"rocprim.device_merge_sort",
"rocprim.device_reduce",
]
},
"gfx1151": {
"windows": [
# TODO(#2836): Re-enable test once issues are resolved
"rocprim.device_merge_sort",
# TODO(#2836): Re-enable test once issues are resolved
"rocprim.device_radix_sort",
]
}
},
}

SMOKE_TESTS = [
Expand Down
Loading