Skip to content

Commit

Permalink
Test cuDF spilling with enable_cudf_spill
Browse files Browse the repository at this point in the history
  • Loading branch information
pentschev committed Jul 26, 2024
1 parent 8113d72 commit 86ede13
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dask_cuda/tests/test_spill.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,9 @@ async def test_cupy_cluster_device_spill(params):
},
],
)
@pytest.mark.parametrize("enable_cudf_spill", [True, False])
@gen_test(timeout=30)
async def test_cudf_cluster_device_spill(params):
async def test_cudf_cluster_device_spill(params, enable_cudf_spill):
cudf = pytest.importorskip("cudf")

with dask.config.set(
Expand All @@ -266,6 +267,7 @@ async def test_cudf_cluster_device_spill(params):
device_memory_limit=params["device_memory_limit"],
memory_limit=params["memory_limit"],
worker_class=IncreasedCloseTimeoutNanny,
enable_cudf_spill=enable_cudf_spill,
) as cluster:
async with Client(cluster, asynchronous=True) as client:

Expand Down

0 comments on commit 86ede13

Please sign in to comment.