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
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ concurrency:
jobs:
python-build:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.10
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@cuda13.0
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -44,7 +44,7 @@ jobs:
upload-conda:
needs: [python-build]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.10
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@cuda13.0
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -54,7 +54,7 @@ jobs:
if: github.ref_type == 'branch'
needs: python-build
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.10
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda13.0
with:
arch: "amd64"
branch: ${{ inputs.branch }}
Expand All @@ -66,7 +66,7 @@ jobs:
sha: ${{ inputs.sha }}
wheel-build:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.10
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda13.0
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -81,7 +81,7 @@ jobs:
wheel-publish:
needs: wheel-build
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.10
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@cuda13.0
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- wheel-tests
- telemetry-setup
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.10
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@cuda13.0
if: always()
with:
needs: ${{ toJSON(needs) }}
Expand All @@ -37,7 +37,7 @@ jobs:
changed-files:
secrets: inherit
needs: telemetry-setup
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@branch-25.10
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@cuda13.0
with:
files_yaml: |
test_notebooks:
Expand All @@ -61,20 +61,20 @@ jobs:
checks:
secrets: inherit
needs: telemetry-setup
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.10
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@cuda13.0
with:
ignored_pr_jobs: telemetry-summarize
conda-python-build:
needs: checks
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.10
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@cuda13.0
with:
build_type: pull-request
script: ci/build_python.sh
conda-python-tests:
needs: [conda-python-build, changed-files]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.10
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda13.0
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
with:
build_type: pull-request
Expand All @@ -83,7 +83,7 @@ jobs:
conda-notebook-tests:
needs: [conda-python-build, changed-files]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.10
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda13.0
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_notebooks
with:
build_type: pull-request
Expand All @@ -94,7 +94,7 @@ jobs:
docs-build:
needs: conda-python-build
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.10
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda13.0
with:
build_type: pull-request
node_type: "gpu-l4-latest-1"
Expand All @@ -104,7 +104,7 @@ jobs:
wheel-build:
needs: checks
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.10
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@cuda13.0
with:
build_type: pull-request
script: ci/build_wheel.sh
Expand All @@ -116,7 +116,7 @@ jobs:
wheel-tests:
needs: [wheel-build, changed-files]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.10
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@cuda13.0
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
with:
build_type: pull-request
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-external.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
jobs:
test-external:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.10
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda13.0
with:
build_type: branch
node_type: "gpu-l4-latest-1"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:
jobs:
conda-python-tests:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.10
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@cuda13.0
with:
build_type: ${{ inputs.build_type }}
branch: ${{ inputs.branch }}
Expand All @@ -34,7 +34,7 @@ jobs:
sha: ${{ inputs.sha }}
wheel-tests:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.10
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@cuda13.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 @@ -12,7 +12,7 @@ jobs:
trigger-notifier:
if: contains(github.event.pull_request.labels.*.name, 'breaking')
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@branch-25.10
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@cuda13.0
with:
sender_login: ${{ github.event.sender.login }}
sender_avatar: ${{ github.event.sender.avatar_url }}
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ cd $CUXFILTER_HOME
- Create the conda development environment `cuxfilter_dev`:
```bash
# create the conda environment (assuming in base `cuxfilter` directory)
conda env create --name cuxfilter_dev --file conda/environments/all_cuda-129_arch-x86_64.yaml
conda env create --name cuxfilter_dev --file conda/environments/all_cuda-130_arch-x86_64.yaml
# activate the environment
source activate cuxfilter_dev
```
Expand Down
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,15 +154,23 @@ cuxfilter can be installed with conda. You can get a minimal conda installation
For the nightly version of `cuxfilter`:

```bash
# for CUDA 12
# CUDA 13
conda install -c rapidsai-nightly -c conda-forge \
cuxfilter=25.10 python=3.13 cuda-version=13.0

# CUDA 12
conda install -c rapidsai-nightly -c conda-forge \
cuxfilter=25.10 python=3.13 cuda-version=12.9
```

For the stable version of `cuxfilter`:

```bash
# for CUDA 12
# CUDA 13
conda install -c rapidsai -c conda-forge \
cuxfilter python=3.13 cuda-version=13.0

# CUDA 12
conda install -c rapidsai -c conda-forge \
cuxfilter python=3.13 cuda-version=12.9
```
Expand All @@ -176,7 +184,10 @@ Note: cuxfilter is supported only on Linux, and with Python versions 3.10, 3.11,
Install cuxfilter from PyPI using pip:

```bash
# for CUDA 12.0
# CUDA 13
pip install cuxfilter-cu12 -extra-index-url=https://pypi.nvidia.com

# CUDA 12
pip install cuxfilter-cu12 -extra-index-url=https://pypi.nvidia.com
```

Expand Down
3 changes: 2 additions & 1 deletion conda/environments/all_cuda-129_arch-aarch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies:
- cuda-version=12.9
- cudf==25.10.*,>=0.0.0a0
- cugraph==25.10.*,>=0.0.0a0
- cupy>=12.0.0
- cupy>=13.6.0
- dask-cuda==25.10.*,>=0.0.0a0
- dask-cudf==25.10.*,>=0.0.0a0
- datashader>=0.15
Expand All @@ -24,6 +24,7 @@ dependencies:
- nbsphinx
- nodejs>=18
- notebook>=0.5.0
- numba-cuda>=0.19.1,<0.20.0a0
- numba>=0.59.1,<0.62.0a0
- numpy>=1.23,<3.0a0
- numpydoc
Expand Down
3 changes: 2 additions & 1 deletion conda/environments/all_cuda-129_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies:
- cuda-version=12.9
- cudf==25.10.*,>=0.0.0a0
- cugraph==25.10.*,>=0.0.0a0
- cupy>=12.0.0
- cupy>=13.6.0
- dask-cuda==25.10.*,>=0.0.0a0
- dask-cudf==25.10.*,>=0.0.0a0
- datashader>=0.15
Expand All @@ -24,6 +24,7 @@ dependencies:
- nbsphinx
- nodejs>=18
- notebook>=0.5.0
- numba-cuda>=0.19.1,<0.20.0a0
- numba>=0.59.1,<0.62.0a0
- numpy>=1.23,<3.0a0
- numpydoc
Expand Down
48 changes: 48 additions & 0 deletions conda/environments/all_cuda-130_arch-aarch64.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# This file is generated by `rapids-dependency-file-generator`.
# To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
channels:
- rapidsai
- rapidsai-nightly
- conda-forge
dependencies:
- bokeh>=3.1,<=3.6.3
- bokeh_sampledata
- cuda-version=13.0
- cudf==25.10.*,>=0.0.0a0
- cugraph==25.10.*,>=0.0.0a0
- cupy>=13.6.0
- dask-cuda==25.10.*,>=0.0.0a0
- dask-cudf==25.10.*,>=0.0.0a0
- datashader>=0.15
- geopandas>=0.11.0
- holoviews>=1.16.0,<1.21.0a0
- ipykernel
- ipython
- jupyter-server-proxy
- jupyter_sphinx
- libwebp-base
- nbsphinx
- nodejs>=18
- notebook>=0.5.0
- numba-cuda>=0.19.1,<0.20.0a0
- numba>=0.59.1,<0.62.0a0
- numpy>=1.23,<3.0a0
- numpydoc
- packaging
- pandoc<=2.0.0
- panel>=1.0
- pre-commit
- pydata-sphinx-theme
- pytest
- pytest-cov
- pytest-xdist
- python>=3.10,<3.14
- rapids-build-backend>=0.4.0,<0.5.0.dev0
- recommonmark
- setuptools
- shapely<2.1.0
- sphinx-markdown-tables
- sphinx>=8.0.0,<8.2.0
- sphinx_rtd_theme
- sphinxcontrib-websupport
name: all_cuda-130_arch-aarch64
48 changes: 48 additions & 0 deletions conda/environments/all_cuda-130_arch-x86_64.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# This file is generated by `rapids-dependency-file-generator`.
# To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
channels:
- rapidsai
- rapidsai-nightly
- conda-forge
dependencies:
- bokeh>=3.1,<=3.6.3
- bokeh_sampledata
- cuda-version=13.0
- cudf==25.10.*,>=0.0.0a0
- cugraph==25.10.*,>=0.0.0a0
- cupy>=13.6.0
- dask-cuda==25.10.*,>=0.0.0a0
- dask-cudf==25.10.*,>=0.0.0a0
- datashader>=0.15
- geopandas>=0.11.0
- holoviews>=1.16.0,<1.21.0a0
- ipykernel
- ipython
- jupyter-server-proxy
- jupyter_sphinx
- libwebp-base
- nbsphinx
- nodejs>=18
- notebook>=0.5.0
- numba-cuda>=0.19.1,<0.20.0a0
- numba>=0.59.1,<0.62.0a0
- numpy>=1.23,<3.0a0
- numpydoc
- packaging
- pandoc<=2.0.0
- panel>=1.0
- pre-commit
- pydata-sphinx-theme
- pytest
- pytest-cov
- pytest-xdist
- python>=3.10,<3.14
- rapids-build-backend>=0.4.0,<0.5.0.dev0
- recommonmark
- setuptools
- shapely<2.1.0
- sphinx-markdown-tables
- sphinx>=8.0.0,<8.2.0
- sphinx_rtd_theme
- sphinxcontrib-websupport
name: all_cuda-130_arch-x86_64
3 changes: 2 additions & 1 deletion conda/recipes/cuxfilter/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ requirements:
run:
- ${{ pin_compatible("cuda-version", upper_bound="x", lower_bound="x") }}
- cudf =${{ minor_version }}
- cupy >=12.0.0
- cupy >=13.6.0
- dask-cudf =${{ minor_version }}
- datashader >=0.15
- geopandas >=0.11.0
Expand All @@ -43,6 +43,7 @@ requirements:
- libwebp-base
- nodejs >=14
- numba >=0.59.1,<0.62.0a0
- numba-cuda >=0.19.1,<0.20.0a0
- numpy >=1.23,<3.0a0
- packaging
- panel >=1.0
Expand Down
Loading