Skip to content

Commit 23f542c

Browse files
Skip test on torch==2.8.0+cpu for Windows regression
1 parent 0d02815 commit 23f542c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_functional.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1418,7 +1418,7 @@ def test_gemv_eye_4bit(self, device, storage_type, dtype):
14181418
if device == "hpu" and not is_supported_on_hpu(storage_type, dtype):
14191419
pytest.skip("This configuration is not supported on HPU.")
14201420

1421-
if device == "cpu" and platform.system() == "Windows" and version.parse(torch.__version__.release) == (2, 8, 0):
1421+
if device == "cpu" and platform.system() == "Windows" and version.parse(torch.__version__).release == (2, 8, 0):
14221422
pytest.skip("Regression: CPU crash on Windows with torch 2.8.0")
14231423

14241424
dims = 4

0 commit comments

Comments
 (0)