Skip to content

Commit

Permalink
Remove librmm docs
Browse files Browse the repository at this point in the history
  • Loading branch information
raydouglass committed Jun 7, 2024
1 parent d11bbee commit 560fba5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 17 deletions.
11 changes: 0 additions & 11 deletions _data/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,17 +216,6 @@ libs:
legacy: 1
stable: 1
nightly: 1
librmm:
name: librmm
path: librmm
desc: 'RAPIDS Memory Manager (RMM) is a central place for all device memory allocations in cuDF (C++ and Python) and other RAPIDS libraries. In addition, it is a replacement allocator for CUDA Device Memory (and CUDA Managed Memory) and a pool allocator to make CUDA device memory allocation / deallocation faster and asynchronous.'
ghlink: https://github.com/rapidsai/rmm
cllink: https://github.com/rapidsai/rmm/blob/main/CHANGELOG.md
versions:
# enable or disable links; 0 = disabled, 1 = enabled
legacy: 1
stable: 0
nightly: 0
libkvikio:
name: libkvikio
path: libkvikio
Expand Down
4 changes: 2 additions & 2 deletions _redirects
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
/api/libcuspatial/ /api/libcuspatial/stable/
/api/libkvikio /api/libkvikio/stable/
/api/libkvikio/ /api/libkvikio/stable/
/api/librmm /api/librmm/stable/
/api/librmm/ /api/librmm/stable/
/api/librmm /api/rmm/stable/
/api/librmm/ /api/rmm/stable/
/api/raft /api/raft/stable/
/api/raft/ /api/raft/stable/
/api/rapids-cmake /api/rapids-cmake/stable/
Expand Down
6 changes: 2 additions & 4 deletions ci/customization/lib_map.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
# Copyright (c) 2024, NVIDIA CORPORATION.
#
# This script generates a lib_map.json file that maps each RAPIDS library
# to its default documentation page for each version (legacy, stable, nightly).
Expand Down Expand Up @@ -35,10 +36,7 @@ for FOLDER in _site/api/*/ ; do
if [ -d "${VERSION}" ]; then
DEFAULT_PATH+="/${VERSION}"

if [[ "${LIB}" = librmm ]]; then
DEFAULT_PATH+="/annotated/"

elif [ "${LIB}" = libcudf ]; then
if [ "${LIB}" = libcudf ]; then
DEFAULT_PATH+="/namespacecudf/"

elif [ "${LIB}" = cudf ]; then
Expand Down

0 comments on commit 560fba5

Please sign in to comment.