Skip to content
Closed
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
2 changes: 2 additions & 0 deletions cuda_core/tests/memory_ipc/test_peer_access.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
POOL_SIZE = 2097152


@pytest.mark.skip(reason="nvbug 5821337: peer access tests disabled until resolved")
class TestPeerAccessNotPreservedOnImport:
"""
Verify that peer access settings are not preserved when a memory resource
Expand Down Expand Up @@ -51,6 +52,7 @@ def child_main(self, mr):
mr.close()


@pytest.mark.skip(reason="nvbug 5821337: peer access tests disabled until resolved")
class TestBufferPeerAccessAfterImport:
"""
Verify that buffers imported via IPC can be accessed from peer devices after
Expand Down
3 changes: 3 additions & 0 deletions cuda_core/tests/test_memory_peer_access.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
NBYTES = 1024


@pytest.mark.skip(reason="nvbug 5821337: peer access tests disabled until resolved")
def test_peer_access_basic(mempool_device_x2):
"""Basic tests for dmr.peer_accessible_by."""
dev0, dev1 = mempool_device_x2
Expand Down Expand Up @@ -46,6 +47,7 @@ def test_peer_access_basic(mempool_device_x2):
zero_on_dev0.copy_from(buf_on_dev1, stream=stream_on_dev0)


@pytest.mark.skip(reason="nvbug 5821337: peer access tests disabled until resolved")
def test_peer_access_property_x2(mempool_device_x2):
"""The the dmr.peer_accessible_by property (but not its functionality)."""
# The peer access list is a sorted tuple and always excludes the self
Expand Down Expand Up @@ -78,6 +80,7 @@ def check(expected):
dmr.peer_accessible_by = [num_devices] # device ID out of bounds


@pytest.mark.skip(reason="nvbug 5821337: peer access tests disabled until resolved")
def test_peer_access_transitions(mempool_device_x3):
"""Advanced tests for dmr.peer_accessible_by."""

Expand Down
Loading