Skip to content

Commit

Permalink
DOC
Browse files Browse the repository at this point in the history
  • Loading branch information
raydouglass committed Jan 13, 2022
1 parent a3be4de commit 084609c
Show file tree
Hide file tree
Showing 12 changed files with 42 additions and 38 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# cuGraph 22.04.00 (Date TBD)

Please see https://github.com/rapidsai/cugraph/releases/tag/v22.04.00a for the latest changes to this development branch.

# cuGraph 22.02.00 (Date TBD)

Please see https://github.com/rapidsai/cugraph/releases/tag/v22.02.00a for the latest changes to this development branch.
Expand Down
2 changes: 1 addition & 1 deletion ci/benchmark/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export DATASETS_DIR=${WORKSPACE}/datasets
export BENCHMARKS_DIR=${WORKSPACE}/benchmarks

# ucx-py version
export UCX_PY_VERSION='0.24.*'
export UCX_PY_VERSION='0.25.*'

##########################################
# Environment Setup #
Expand Down
2 changes: 1 addition & 1 deletion ci/cpu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export CMAKE_GENERATOR="Ninja"
export CONDA_BLD_DIR="${WORKSPACE}/.conda-bld"

# ucx-py version
export UCX_PY_VERSION='0.24.*'
export UCX_PY_VERSION='0.25.*'

################################################################################
# SETUP - Check environment
Expand Down
2 changes: 1 addition & 1 deletion ci/gpu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export GIT_DESCRIBE_TAG=`git describe --tags`
export MINOR_VERSION=`echo $GIT_DESCRIBE_TAG | grep -o -E '([0-9]+\.[0-9]+)'`

# ucx-py version
export UCX_PY_VERSION='0.24.*'
export UCX_PY_VERSION='0.25.*'

################################################################################
# SETUP - Check environment
Expand Down
14 changes: 7 additions & 7 deletions conda/environments/cugraph_dev_cuda11.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ channels:
- conda-forge
dependencies:
- cudatoolkit=11.0
- cudf=22.02.*
- libcudf=22.02.*
- rmm=22.02.*
- librmm=22.02.*
- cudf=22.04.*
- libcudf=22.04.*
- rmm=22.04.*
- librmm=22.04.*
- dask>=2021.09.1
- distributed>=2021.09.1
- dask-cuda=22.02.*
- dask-cudf=22.02.*
- dask-cuda=22.04.*
- dask-cudf=22.04.*
- nccl>=2.9.9
- ucx-py=0.24.*
- ucx-py=0.25.*
- ucx-proc=*=gpu
- scipy
- networkx>=2.5.1
Expand Down
14 changes: 7 additions & 7 deletions conda/environments/cugraph_dev_cuda11.2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ channels:
- conda-forge
dependencies:
- cudatoolkit=11.2
- cudf=22.02.*
- libcudf=22.02.*
- rmm=22.02.*
- librmm=22.02.*
- cudf=22.04.*
- libcudf=22.04.*
- rmm=22.04.*
- librmm=22.04.*
- dask>=2021.09.1
- distributed>=2021.09.1
- dask-cuda=22.02.*
- dask-cudf=22.02.*
- dask-cuda=22.04.*
- dask-cudf=22.04.*
- nccl>=2.9.9
- ucx-py=0.24.*
- ucx-py=0.25.*
- ucx-proc=*=gpu
- scipy
- networkx>=2.5.1
Expand Down
14 changes: 7 additions & 7 deletions conda/environments/cugraph_dev_cuda11.4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ channels:
- conda-forge
dependencies:
- cudatoolkit=11.4
- cudf=22.02.*
- libcudf=22.02.*
- rmm=22.02.*
- librmm=22.02.*
- cudf=22.04.*
- libcudf=22.04.*
- rmm=22.04.*
- librmm=22.04.*
- dask>=2021.09.1
- distributed>=2021.09.1
- dask-cuda=22.02.*
- dask-cudf=22.02.*
- dask-cuda=22.04.*
- dask-cudf=22.04.*
- nccl>=2.9.9
- ucx-py=0.24.*
- ucx-py=0.25.*
- ucx-proc=*=gpu
- scipy
- networkx>=2.5.1
Expand Down
14 changes: 7 additions & 7 deletions conda/environments/cugraph_dev_cuda11.5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ channels:
- conda-forge
dependencies:
- cudatoolkit=11.5
- cudf=22.02.*
- libcudf=22.02.*
- rmm=22.02.*
- librmm=22.02.*
- cudf=22.04.*
- libcudf=22.04.*
- rmm=22.04.*
- librmm=22.04.*
- dask>=2021.09.1
- distributed>=2021.09.1
- dask-cuda=22.02.*
- dask-cudf=22.02.*
- dask-cuda=22.04.*
- dask-cudf=22.04.*
- nccl>=2.9.9
- ucx-py=0.24.*
- ucx-py=0.25.*
- ucx-proc=*=gpu
- scipy
- networkx>=2.5.1
Expand Down
4 changes: 2 additions & 2 deletions cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#=============================================================================

cmake_minimum_required(VERSION 3.20.1 FATAL_ERROR)
file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-22.02/RAPIDS.cmake
file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-22.04/RAPIDS.cmake
${CMAKE_BINARY_DIR}/RAPIDS.cmake)
include(${CMAKE_BINARY_DIR}/RAPIDS.cmake)

Expand All @@ -27,7 +27,7 @@ include(rapids-find)

rapids_cuda_init_architectures(CUGRAPH)

project(CUGRAPH VERSION 22.02.00 LANGUAGES C CXX CUDA)
project(CUGRAPH VERSION 22.04.00 LANGUAGES C CXX CUDA)

if(CMAKE_CUDA_COMPILER_ID STREQUAL "NVIDIA" AND
CMAKE_CUDA_COMPILER_VERSION VERSION_LESS 11.0)
Expand Down
2 changes: 1 addition & 1 deletion cpp/doxygen/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -2075,7 +2075,7 @@ SKIP_FUNCTION_MACROS = YES
# the path). If a tag file is not located in the directory in which doxygen is
# run, you must also specify the path to the tagfile here.

TAGFILES = rmm.tag=https://docs.rapids.ai/api/librmm/22.02
TAGFILES = rmm.tag=https://docs.rapids.ai/api/librmm/22.04

# When a file name is specified after GENERATE_TAGFILE, doxygen will create a
# tag file that is based on the input files it reads. See section "Linking to
Expand Down
4 changes: 2 additions & 2 deletions cpp/libcugraph_etl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#=============================================================================

cmake_minimum_required(VERSION 3.20.1 FATAL_ERROR)
file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-22.02/RAPIDS.cmake
file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-22.04/RAPIDS.cmake
${CMAKE_BINARY_DIR}/RAPIDS.cmake)
include(${CMAKE_BINARY_DIR}/RAPIDS.cmake)

Expand All @@ -27,7 +27,7 @@ include(rapids-find)

rapids_cuda_init_architectures(CUGRAPH_ETL)

project(CUGRAPH_ETL VERSION 22.02.00 LANGUAGES C CXX CUDA)
project(CUGRAPH_ETL VERSION 22.04.00 LANGUAGES C CXX CUDA)

if(CMAKE_CUDA_COMPILER_ID STREQUAL "NVIDIA" AND
CMAKE_CUDA_COMPILER_VERSION VERSION_LESS 11.0)
Expand Down
4 changes: 2 additions & 2 deletions docs/cugraph/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@
# built documents.
#
# The short X.Y version.
version = '22.02'
version = '22.04'
# The full version, including alpha/beta/rc tags.
release = '22.02.00'
release = '22.04.00'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 084609c

Please sign in to comment.