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

Migrate dask/notebooks/HPO_demo.ipynb to deployment #174

Merged
merged 13 commits into from
Apr 11, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
style issue
skirui-source committed Apr 6, 2023

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit 03553ebf585083b6c5f83f29579696e0cb3ca7a1
6 changes: 3 additions & 3 deletions source/guides/cuda/localcluster.md
Original file line number Diff line number Diff line change
@@ -4,11 +4,11 @@ Create a cluster of one or more GPUs on your local machine. You can launch a Das

In addition to enabling multi-GPU computation, `LocalCUDACluster` also provides a simple interface for managing the cluster, such as starting and stopping the cluster, querying the status of the nodes, and monitoring the workload distribution.

## 0.Pre-requisites
## Pre-requisites

Before running these instructions, ensure you have installed the [`dask`](https://docs.dask.org/en/stable/install.html) and [`dask_cuda`](https://docs.rapids.ai/api/dask-cuda/nightly/install.html) packages in your local environment

## 1.Cluster setup
## Cluster setup

### Instantiate a LocalCUDACluster object

@@ -26,7 +26,7 @@ Dask scheduler coordinates the execution of tasks, whereas Dask client is the us
client = Client(cluster)
```

## 2.Test RAPIDS
## Test RAPIDS

To test RAPIDS, create a distributed client for the cluster and query for the GPU model.