Skip to content
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

Build with CUDA 12.8.0 #97

Merged
merged 1 commit into from
Feb 4, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ channels:
- nvidia
dependencies:
- breathe>=4.35
- cuda-version=12.5
- cuda-version=12.8
- cugraph-dgl==25.2.*,>=0.0.0a0
- cugraph-pyg==25.2.*,>=0.0.0a0
- cugraph==25.2.*,>=0.0.0a0
Expand All @@ -30,4 +30,4 @@ dependencies:
- sphinx-markdown-tables
- sphinx>=8
- sphinxcontrib-websupport
name: all_cuda-125_arch-x86_64
name: all_cuda-128_arch-x86_64
6 changes: 5 additions & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ files:
output: [conda]
matrix:
# docs are only built on the latest CUDA version RAPIDS supports
cuda: ["12.5"]
cuda: ["12.8"]
arch: [x86_64]
includes:
- checks
Expand Down Expand Up @@ -51,6 +51,10 @@ dependencies:
cuda: "12.5"
packages:
- cuda-version=12.5
- matrix:
cuda: "12.8"
packages:
- cuda-version=12.8

docs:
common:
Expand Down
2 changes: 1 addition & 1 deletion docs/cugraph-docs/source/nx_cugraph/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This guide describes how to install ``nx-cugraph`` and use it in your workflows.
`nx-cugraph` requires the following:

- **Volta architecture or later NVIDIA GPU, with [compute capability](https://developer.nvidia.com/cuda-gpus) 7.0+**
- **[CUDA](https://docs.nvidia.com/cuda/index.html) 11.2, 11.4, 11.5, 11.8, 12.0, 12.2, or 12.5**
- **[CUDA](https://docs.nvidia.com/cuda/index.html) 11.2, 11.4, 11.5, 11.8, 12.0, 12.2, 12.5, or 12.8**
- **Python >= 3.10**
- **[NetworkX](https://networkx.org/documentation/stable/install.html#) >= 3.2 (version 3.4 or higher recommended)**

Expand Down
2 changes: 1 addition & 1 deletion docs/cugraph-docs/source/tutorials/basic_cugraph.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

CuGraph is part of [Rapids](https://docs.rapids.ai/user-guide) and has the following system requirements:
* NVIDIA GPU, Volta architecture or later, with [compute capability](https://developer.nvidia.com/cuda-gpus) 7.0+
* CUDA 11.2, 11.4, 11.5, 11.8, 12.0, 12.2, or 12.5
* CUDA 11.2, 11.4, 11.5, 11.8, 12.0, 12.2, 12.5, or 12.8
* Python version 3.10, 3.11, or 3.12
* NetworkX >= version 3.3 or newer in order to use use [NetworkX Configs](https://networkx.org/documentation/stable/reference/backends.html#module-networkx.utils.configs) **This is required for use of nx-cuGraph, [see below](#cugraph-using-networkx-code).**

Expand Down
Loading