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

[DOC] Fixing LocalCUDACluster example. Adding README link to docs #297

Merged
merged 1 commit into from
May 13, 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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ cluster = LocalCUDACluster()
client = Client(cluster)
```

Documentation is available [here](https://dask-cuda.readthedocs.io/).

What this is not
----------------

Expand Down
4 changes: 2 additions & 2 deletions docs/source/worker.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Dask-CUDA can be configured for single machine clusters with multiple GPUs such

# Configurations
protocol = "ucx"
interface = "enp134s0f1" # DGX-2
interface = "enp6s0" # DGX-2
enable_tcp_over_ucx = True
enable_nvlink = True
enable_infiniband = False
Expand All @@ -38,7 +38,7 @@ Dask-CUDA can be configured for single machine clusters with multiple GPUs such
enable_tcp_over_ucx=enable_tcp_over_ucx,
enable_infiniband=enable_infiniband,
enable_nvlink=enable_nvlink,
rmm_pool="25GB",
rmm_pool_size="25GB",
)
client = Client(cluster)

Expand Down