Skip to content

Commit 0e65be3

Browse files
authored
fix error in out of core docs (#468)
1 parent 7720758 commit 0e65be3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/Out_of_core.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ from rmm.allocators.cupy import rmm_cupy_allocator
2929

3030
def set_mem_pool():
3131
# Prefer pool allocator for performance and NVLink (managed memory can degrade P2P)
32-
rmm.reinitialize(managed_memory=False, pool_allocator=True)
32+
rmm.reinitialize(managed_memory=True, pool_allocator=False)
3333
cp.cuda.set_allocator(rmm_cupy_allocator)
3434

3535
client.run(set_mem_pool)

0 commit comments

Comments
 (0)