Skip to content

Commit

Permalink
DOC
Browse files Browse the repository at this point in the history
  • Loading branch information
raydouglass committed Nov 10, 2022
1 parent 7176d94 commit 433972b
Show file tree
Hide file tree
Showing 11 changed files with 31 additions and 27 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# raft 23.02.00 (Date TBD)

Please see https://github.com/rapidsai/raft/releases/tag/v23.02.00a for the latest changes to this development branch.

# raft 22.12.00 (Date TBD)

Please see https://github.com/rapidsai/raft/releases/tag/v22.12.00a for the latest changes to this development branch.
Expand Down
2 changes: 1 addition & 1 deletion ci/cpu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export CMAKE_GENERATOR="Ninja"
export CONDA_BLD_DIR="${WORKSPACE}/.conda-bld"

# ucx-py version
export UCX_PY_VERSION='0.29.*'
export UCX_PY_VERSION='0.30.*'

################################################################################
# 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 @@ -31,7 +31,7 @@ export MINOR_VERSION=`echo $GIT_DESCRIBE_TAG | grep -o -E '([0-9]+\.[0-9]+)'`
unset GIT_DESCRIBE_TAG

# ucx-py version
export UCX_PY_VERSION='0.29.*'
export UCX_PY_VERSION='0.30.*'

# Whether to install dask nightly or stable packages.
export INSTALL_DASK_MAIN=1
Expand Down
12 changes: 6 additions & 6 deletions conda/environments/raft_dev_cuda11.2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ dependencies:
- dask>=2022.9.2
- distributed>=2022.9.2
- scikit-build>=0.13.1
- rapids-build-env=22.12.*
- rapids-notebook-env=22.12.*
- rapids-doc-env=22.12.*
- rmm=22.12.*
- dask-cuda=22.12.*
- rapids-build-env=23.02.*
- rapids-notebook-env=23.02.*
- rapids-doc-env=23.02.*
- rmm=23.02.*
- dask-cuda=23.02.*
- ucx>=1.13.0
- ucx-py=0.29.*
- ucx-py=0.30.*
- ucx-proc=*=gpu
- doxygen>=1.8.20
- libfaiss>=1.7.0
Expand Down
12 changes: 6 additions & 6 deletions conda/environments/raft_dev_cuda11.4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ dependencies:
- dask>=2022.9.2
- distributed>=2022.9.2
- scikit-build>=0.13.1
- rapids-build-env=22.12.*
- rapids-notebook-env=22.12.*
- rapids-doc-env=22.12.*
- rmm=22.12.*
- dask-cuda=22.12.*
- rapids-build-env=23.02.*
- rapids-notebook-env=23.02.*
- rapids-doc-env=23.02.*
- rmm=23.02.*
- dask-cuda=23.02.*
- ucx>=1.13.0
- ucx-py=0.29.*
- ucx-py=0.30.*
- ucx-proc=*=gpu
- doxygen>=1.8.20
- libfaiss>=1.7.0
Expand Down
12 changes: 6 additions & 6 deletions conda/environments/raft_dev_cuda11.5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ dependencies:
- dask>=2022.9.2
- distributed>=2022.9.2
- scikit-build>=0.13.1
- rapids-build-env=22.12.*
- rapids-notebook-env=22.12.*
- rapids-doc-env=22.12.*
- rmm=22.12.*
- dask-cuda=22.12.*
- rapids-build-env=23.02.*
- rapids-notebook-env=23.02.*
- rapids-doc-env=23.02.*
- rmm=23.02.*
- dask-cuda=23.02.*
- ucx>=1.13.0
- ucx-py=0.29.*
- ucx-py=0.30.*
- ucx-proc=*=gpu
- doxygen>=1.8.20
- libfaiss>=1.7.0
Expand Down
4 changes: 2 additions & 2 deletions cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#=============================================================================
set(RAPIDS_VERSION "22.12")
set(RAFT_VERSION "22.12.00")
set(RAPIDS_VERSION "23.02")
set(RAFT_VERSION "23.02.00")

cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR)
include(../fetch_rapids.cmake)
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@
# built documents.
#
# The short X.Y version.
version = '22.12'
version = '23.02'
# The full version, including alpha/beta/rc tags.
release = '22.12.00'
release = '23.02.00'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion fetch_rapids.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# the License.
# =============================================================================
if(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/RAFT_RAPIDS.cmake)
file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-22.12/RAPIDS.cmake
file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-23.02/RAPIDS.cmake
${CMAKE_CURRENT_BINARY_DIR}/RAFT_RAPIDS.cmake
)
endif()
Expand Down
2 changes: 1 addition & 1 deletion python/pylibraft/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR)

set(pylibraft_version 22.12.00)
set(pylibraft_version 23.02.00)

include(../../fetch_rapids.cmake)

Expand Down
2 changes: 1 addition & 1 deletion python/raft-dask/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR)

set(raft_dask_version 22.12.00)
set(raft_dask_version 23.02.00)

include(../../fetch_rapids.cmake)

Expand Down

0 comments on commit 433972b

Please sign in to comment.