-
Notifications
You must be signed in to change notification settings - Fork 72
Installing Dask-SQL w/ RAPIDS #324
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
Changes from 7 commits
60b00c1
d45870f
8843714
c09d910
aaf8523
8d27cff
cfeff30
67e93ab
8ee3f11
b5ad937
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,6 +23,33 @@ Install the package from the ``conda-forge`` channel: | |
|
|
||
| conda install dask-sql -c conda-forge | ||
|
|
||
| Experimental GPU support | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
|
||
| - GPU support is currently tied to the `RAPIDS <https://rapids.ai/>`_ libraries. | ||
| - It is in development and generally requires the latest cuDF nightlies. | ||
| - It is experimental, so users should expect some bugs or undefined behavior. | ||
|
|
||
| Create a new conda environment or use an existing one to install RAPIDS with the chosen methods and packages: | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should maybe add a short blurb about GPU support here, bringing up the following to contextualize the env creation line below:
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks @charlesbluca, I'll see to add them! |
||
|
|
||
| .. code-block:: bash | ||
|
|
||
| conda create --name rapids-env -c rapidsai-nightly -c nvidia -c conda-forge -y cudatoolkit=11.2 cudf=21.12 ucx-py ucx-proc=*=gpu | ||
DaceT marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| conda activate rapids-env | ||
|
|
||
| Install the stable package from the ``conda-forge`` channel: | ||
|
|
||
| .. code-block:: bash | ||
|
|
||
| conda install -c conda-forge dask-sql | ||
|
|
||
| Or the latest nightly from the ``dask`` channel (currently only available for Linux-based operating systems): | ||
|
|
||
| .. code-block:: bash | ||
|
|
||
| conda install -c dask/label/dev dask-sql | ||
|
|
||
|
|
||
| With ``pip`` | ||
| ------------ | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.