Skip to content

Commit 71362ff

Browse files
rasmithRandall Smith
andauthored
[CI/Build][AMD] Skip test_multi_shared_storage_connector_consistency in test_multi_connector.py due to hipErrorLaunchFailure when calling .cpu() (#29253)
Signed-off-by: Randall Smith <[email protected]> Co-authored-by: Randall Smith <[email protected]>
1 parent 20ee418 commit 71362ff

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests/v1/kv_connector/unit/test_multi_connector.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
from vllm.distributed.kv_transfer.kv_connector.v1.nixl_connector import (
2121
NixlKVConnectorStats,
2222
)
23+
from vllm.platforms import current_platform
2324

2425
MODEL_NAME = "meta-llama/Llama-3.2-1B-Instruct"
2526

@@ -69,6 +70,13 @@ def _compare_directories(dir1: Path, dir2: Path) -> bool:
6970
return True
7071

7172

73+
@pytest.mark.skipif(
74+
current_platform.is_rocm(),
75+
reason=(
76+
"hipErrorLaunchFailure when running this test, see issue:"
77+
"https://github.com/ROCm/pytorch/issues/2822"
78+
),
79+
)
7280
def test_multi_shared_storage_connector_consistency():
7381
"""
7482
Tests that MultiConnector with two SharedStorageConnectors saves

0 commit comments

Comments
 (0)