File tree Expand file tree Collapse file tree
github_actions/test_executable_scripts
packaging/python/templates/rocm/src/rocm_sdk/tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change 107107)
108108
109109# TensileLite Python unit tests (includes GPU subtile tests).
110+ # TODO(TheRock#3288): gfx950-dcgpu is excluded from PR CI (ci.yml) due to runner
111+ # capacity — GPU subtile tests only exercise on nightly/scheduled builds.
110112logging .info ("=== Running TensileLite unit tests ===" )
111113subprocess .check_call (
112114 [
Original file line number Diff line number Diff line change @@ -67,12 +67,9 @@ def testSharedLibrariesLoad(self):
6767 continue
6868
6969 if so_path .name .endswith (".abi3.so" ) or ".cpython-" in so_path .name :
70- # Python C extensions must be loaded via importlib, not
71- # ctypes.CDLL. Stable ABI extensions (.abi3.so) target a
72- # minimum CPython version and may use symbols absent from
73- # older interpreters (e.g. PyType_FromMetaclass requires
74- # 3.12+). Version-tagged extensions (.cpython-3XX) are
75- # similarly incompatible across interpreter versions.
70+ # Python C extensions use symbols resolved at import time,
71+ # not via dlopen — ctypes.CDLL fails across interpreter
72+ # versions (e.g. .abi3.so using PyType_FromMetaclass on <3.12).
7673 continue
7774
7875 extra_setup = ""
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ packaging==25.0
1414python-magic==0.4.27; sys_platform != "win32"
1515
1616# tensilelite/rocisa test requirements
17+ # TODO: Keep in sync with rocm-libraries/projects/hipblaslt/tensilelite/requirements.txt
1718msgpack>=1.0.0
1819joblib>=1.4.0
1920numpy>=1.26.0
You can’t perform that action at this time.
0 commit comments