File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4040 arch : " amd64"
4141 branch : ${{ inputs.branch }}
4242 build_type : ${{ inputs.build_type || 'branch' }}
43- container_image : " rapidsai/ci-conda:latest"
43+ container_image : " rapidsai/ci-conda:25.10- latest"
4444 date : ${{ inputs.date }}
4545 node_type : " gpu-l4-latest-1"
4646 script : " ci/build_docs.sh"
Original file line number Diff line number Diff line change 4343 build_type : pull-request
4444 node_type : " gpu-l4-latest-1"
4545 arch : " amd64"
46- container_image : " rapidsai/ci-conda:latest"
46+ container_image : " rapidsai/ci-conda:25.10- latest"
4747 script : " ci/build_docs.sh"
4848 telemetry-summarize :
4949 # This job must use a self-hosted runner to record telemetry traces.
Original file line number Diff line number Diff line change 22
33repos :
44 - repo : https://github.com/rapidsai/pre-commit-hooks
5- rev : v0.6 .0
5+ rev : v0.7 .0
66 hooks :
77 - id : verify-alpha-spec
88 - id : verify-copyright
99 - repo : https://github.com/rapidsai/dependency-file-generator
10- rev : v1.19 .0
10+ rev : v1.20 .0
1111 hooks :
1212 - id : rapids-dependency-file-generator
13- args : ["--clean"]
13+ args : ["--clean", "--warn-all", "--strict" ]
1414 - repo : https://github.com/shellcheck-py/shellcheck-py
15- rev : v0.10 .0.1
15+ rev : v0.11 .0.1
1616 hooks :
1717 - id : shellcheck
1818 args : ["--severity=warning"]
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ channels:
77- conda-forge
88dependencies :
99- breathe>=4.35
10- - cuda-version=12.9
10+ - cuda-version=13.0
1111- cugraph-pyg==25.10.*,>=0.0.0a0
1212- cugraph==25.10.*,>=0.0.0a0
1313- doxygen
@@ -26,4 +26,4 @@ dependencies:
2626- sphinx-copybutton
2727- sphinx-markdown-tables
2828- sphinxcontrib-websupport
29- name : all_cuda-129_arch -x86_64
29+ name : all_cuda-130_arch -x86_64
Original file line number Diff line number Diff line change 44 output : [conda]
55 matrix :
66 # docs are only built on the latest CUDA version RAPIDS supports
7- cuda : ["12.9 "]
7+ cuda : ["13.0 "]
88 arch : [x86_64]
99 includes :
1010 - checks
@@ -57,6 +57,10 @@ dependencies:
5757 cuda : " 12.9"
5858 packages :
5959 - cuda-version=12.9
60+ - matrix :
61+ cuda : " 13.0"
62+ packages :
63+ - cuda-version=13.0
6064
6165 docs :
6266 common :
Original file line number Diff line number Diff line change @@ -39,6 +39,10 @@ Replace the package name in the example below to the one you want to install.
3939Install and update cuGraph using the conda command:
4040
4141``` bash
42+ # CUDA 13
43+ conda install -c rapidsai -c conda-forge -c nvidia cugraph cuda-version=13.0
44+
45+ # CUDA 12
4246conda install -c rapidsai -c conda-forge -c nvidia cugraph cuda-version=12.9
4347```
4448
@@ -49,12 +53,17 @@ Note: This conda installation only applies to Linux and Python versions 3.10/3.1
4953## PIP
5054cuGraph, and all of RAPIDS, is available via pip.
5155
52- ```
56+ ``` shell
57+ # CUDA 13
58+ pip install cugraph-cu13 --extra-index-url=https://pypi.nvidia.com
59+
60+ # CUDA 12
5361pip install cugraph-cu12 --extra-index-url=https://pypi.nvidia.com
5462```
5563
5664Also available:
57- * cugraph-pyg-cu12
58- * nx-cugraph-cu12
65+
66+ * ` cugraph-pyg-cu{12,13} `
67+ * ` nx-cugraph-cu{12, 13} `
5968
6069<br >
Original file line number Diff line number Diff line change @@ -39,10 +39,8 @@ environment YAML
3939files] ( https://github.com/rapidsai/cugraph/blob/main/conda/environments ) .
4040
4141``` bash
42-
43- # for CUDA 12.x
44- conda env create --name cugraph_dev --file $CUGRAPH_HOME /conda/environments/all_cuda-129_arch-x86_64.yaml
45-
42+ # for CUDA 13.x
43+ conda env create --name cugraph_dev --file $CUGRAPH_HOME /conda/environments/all_cuda-130_arch-x86_64.yaml
4644
4745# activate the environment
4846conda activate cugraph_dev
@@ -54,13 +52,9 @@ conda deactivate
5452The environment can be updated as cugraph adds/removes/updates its dependencies. To do so, run:
5553
5654``` bash
57-
58- # for CUDA 12.x
59- conda env update --name cugraph_dev --file $CUGRAPH_HOME /conda/environments/all_cuda-129_arch-x86_64.yaml
55+ # for CUDA 13.x
56+ conda env update --name cugraph_dev --file $CUGRAPH_HOME /conda/environments/all_cuda-130_arch-x86_64.yaml
6057conda activate cugraph_dev
61-
62-
63-
6458```
6559
6660### Build and Install
Original file line number Diff line number Diff line change @@ -32,13 +32,24 @@ conda install -c rapidsai -c conda-forge -c nvidia nx-cugraph
3232```
3333
3434### pip
35+
3536** Nightly version**
37+
3638``` bash
39+ # CUDA 13
40+ pip install nx-cugraph-cu13 --extra-index-url https://pypi.anaconda.org/rapidsai-wheels-nightly/simple
41+
42+ # CUDA 12
3743pip install nx-cugraph-cu12 --extra-index-url https://pypi.anaconda.org/rapidsai-wheels-nightly/simple
3844```
3945
4046** Stable version**
47+
4148``` bash
49+ # CUDA 13
50+ pip install nx-cugraph-cu13 --extra-index-url https://pypi.nvidia.com
51+
52+ # CUDA 12
4253pip install nx-cugraph-cu12 --extra-index-url https://pypi.nvidia.com
4354```
4455
Original file line number Diff line number Diff line change @@ -34,15 +34,24 @@ Replace the package name in the example below to the one you want to install.
3434Install and update WholeGraph using the conda command:
3535
3636``` bash
37+ # CUDA 13
38+ conda install -c rapidsai -c conda-forge -c nvidia wholegraph cudatoolkit=13.0
39+
40+ # CUDA 12
3741conda install -c rapidsai -c conda-forge -c nvidia wholegraph cudatoolkit=12.9
3842```
3943
4044<br >
4145
42- ## PIP
43- wholegraph, and all of RAPIDS, is available via pip.
46+ ## pip
4447
45- ```
48+ wholegraph, and all of RAPIDS, is available via ` pip ` .
49+
50+ ``` shell
51+ # CUDA 13
52+ pip install wholegraph-cu13 --extra-index-url=https://pypi.nvidia.com
53+
54+ # CUDA 12
4655pip install wholegraph-cu12 --extra-index-url=https://pypi.nvidia.com
4756```
4857
Original file line number Diff line number Diff line change @@ -50,8 +50,8 @@ __Create the conda development environment__
5050``` bash
5151# create the conda environment (assuming in base `wholegraph` directory)
5252
53- # for CUDA 12 .x
54- conda env create --name cugraph_gnn_dev --file conda/environments/all_cuda-129_arch -x86_64.yaml
53+ # for CUDA 13 .x
54+ conda env create --name cugraph_gnn_dev --file conda/environments/all_cuda-130_arch -x86_64.yaml
5555
5656# activate the environment
5757conda activate cugraph_gnn_dev
You can’t perform that action at this time.
0 commit comments