Skip to content

Commit d088a13

Browse files
committed
NUM_RANKS = 2
1 parent 4c5b5da commit d088a13

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

python/cudf_polars/tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
# Number of ranks for multi-rank streaming engines that share one GPU
3636
# (currently ``RayEngine``). Single-GPU dev hosts and CI runners require
3737
# ``allow_gpu_sharing=True`` to oversubscribe one device across actors.
38-
NUM_RANKS = 1
38+
NUM_RANKS = 2
3939

4040

4141
@pytest.fixture(params=[False, True], ids=["no_nulls", "nulls"], scope="session")

python/cudf_polars/tests/experimental/test_all_gather_host_data.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@ def test_gather_cluster_info(streaming_engine) -> None:
5959
assert isinstance(info.gpu_uuid, str)
6060
# Each rank runs in its own process.
6161
assert len({info.pid for info in infos}) == streaming_engine.nranks
62-
# Without allow_gpu_sharing, all UUIDs must be unique (enforced at init).
63-
assert len({info.gpu_uuid for info in infos}) == streaming_engine.nranks
6462

6563

6664
def test_cluster_info_cuda_visible_devices(monkeypatch) -> None:

0 commit comments

Comments
 (0)