Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[gpuCI] Auto-merge branch-0.17 to branch-0.18 [skip ci] #464

Merged
merged 4 commits into from
Dec 3, 2020
Merged
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
4 changes: 3 additions & 1 deletion dask_cuda/cli/dask_cuda_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@
default=None,
help="If specified, initialize each worker with an RMM pool of "
"the given size, otherwise no RMM pool is created. This can be "
"an integer (bytes) or string (like 5GB or 5000M).",
"an integer (bytes) or string (like 5GB or 5000M)."
"NOTE: This size is a per worker (i.e., per GPU) configuration, "
"and not cluster-wide!",
)
@click.option(
"--rmm-managed-memory/--no-rmm-managed-memory",
Expand Down
2 changes: 2 additions & 0 deletions dask_cuda/local_cuda_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ class LocalCUDACluster(LocalCluster):
rmm_pool_size: None, int or str
When None (default), no RMM pool is initialized. If a different value
is given, it can be an integer (bytes) or string (like 5GB or 5000M).
NOTE: The size is a per worker (i.e., per GPU) configuration, and
not cluster-wide!
rmm_managed_memory: bool
If True, initialize each worker with RMM and set it to use managed
memory. If False, RMM may still be used if `rmm_pool_size` is specified,
Expand Down
2 changes: 2 additions & 0 deletions docs/source/worker.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ New configuration options::
RMM pool of the given size, otherwise no RMM
pool is created. This can be an integer
(bytes) or string (like 5GB or 5000M).
NOTE: This size is a per worker (i.e., per
GPU) configuration, and not cluster-wide!

--enable-tcp-over-ucx / --disable-tcp-over-ucx
Enable TCP communication over UCX
Expand Down