Skip to content
Open
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
124 changes: 0 additions & 124 deletions .github/workflows/build.yaml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/test-external.yaml

This file was deleted.

56 changes: 0 additions & 56 deletions .github/workflows/test.yaml

This file was deleted.

57 changes: 0 additions & 57 deletions EXTERNAL_TESTS.md

This file was deleted.

29 changes: 11 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# <div align="left"><img src="https://rapids.ai/assets/images/rapids_logo.png" width="90px"/>&nbsp; cuxfilter

> [!CAUTION]
> version 26.06 was the final release of `cuxfilter` Python packages.
> This repository's `main` branch may be repurposed for other development.
> To view the source code for the 26.06 release, navigate to https://github.com/rapidsai/cuxfilter/tree/release/26.06.
>
> See https://docs.rapids.ai/notices/rsn0060/ for more details.

cuxfilter ( ku-cross-filter ) is a [RAPIDS](https://github.com/rapidsai) framework to connect web visualizations to GPU accelerated crossfiltering. Inspired by the javascript version of the [original](https://github.com/crossfilter/crossfilter), it enables interactive and super fast multi-dimensional filtering of 100 million+ row tabular datasets via [cuDF](https://github.com/rapidsai/cudf).

## RAPIDS Viz
Expand Down Expand Up @@ -151,42 +158,28 @@ Please see the [Demo Docker Repository](https://hub.docker.com/r/rapidsai/rapids

cuxfilter can be installed with conda. You can get a minimal conda installation with [miniforge](https://github.com/conda-forge/miniforge).

For the nightly version of `cuxfilter`:

```bash
# CUDA 13
conda install -c rapidsai-nightly -c conda-forge \
cuxfilter=26.08 python=3.14 cuda-version=13.2

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

For the stable version of `cuxfilter`:

```bash
# CUDA 13
conda install -c rapidsai -c conda-forge \
cuxfilter python=3.14 cuda-version=13.2
cuxfilter=26.06 python=3.14 cuda-version=13.2

# CUDA 12
conda install -c rapidsai -c conda-forge \
cuxfilter python=3.14 cuda-version=12.9
cuxfilter=26.06 python=3.14 cuda-version=12.9
```

> Above are sample install snippets for cuxfilter, see the [RAPIDS installation docs](https://docs.rapids.ai/install/) for installing the latest `cuxfilter` version.

### PyPI

Install cuxfilter from PyPI using pip:

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

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

See the [RAPIDS installation docs](https://docs.rapids.ai/install/) for more OS and version info.
Expand Down
18 changes: 4 additions & 14 deletions docs/source/user_guide/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ For the most customized way of installing RAPIDS and cuxfilter, visit the select
.. code-block:: bash

# CUDA 13
conda install -c rapidsai -c conda-forge cuxfilter=26.08 cuda-version=13.2
conda install -c rapidsai -c conda-forge cuxfilter=26.06 cuda-version=13.2

# CUDA 12
conda install -c rapidsai -c conda-forge cuxfilter=26.08 cuda-version=12.9
conda install -c rapidsai -c conda-forge cuxfilter=26.06 cuda-version=12.9

PyPI
----
Expand All @@ -20,26 +20,16 @@ Install cuxfilter from PyPI using pip:
.. code-block:: bash

# CUDA 13
pip install cuxfilter-cu13 -extra-index-url=https://pypi.nvidia.com
pip install 'cuxfilter-cu13==26.6.*'

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


Docker container
----------------
For the most customized way of installing RAPIDS and cuxfilter, visit the selector on the `RAPIDS Installation Guide <https://docs.rapids.ai/install>`_.

cuxfilter Docker example installation:

.. code-block:: bash

docker run --gpus all --pull always --rm -it \
--shm-size=1g --ulimit memlock=-1 --ulimit stack=67108864 \
rapidsai/base:25.12-cuda13-py3.13

# open http://localhost:8888

Build/Install from Source
-------------------------

Expand Down
Loading