Skip to content
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: 1 addition & 1 deletion .github/workflows/build-ucxx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ permissions: {}
jobs:
conda-python-build:
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@cuda-13.3.0
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ permissions: {}
jobs:
conda-python-build:
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@cuda-13.3.0
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -51,7 +51,7 @@ jobs:
if: github.ref_type == 'branch'
needs: [conda-python-build]
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.3.0
with:
arch: "amd64"
branch: ${{ inputs.branch }}
Expand All @@ -72,7 +72,7 @@ jobs:
secrets:
CONDA_RAPIDSAI_NIGHTLY_TOKEN: ${{ secrets.CONDA_RAPIDSAI_NIGHTLY_TOKEN }}
CONDA_RAPIDSAI_TOKEN: ${{ secrets.CONDA_RAPIDSAI_TOKEN }}
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@cuda-13.3.0
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -86,7 +86,7 @@ jobs:
pull-requests: read
wheel-build:
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-13.3.0
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
secrets:
CONDA_RAPIDSAI_WHEELS_NIGHTLY_TOKEN: ${{ secrets.CONDA_RAPIDSAI_WHEELS_NIGHTLY_TOKEN }}
RAPIDSAI_PYPI_TOKEN: ${{ secrets.RAPIDSAI_PYPI_TOKEN }}
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@cuda-13.3.0
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- wheel-build
- wheel-tests
- telemetry-setup
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@cuda-13.3.0
with:
needs: ${{ toJSON(needs) }}
permissions:
Expand Down Expand Up @@ -52,15 +52,15 @@ jobs:
target-branch: ${{ fromJSON(steps.get-pr-info.outputs.pr-info).base.ref }}
checks:
needs: telemetry-setup
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@cuda-13.3.0
with:
ignored_pr_jobs: telemetry-summarize
permissions:
contents: read
conda-python-build:
needs: checks
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@cuda-13.3.0
with:
build_type: pull-request
script: ci/build_python.sh
Expand All @@ -74,7 +74,7 @@ jobs:
conda-python-tests:
needs: conda-python-build
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda-13.3.0
with:
build_type: pull-request
script: ci/test_python.sh
Expand All @@ -87,7 +87,7 @@ jobs:
docs-build:
needs: conda-python-build
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.3.0
with:
build_type: pull-request
node_type: "gpu-l4-latest-1"
Expand All @@ -103,7 +103,7 @@ jobs:
wheel-build:
needs: checks
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda-13.3.0
with:
build_type: pull-request
script: "ci/build_wheel.sh"
Expand All @@ -124,7 +124,7 @@ jobs:
wheel-tests:
needs: wheel-build
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@cuda-13.3.0
with:
build_type: pull-request
script: "ci/test_wheel.sh"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-ucxx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ permissions: {}
jobs:
conda-python-ucxx-tests:
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda-13.3.0
with:
build_type: ${{ inputs.build_type }}
branch: ${{ inputs.branch }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ permissions: {}
jobs:
conda-python-tests:
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda-13.3.0
with:
build_type: ${{ inputs.build_type }}
branch: ${{ inputs.branch }}
Expand All @@ -39,7 +39,7 @@ jobs:
pull-requests: read
wheel-tests:
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@cuda-13.3.0
with:
build_type: ${{ inputs.build_type }}
branch: ${{ inputs.branch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trigger-breaking-change-alert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
if: contains(github.event.pull_request.labels.*.name, 'breaking')
permissions:
contents: read
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@cuda-13.3.0
secrets:
slack-webhook-url: ${{ secrets.NV_SLACK_BREAKING_CHANGE_NOTIFIER_APP }}
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies:
- cuda-core>=0.3.2
- cuda-nvcc-impl
- cuda-nvrtc
- cuda-version=13.2
- cuda-version=13.3
- cudf==26.8.*,>=0.0.0a0
- dask-cudf==26.8.*,>=0.0.0a0
- distributed-ucxx==0.51.*,>=0.0.0a0
Expand All @@ -31,4 +31,4 @@ dependencies:
- sphinx-click>=2.7.1
- sphinx-rtd-theme>=0.5.1
- zict>=2.0.0
name: all_cuda-132_arch-aarch64
name: all_cuda-133_arch-aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies:
- cuda-core>=0.3.2
- cuda-nvcc-impl
- cuda-nvrtc
- cuda-version=13.2
- cuda-version=13.3
- cudf==26.8.*,>=0.0.0a0
- dask-cudf==26.8.*,>=0.0.0a0
- distributed-ucxx==0.51.*,>=0.0.0a0
Expand All @@ -31,4 +31,4 @@ dependencies:
- sphinx-click>=2.7.1
- sphinx-rtd-theme>=0.5.1
- zict>=2.0.0
name: all_cuda-132_arch-x86_64
name: all_cuda-133_arch-x86_64
11 changes: 10 additions & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ files:
all:
output: conda
matrix:
cuda: ["12.9", "13.2"]
cuda: ["12.9", "13.3"]
arch: [x86_64, aarch64]
includes:
- build_python
Expand Down Expand Up @@ -150,6 +150,10 @@ dependencies:
cuda: "13.2"
packages:
- cuda-version=13.2
- matrix:
cuda: "13.3"
packages:
- cuda-version=13.3
- output_types: requirements
matrices:
# if use_cuda_wheels=false is provided, do not add dependencies on any CUDA wheels
Expand Down Expand Up @@ -200,6 +204,11 @@ dependencies:
use_cuda_wheels: "true"
packages:
- cuda-toolkit==13.2.*
- matrix:
cuda: "13.3"
use_cuda_wheels: "true"
packages:
- cuda-toolkit==13.3.*
cuda:
common:
- output_types: conda
Expand Down
4 changes: 2 additions & 2 deletions docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ To install the latest version of Dask-CUDA along with the CUDA Toolkit:

.. code-block:: bash

conda install -c rapidsai -c conda-forge dask-cuda cuda-version=13.2
conda install -c rapidsai -c conda-forge dask-cuda cuda-version=13.3

UCXX Support
~~~~~~~~~~~~
Expand All @@ -25,7 +25,7 @@ To install the distributed-ucxx package to support accelerated communications wi

.. code-block:: bash

conda install -c rapidsai -c conda-forge dask-cuda cuda-version=13.2 distributed-ucxx
conda install -c rapidsai -c conda-forge dask-cuda cuda-version=13.3 distributed-ucxx

Pip
---
Expand Down
Loading