I ordered my DGX GB10 (Grace-Blackwell Superchip, aarch64) in May 2025. I just received it about 2 weeks ago. The public RAPIDS channels (24.12/nightly) do not contain GB10 kernels, so cuDF is unusable on this machine.
System details:
GPU: NVIDIA GB10 (Blackwell Superchip)
Driver: 580.95.05
CUDA: 13.0
OS: Ubuntu 24.04 (aarch64)
I need the internal/preview RAPIDS channel or .tar.bz2 build for Grace-Blackwell to run cuDF natively.
Could you please:
Grant access to the preview channel, or
Provide the private conda URL or build directly?
This is blocking GPU-accelerated dataframe work on a brand-new DGX system.
Thank you — happy to provide any additional details.
DGX Spark (GB10) support is already available in public RAPIDS packages with version 25.10. No internal builds or prereleases are needed. You can reference Installation Guide - RAPIDS Docs for installation instructions. There are instructions for conda, pip, and Docker – choose whichever is best for your needs.
For example, the conda installation commands can be used like this:
$ conda activate rapids-25.10
$ python
Python 3.13.9 | packaged by conda-forge | (main, Oct 22 2025, 23:14:51) [GCC 14.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import cudf
>>> cudf.Series([1, 2, 3]).sum()
np.int64(10)
If you are having trouble, can you please share the error messages you are observing?