diff --git a/.github/workflows/deploy-cudf-java-docs.yaml b/.github/workflows/deploy-cudf-java-docs.yaml index 34cd16855fd..287fb0e5453 100644 --- a/.github/workflows/deploy-cudf-java-docs.yaml +++ b/.github/workflows/deploy-cudf-java-docs.yaml @@ -46,8 +46,8 @@ jobs: exit 1 fi - sed -i '/cudf-java:/,/stable:/s/stable: .*/stable: '"$NEW_STABLE_VALUE"'/' source/_data/docs.yml - echo "Updated stable value for cudf-java to $NEW_STABLE_VALUE in source/_data/docs.yml" + sed -i '/cudf-java:/,/stable:/s/stable: .*/stable: '"$NEW_STABLE_VALUE"'/' _data/docs.yml + echo "Updated stable value for cudf-java to $NEW_STABLE_VALUE in _data/docs.yml" jq --arg version "$VERSION" '."cudf-java".stable = $version' ci/customization/projects-to-versions.json > tmp.json \ && mv tmp.json ci/customization/projects-to-versions.json diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a5adf03e5fa..da79750707c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -15,14 +15,14 @@ repos: - id: trailing-whitespace exclude: | (?x)^( - source/assets/.*| - source/licenses/.* + assets/.*| + licenses/.* ) - id: end-of-file-fixer exclude: | (?x)^( - source/assets/.*| - source/licenses/.* + assets/.*| + licenses/.* ) - id: mixed-line-ending - id: debug-statements @@ -31,7 +31,7 @@ repos: - id: check-json exclude: | (?x)^( - source/assets/.*| + assets/.*| .devcontainer/devcontainer.json ) - id: check-yaml @@ -50,8 +50,8 @@ repos: - id: fix-smartquotes exclude: | (?x)^( - source/assets/.*| - source/licenses/.* + assets/.*| + licenses/.* ) - repo: https://github.com/codespell-project/codespell rev: v2.4.2 @@ -60,7 +60,7 @@ repos: types: [markdown] exclude: | (?x)^( - source/resources/conduct\.md + resources/conduct\.md )$ - repo: https://github.com/astral-sh/ruff-pre-commit rev: v0.15.9 diff --git a/source/404.md b/404.md similarity index 100% rename from source/404.md rename to 404.md diff --git a/Makefile b/Makefile index 6b5a961159e..dc2c053f77d 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ clean: rm -rf _site html: clean - $(UV) run sphinx-build -E -b dirhtml source _site -W --keep-going -n + $(UV) run sphinx-build -E -b dirhtml -c sphinx . _site -W --keep-going -n assemble: $(UV) run bash ci/download_from_s3.sh @@ -18,15 +18,14 @@ assemble: full: html assemble lint: - $(UV) run ruff check ci extensions scripts source/conf.py tests - $(UV) run ruff format --check ci extensions scripts source/conf.py tests + $(UV) run ruff check ci extensions scripts sphinx/conf.py tests + $(UV) run ruff format --check ci extensions scripts sphinx/conf.py tests test: $(UV) run pytest validate: $(UV) run python scripts/validate_site.py _site - $(UV) run python scripts/compare_routes.py tests/fixtures/jekyll_manifest.json _site check: lint test html validate diff --git a/README.md b/README.md index 9765208ac63..6e6178f395b 100644 --- a/README.md +++ b/README.md @@ -46,8 +46,9 @@ production site. ## Repository layout -- `source/` contains the portal content, Sphinx configuration, static assets, - and data files. +- Portal content, data, includes, and assets retain their established paths at + the repository root. +- `sphinx/` contains the Sphinx configuration, templates, and theme overrides. - `extensions/` contains the portal's data-rendering and publication extension. - `ci/` downloads and post-processes versioned API and deployment documentation. - `scripts/` and `tests/` validate rendered routes, content, and publication @@ -57,5 +58,3 @@ production site. The Sphinx portal was initially migrated from the Jekyll site at [`rapidsai/docs@b6afa0c`](https://github.com/rapidsai/docs/commit/b6afa0cbf4ddfc4c0a21f7c79b18631f214fd759). -The route and content fixture in `tests/fixtures/jekyll_manifest.json` preserves -that publication baseline. diff --git a/source/_data/docs.yml b/_data/docs.yml similarity index 99% rename from source/_data/docs.yml rename to _data/docs.yml index 4e11f9e83e7..939c48953e9 100644 --- a/source/_data/docs.yml +++ b/_data/docs.yml @@ -152,7 +152,7 @@ apis: cllink: https://github.com/rapidsai/ucxx/blob/main/CHANGELOG.md versions: # enable or disable links; 0 = disabled, 1 = enabled - # TODO: enable 'legacy' once ucxx legacy version moves to 0.46 in `source/_data/releases.json` + # TODO: enable 'legacy' once ucxx legacy version moves to 0.46 in `_data/releases.json` legacy: 0 stable: 1 nightly: 1 diff --git a/source/_data/platform_support.yml b/_data/platform_support.yml similarity index 100% rename from source/_data/platform_support.yml rename to _data/platform_support.yml diff --git a/source/_data/previous_releases.json b/_data/previous_releases.json similarity index 100% rename from source/_data/previous_releases.json rename to _data/previous_releases.json diff --git a/source/_data/releases.json b/_data/releases.json similarity index 100% rename from source/_data/releases.json rename to _data/releases.json diff --git a/source/_includes/bokeh.html b/_includes/bokeh.html similarity index 100% rename from source/_includes/bokeh.html rename to _includes/bokeh.html diff --git a/source/_includes/datashader.html b/_includes/datashader.html similarity index 100% rename from source/_includes/datashader.html rename to _includes/datashader.html diff --git a/source/_includes/holoviews.html b/_includes/holoviews.html similarity index 100% rename from source/_includes/holoviews.html rename to _includes/holoviews.html diff --git a/source/_includes/hvplot.html b/_includes/hvplot.html similarity index 100% rename from source/_includes/hvplot.html rename to _includes/hvplot.html diff --git a/source/_includes/plotly.html b/_includes/plotly.html similarity index 100% rename from source/_includes/plotly.html rename to _includes/plotly.html diff --git a/source/_includes/seaborn.html b/_includes/seaborn.html similarity index 100% rename from source/_includes/seaborn.html rename to _includes/seaborn.html diff --git a/source/_includes/selector.html b/_includes/selector.html similarity index 100% rename from source/_includes/selector.html rename to _includes/selector.html diff --git a/source/_includes/viz-cdn-js-css.html b/_includes/viz-cdn-js-css.html similarity index 100% rename from source/_includes/viz-cdn-js-css.html rename to _includes/viz-cdn-js-css.html diff --git a/source/_redirects b/_redirects similarity index 100% rename from source/_redirects rename to _redirects diff --git a/source/api.md b/api.md similarity index 100% rename from source/api.md rename to api.md diff --git a/source/assets/css/custom.css b/assets/css/custom.css similarity index 100% rename from source/assets/css/custom.css rename to assets/css/custom.css diff --git a/source/assets/css/custom_nvidia.css b/assets/css/custom_nvidia.css similarity index 100% rename from source/assets/css/custom_nvidia.css rename to assets/css/custom_nvidia.css diff --git a/source/assets/css/just-the-docs.css b/assets/css/just-the-docs.css similarity index 99% rename from source/assets/css/just-the-docs.css rename to assets/css/just-the-docs.css index 963c2a11dd8..4552695c860 100644 --- a/source/assets/css/just-the-docs.css +++ b/assets/css/just-the-docs.css @@ -2,7 +2,7 @@ /* SPDX-FileCopyrightText: Copyright (c) 2024-2025, NVIDIA CORPORATION & AFFILIATES. * All rights reserved. * SPDX-License-Identifier: Apache-2.0 */ - + /*! normalize.scss v0.1.0 | MIT License | based on git.io/normalize */ /** * 1. Set default font family to sans-serif. @@ -994,7 +994,7 @@ li .highlight { @media (min-width: 50rem) { .search { margin-bottom: 0; } } - + .search-input-wrap { display: flex; height: 100%; @@ -1011,7 +1011,7 @@ li .highlight { background-color: #fff; border-radius: 0; box-shadow: none; } } - + .search-input { align-self: center; width: 100%; @@ -1039,13 +1039,13 @@ li .highlight { @media (min-width: 50rem) and (min-width: 31.25rem) { .search-input { font-size: 14px !important; } } - + .search-icon { align-self: center; margin-right: 0.5rem; fill: #959396; order: 1; } - + .search-results-wrap { position: absolute; z-index: 100; @@ -1059,7 +1059,7 @@ li .highlight { @media (min-width: 50rem) { .search-results-wrap { width: 500px; } } - + .search-results-list { padding-left: 0; margin-top: 0.25rem; @@ -1075,11 +1075,11 @@ li .highlight { @media (min-width: 50rem) and (min-width: 31.25rem) { .search-results-list { font-size: 14px !important; } } - + .search-results-list-item { padding: 0; margin: 0; } - + .search-result { display: block; padding-top: 0.25rem; @@ -1092,7 +1092,7 @@ li .highlight { .search-result { padding-right: 1rem; padding-left: 1rem; } } - + .search-result-title { display: block; padding-top: 0.5rem; @@ -1104,7 +1104,7 @@ li .highlight { width: 40%; word-wrap: break-word; vertical-align: top; } } - + .search-result-rel-url { display: block; overflow: hidden; @@ -1115,7 +1115,7 @@ li .highlight { @media (min-width: 31.25rem) { .search-result-rel-url { font-size: 10px !important; } } - + .search-result-preview { display: block; padding-top: 0.5rem; @@ -1133,7 +1133,7 @@ li .highlight { display: inline-block; width: 60%; vertical-align: top; } } - + .search-result-highlight { font-weight: bold; color: #7253ed; } diff --git a/source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_cudf_0.json b/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_cudf_0.json similarity index 100% rename from source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_cudf_0.json rename to assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_cudf_0.json diff --git a/source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_cudf_1.json b/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_cudf_1.json similarity index 100% rename from source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_cudf_1.json rename to assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_cudf_1.json diff --git a/source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_cudf_2.json b/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_cudf_2.json similarity index 100% rename from source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_cudf_2.json rename to assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_cudf_2.json diff --git a/source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_pandas_0.json b/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_pandas_0.json similarity index 100% rename from source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_pandas_0.json rename to assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_pandas_0.json diff --git a/source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_pandas_1.json b/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_pandas_1.json similarity index 100% rename from source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_pandas_1.json rename to assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_pandas_1.json diff --git a/source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_pandas_2.json b/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_pandas_2.json similarity index 100% rename from source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_pandas_2.json rename to assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/bar_pandas_2.json diff --git a/source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_cudf_0.json b/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_cudf_0.json similarity index 100% rename from source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_cudf_0.json rename to assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_cudf_0.json diff --git a/source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_cudf_1.json b/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_cudf_1.json similarity index 100% rename from source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_cudf_1.json rename to assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_cudf_1.json diff --git a/source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_cudf_2.json b/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_cudf_2.json similarity index 100% rename from source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_cudf_2.json rename to assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_cudf_2.json diff --git a/source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_pandas_0.json b/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_pandas_0.json similarity index 100% rename from source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_pandas_0.json rename to assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_pandas_0.json diff --git a/source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_pandas_1.json b/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_pandas_1.json similarity index 100% rename from source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_pandas_1.json rename to assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_pandas_1.json diff --git a/source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_pandas_2.json b/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_pandas_2.json similarity index 100% rename from source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_pandas_2.json rename to assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/line_pandas_2.json diff --git a/source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_cudf_0.json b/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_cudf_0.json similarity index 100% rename from source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_cudf_0.json rename to assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_cudf_0.json diff --git a/source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_cudf_1.json b/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_cudf_1.json similarity index 100% rename from source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_cudf_1.json rename to assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_cudf_1.json diff --git a/source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_cudf_2.json b/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_cudf_2.json similarity index 100% rename from source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_cudf_2.json rename to assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_cudf_2.json diff --git a/source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_pandas_0.json b/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_pandas_0.json similarity index 100% rename from source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_pandas_0.json rename to assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_pandas_0.json diff --git a/source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_pandas_1.json b/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_pandas_1.json similarity index 100% rename from source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_pandas_1.json rename to assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_pandas_1.json diff --git a/source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_pandas_2.json b/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_pandas_2.json similarity index 100% rename from source/assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_pandas_2.json rename to assets/data/bokeh-JSON_362df7191b614a1bb145178166a0e20e/points_pandas_2.json diff --git a/source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_cudf_0.json b/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_cudf_0.json similarity index 100% rename from source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_cudf_0.json rename to assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_cudf_0.json diff --git a/source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_cudf_1.json b/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_cudf_1.json similarity index 100% rename from source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_cudf_1.json rename to assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_cudf_1.json diff --git a/source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_cudf_2.json b/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_cudf_2.json similarity index 100% rename from source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_cudf_2.json rename to assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_cudf_2.json diff --git a/source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_pandas_0.json b/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_pandas_0.json similarity index 100% rename from source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_pandas_0.json rename to assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_pandas_0.json diff --git a/source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_pandas_1.json b/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_pandas_1.json similarity index 100% rename from source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_pandas_1.json rename to assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_pandas_1.json diff --git a/source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_pandas_2.json b/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_pandas_2.json similarity index 100% rename from source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_pandas_2.json rename to assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/line_pandas_2.json diff --git a/source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_cudf_0.json b/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_cudf_0.json similarity index 100% rename from source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_cudf_0.json rename to assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_cudf_0.json diff --git a/source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_cudf_1.json b/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_cudf_1.json similarity index 100% rename from source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_cudf_1.json rename to assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_cudf_1.json diff --git a/source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_cudf_2.json b/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_cudf_2.json similarity index 100% rename from source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_cudf_2.json rename to assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_cudf_2.json diff --git a/source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_pandas_0.json b/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_pandas_0.json similarity index 100% rename from source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_pandas_0.json rename to assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_pandas_0.json diff --git a/source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_pandas_1.json b/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_pandas_1.json similarity index 100% rename from source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_pandas_1.json rename to assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_pandas_1.json diff --git a/source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_pandas_2.json b/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_pandas_2.json similarity index 100% rename from source/assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_pandas_2.json rename to assets/data/datashader-JSON_3e5f10d466b14980b1d56e10c837e89b/points_pandas_2.json diff --git a/source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_cudf_0.json b/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_cudf_0.json similarity index 100% rename from source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_cudf_0.json rename to assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_cudf_0.json diff --git a/source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_cudf_1.json b/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_cudf_1.json similarity index 100% rename from source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_cudf_1.json rename to assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_cudf_1.json diff --git a/source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_cudf_2.json b/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_cudf_2.json similarity index 100% rename from source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_cudf_2.json rename to assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_cudf_2.json diff --git a/source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_pandas_0.json b/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_pandas_0.json similarity index 100% rename from source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_pandas_0.json rename to assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_pandas_0.json diff --git a/source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_pandas_1.json b/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_pandas_1.json similarity index 100% rename from source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_pandas_1.json rename to assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_pandas_1.json diff --git a/source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_pandas_2.json b/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_pandas_2.json similarity index 100% rename from source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_pandas_2.json rename to assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/bar_pandas_2.json diff --git a/source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_cudf_0.json b/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_cudf_0.json similarity index 100% rename from source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_cudf_0.json rename to assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_cudf_0.json diff --git a/source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_cudf_1.json b/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_cudf_1.json similarity index 100% rename from source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_cudf_1.json rename to assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_cudf_1.json diff --git a/source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_cudf_2.json b/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_cudf_2.json similarity index 100% rename from source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_cudf_2.json rename to assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_cudf_2.json diff --git a/source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_pandas_0.json b/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_pandas_0.json similarity index 100% rename from source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_pandas_0.json rename to assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_pandas_0.json diff --git a/source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_pandas_1.json b/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_pandas_1.json similarity index 100% rename from source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_pandas_1.json rename to assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_pandas_1.json diff --git a/source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_pandas_2.json b/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_pandas_2.json similarity index 100% rename from source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_pandas_2.json rename to assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/line_pandas_2.json diff --git a/source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_cudf_0.json b/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_cudf_0.json similarity index 100% rename from source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_cudf_0.json rename to assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_cudf_0.json diff --git a/source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_cudf_1.json b/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_cudf_1.json similarity index 100% rename from source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_cudf_1.json rename to assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_cudf_1.json diff --git a/source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_cudf_2.json b/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_cudf_2.json similarity index 100% rename from source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_cudf_2.json rename to assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_cudf_2.json diff --git a/source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_pandas_0.json b/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_pandas_0.json similarity index 100% rename from source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_pandas_0.json rename to assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_pandas_0.json diff --git a/source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_pandas_1.json b/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_pandas_1.json similarity index 100% rename from source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_pandas_1.json rename to assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_pandas_1.json diff --git a/source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_pandas_2.json b/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_pandas_2.json similarity index 100% rename from source/assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_pandas_2.json rename to assets/data/holoviews-JSON_e4571a178971432dab4dcadfe8920f69/points_pandas_2.json diff --git a/source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_cudf_0.json b/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_cudf_0.json similarity index 100% rename from source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_cudf_0.json rename to assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_cudf_0.json diff --git a/source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_cudf_1.json b/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_cudf_1.json similarity index 100% rename from source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_cudf_1.json rename to assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_cudf_1.json diff --git a/source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_cudf_2.json b/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_cudf_2.json similarity index 100% rename from source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_cudf_2.json rename to assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_cudf_2.json diff --git a/source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_pandas_0.json b/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_pandas_0.json similarity index 100% rename from source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_pandas_0.json rename to assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_pandas_0.json diff --git a/source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_pandas_1.json b/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_pandas_1.json similarity index 100% rename from source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_pandas_1.json rename to assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_pandas_1.json diff --git a/source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_pandas_2.json b/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_pandas_2.json similarity index 100% rename from source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_pandas_2.json rename to assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/bar_pandas_2.json diff --git a/source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_cudf_0.json b/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_cudf_0.json similarity index 100% rename from source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_cudf_0.json rename to assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_cudf_0.json diff --git a/source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_cudf_1.json b/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_cudf_1.json similarity index 100% rename from source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_cudf_1.json rename to assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_cudf_1.json diff --git a/source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_cudf_2.json b/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_cudf_2.json similarity index 100% rename from source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_cudf_2.json rename to assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_cudf_2.json diff --git a/source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_pandas_0.json b/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_pandas_0.json similarity index 100% rename from source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_pandas_0.json rename to assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_pandas_0.json diff --git a/source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_pandas_1.json b/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_pandas_1.json similarity index 100% rename from source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_pandas_1.json rename to assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_pandas_1.json diff --git a/source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_pandas_2.json b/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_pandas_2.json similarity index 100% rename from source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_pandas_2.json rename to assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/line_pandas_2.json diff --git a/source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_cudf_0.json b/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_cudf_0.json similarity index 100% rename from source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_cudf_0.json rename to assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_cudf_0.json diff --git a/source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_cudf_1.json b/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_cudf_1.json similarity index 100% rename from source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_cudf_1.json rename to assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_cudf_1.json diff --git a/source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_cudf_2.json b/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_cudf_2.json similarity index 100% rename from source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_cudf_2.json rename to assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_cudf_2.json diff --git a/source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_pandas_0.json b/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_pandas_0.json similarity index 100% rename from source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_pandas_0.json rename to assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_pandas_0.json diff --git a/source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_pandas_1.json b/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_pandas_1.json similarity index 100% rename from source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_pandas_1.json rename to assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_pandas_1.json diff --git a/source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_pandas_2.json b/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_pandas_2.json similarity index 100% rename from source/assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_pandas_2.json rename to assets/data/hvplot-JSON_9066d597776646c6af4c1870d7c0c2cd/points_pandas_2.json diff --git a/source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_cudf_0.json b/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_cudf_0.json similarity index 100% rename from source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_cudf_0.json rename to assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_cudf_0.json diff --git a/source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_cudf_1.json b/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_cudf_1.json similarity index 100% rename from source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_cudf_1.json rename to assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_cudf_1.json diff --git a/source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_cudf_2.json b/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_cudf_2.json similarity index 100% rename from source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_cudf_2.json rename to assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_cudf_2.json diff --git a/source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_pandas_0.json b/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_pandas_0.json similarity index 100% rename from source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_pandas_0.json rename to assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_pandas_0.json diff --git a/source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_pandas_1.json b/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_pandas_1.json similarity index 100% rename from source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_pandas_1.json rename to assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_pandas_1.json diff --git a/source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_pandas_2.json b/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_pandas_2.json similarity index 100% rename from source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_pandas_2.json rename to assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/bar_pandas_2.json diff --git a/source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_cudf_0.json b/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_cudf_0.json similarity index 100% rename from source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_cudf_0.json rename to assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_cudf_0.json diff --git a/source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_cudf_1.json b/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_cudf_1.json similarity index 100% rename from source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_cudf_1.json rename to assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_cudf_1.json diff --git a/source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_cudf_2.json b/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_cudf_2.json similarity index 100% rename from source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_cudf_2.json rename to assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_cudf_2.json diff --git a/source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_pandas_0.json b/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_pandas_0.json similarity index 100% rename from source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_pandas_0.json rename to assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_pandas_0.json diff --git a/source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_pandas_1.json b/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_pandas_1.json similarity index 100% rename from source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_pandas_1.json rename to assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_pandas_1.json diff --git a/source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_pandas_2.json b/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_pandas_2.json similarity index 100% rename from source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_pandas_2.json rename to assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/line_pandas_2.json diff --git a/source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_cudf_0.json b/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_cudf_0.json similarity index 100% rename from source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_cudf_0.json rename to assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_cudf_0.json diff --git a/source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_cudf_1.json b/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_cudf_1.json similarity index 100% rename from source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_cudf_1.json rename to assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_cudf_1.json diff --git a/source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_cudf_2.json b/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_cudf_2.json similarity index 100% rename from source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_cudf_2.json rename to assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_cudf_2.json diff --git a/source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_pandas_0.json b/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_pandas_0.json similarity index 100% rename from source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_pandas_0.json rename to assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_pandas_0.json diff --git a/source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_pandas_1.json b/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_pandas_1.json similarity index 100% rename from source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_pandas_1.json rename to assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_pandas_1.json diff --git a/source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_pandas_2.json b/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_pandas_2.json similarity index 100% rename from source/assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_pandas_2.json rename to assets/data/plotly-JSON_541c64c871f546008e0a79ea590adc9f/points_pandas_2.json diff --git a/source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_cudf_0.json b/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_cudf_0.json similarity index 100% rename from source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_cudf_0.json rename to assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_cudf_0.json diff --git a/source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_cudf_1.json b/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_cudf_1.json similarity index 100% rename from source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_cudf_1.json rename to assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_cudf_1.json diff --git a/source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_cudf_2.json b/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_cudf_2.json similarity index 100% rename from source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_cudf_2.json rename to assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_cudf_2.json diff --git a/source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_pandas_0.json b/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_pandas_0.json similarity index 100% rename from source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_pandas_0.json rename to assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_pandas_0.json diff --git a/source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_pandas_1.json b/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_pandas_1.json similarity index 100% rename from source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_pandas_1.json rename to assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_pandas_1.json diff --git a/source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_pandas_2.json b/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_pandas_2.json similarity index 100% rename from source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_pandas_2.json rename to assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/bar_pandas_2.json diff --git a/source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_cudf_0.json b/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_cudf_0.json similarity index 100% rename from source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_cudf_0.json rename to assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_cudf_0.json diff --git a/source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_cudf_1.json b/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_cudf_1.json similarity index 100% rename from source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_cudf_1.json rename to assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_cudf_1.json diff --git a/source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_cudf_2.json b/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_cudf_2.json similarity index 100% rename from source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_cudf_2.json rename to assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_cudf_2.json diff --git a/source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_pandas_0.json b/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_pandas_0.json similarity index 100% rename from source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_pandas_0.json rename to assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_pandas_0.json diff --git a/source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_pandas_1.json b/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_pandas_1.json similarity index 100% rename from source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_pandas_1.json rename to assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_pandas_1.json diff --git a/source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_pandas_2.json b/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_pandas_2.json similarity index 100% rename from source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_pandas_2.json rename to assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/line_pandas_2.json diff --git a/source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_cudf_0.json b/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_cudf_0.json similarity index 100% rename from source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_cudf_0.json rename to assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_cudf_0.json diff --git a/source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_cudf_1.json b/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_cudf_1.json similarity index 100% rename from source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_cudf_1.json rename to assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_cudf_1.json diff --git a/source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_cudf_2.json b/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_cudf_2.json similarity index 100% rename from source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_cudf_2.json rename to assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_cudf_2.json diff --git a/source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_pandas_0.json b/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_pandas_0.json similarity index 100% rename from source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_pandas_0.json rename to assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_pandas_0.json diff --git a/source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_pandas_1.json b/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_pandas_1.json similarity index 100% rename from source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_pandas_1.json rename to assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_pandas_1.json diff --git a/source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_pandas_2.json b/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_pandas_2.json similarity index 100% rename from source/assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_pandas_2.json rename to assets/data/seaborn-JSON_b94cd7e206d34ec7949514b993d2d19b/points_pandas_2.json diff --git a/source/assets/images/bokeh-logo.svg b/assets/images/bokeh-logo.svg similarity index 100% rename from source/assets/images/bokeh-logo.svg rename to assets/images/bokeh-logo.svg diff --git a/source/assets/images/clifford_interact.png b/assets/images/clifford_interact.png similarity index 100% rename from source/assets/images/clifford_interact.png rename to assets/images/clifford_interact.png diff --git a/source/assets/images/cuxfilter-demo.gif b/assets/images/cuxfilter-demo.gif similarity index 100% rename from source/assets/images/cuxfilter-demo.gif rename to assets/images/cuxfilter-demo.gif diff --git a/source/assets/images/datashader-census-rapids.png b/assets/images/datashader-census-rapids.png similarity index 100% rename from source/assets/images/datashader-census-rapids.png rename to assets/images/datashader-census-rapids.png diff --git a/source/assets/images/datashader-logo.png b/assets/images/datashader-logo.png similarity index 100% rename from source/assets/images/datashader-logo.png rename to assets/images/datashader-logo.png diff --git a/source/assets/images/downloads-github.png b/assets/images/downloads-github.png similarity index 100% rename from source/assets/images/downloads-github.png rename to assets/images/downloads-github.png diff --git a/source/assets/images/downloads.png b/assets/images/downloads.png similarity index 100% rename from source/assets/images/downloads.png rename to assets/images/downloads.png diff --git a/source/assets/images/gapminders.png b/assets/images/gapminders.png similarity index 100% rename from source/assets/images/gapminders.png rename to assets/images/gapminders.png diff --git a/source/assets/images/heatmap.png b/assets/images/heatmap.png similarity index 100% rename from source/assets/images/heatmap.png rename to assets/images/heatmap.png diff --git a/source/assets/images/hexagon-layer.jpg b/assets/images/hexagon-layer.jpg similarity index 100% rename from source/assets/images/hexagon-layer.jpg rename to assets/images/hexagon-layer.jpg diff --git a/source/assets/images/hexbin_marginals.png b/assets/images/hexbin_marginals.png similarity index 100% rename from source/assets/images/hexbin_marginals.png rename to assets/images/hexbin_marginals.png diff --git a/source/assets/images/holoviews-logo.png b/assets/images/holoviews-logo.png similarity index 100% rename from source/assets/images/holoviews-logo.png rename to assets/images/holoviews-logo.png diff --git a/source/assets/images/hvplot-logo.png b/assets/images/hvplot-logo.png similarity index 100% rename from source/assets/images/hvplot-logo.png rename to assets/images/hvplot-logo.png diff --git a/source/assets/images/label-checker/correct.png b/assets/images/label-checker/correct.png similarity index 100% rename from source/assets/images/label-checker/correct.png rename to assets/images/label-checker/correct.png diff --git a/source/assets/images/label-checker/do_not_merge.png b/assets/images/label-checker/do_not_merge.png similarity index 100% rename from source/assets/images/label-checker/do_not_merge.png rename to assets/images/label-checker/do_not_merge.png diff --git a/source/assets/images/label-checker/many_breaking.png b/assets/images/label-checker/many_breaking.png similarity index 100% rename from source/assets/images/label-checker/many_breaking.png rename to assets/images/label-checker/many_breaking.png diff --git a/source/assets/images/label-checker/many_cat.png b/assets/images/label-checker/many_cat.png similarity index 100% rename from source/assets/images/label-checker/many_cat.png rename to assets/images/label-checker/many_cat.png diff --git a/source/assets/images/label-checker/missing_breaking.png b/assets/images/label-checker/missing_breaking.png similarity index 100% rename from source/assets/images/label-checker/missing_breaking.png rename to assets/images/label-checker/missing_breaking.png diff --git a/source/assets/images/label-checker/missing_cat.png b/assets/images/label-checker/missing_cat.png similarity index 100% rename from source/assets/images/label-checker/missing_cat.png rename to assets/images/label-checker/missing_cat.png diff --git a/source/assets/images/label-checker/missing_cat_breaking.png b/assets/images/label-checker/missing_cat_breaking.png similarity index 100% rename from source/assets/images/label-checker/missing_cat_breaking.png rename to assets/images/label-checker/missing_cat_breaking.png diff --git a/source/assets/images/latex_blackbody_radiation.png b/assets/images/latex_blackbody_radiation.png similarity index 100% rename from source/assets/images/latex_blackbody_radiation.png rename to assets/images/latex_blackbody_radiation.png diff --git a/source/assets/images/nightly_pipeline.png b/assets/images/nightly_pipeline.png similarity index 100% rename from source/assets/images/nightly_pipeline.png rename to assets/images/nightly_pipeline.png diff --git a/source/assets/images/nodeRAPIDS-streaming.png b/assets/images/nodeRAPIDS-streaming.png similarity index 100% rename from source/assets/images/nodeRAPIDS-streaming.png rename to assets/images/nodeRAPIDS-streaming.png diff --git a/source/assets/images/nytaxi_hover.gif b/assets/images/nytaxi_hover.gif similarity index 100% rename from source/assets/images/nytaxi_hover.gif rename to assets/images/nytaxi_hover.gif diff --git a/source/assets/images/panel-logo.png b/assets/images/panel-logo.png similarity index 100% rename from source/assets/images/panel-logo.png rename to assets/images/panel-logo.png diff --git a/source/assets/images/plotly-dash.png b/assets/images/plotly-dash.png similarity index 100% rename from source/assets/images/plotly-dash.png rename to assets/images/plotly-dash.png diff --git a/source/assets/images/plotly-logo.png b/assets/images/plotly-logo.png similarity index 100% rename from source/assets/images/plotly-logo.png rename to assets/images/plotly-logo.png diff --git a/source/assets/images/pyDeck-logo.svg b/assets/images/pyDeck-logo.svg similarity index 100% rename from source/assets/images/pyDeck-logo.svg rename to assets/images/pyDeck-logo.svg diff --git a/source/assets/images/rapids_logo.png b/assets/images/rapids_logo.png similarity index 100% rename from source/assets/images/rapids_logo.png rename to assets/images/rapids_logo.png diff --git a/source/assets/images/reproducing-ci/container.png b/assets/images/reproducing-ci/container.png similarity index 100% rename from source/assets/images/reproducing-ci/container.png rename to assets/images/reproducing-ci/container.png diff --git a/source/assets/images/reproducing-ci/prompts.png b/assets/images/reproducing-ci/prompts.png similarity index 100% rename from source/assets/images/reproducing-ci/prompts.png rename to assets/images/reproducing-ci/prompts.png diff --git a/assets/images/seaborn-logo.svg b/assets/images/seaborn-logo.svg new file mode 100644 index 00000000000..57f1f71345a --- /dev/null +++ b/assets/images/seaborn-logo.svg @@ -0,0 +1,5216 @@ + + + + + + + + + 2020-09-07T14:13:58.676334 + image/svg+xml + + + Matplotlib v3.3.1, https://matplotlib.org/ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/assets/images/telemetry/calculate_field.png b/assets/images/telemetry/calculate_field.png similarity index 100% rename from source/assets/images/telemetry/calculate_field.png rename to assets/images/telemetry/calculate_field.png diff --git a/source/assets/images/telemetry/field_type_and_value_options.png b/assets/images/telemetry/field_type_and_value_options.png similarity index 100% rename from source/assets/images/telemetry/field_type_and_value_options.png rename to assets/images/telemetry/field_type_and_value_options.png diff --git a/source/assets/images/telemetry/filter_by_values.png b/assets/images/telemetry/filter_by_values.png similarity index 100% rename from source/assets/images/telemetry/filter_by_values.png rename to assets/images/telemetry/filter_by_values.png diff --git a/source/assets/images/telemetry/filter_by_values_with_var.png b/assets/images/telemetry/filter_by_values_with_var.png similarity index 100% rename from source/assets/images/telemetry/filter_by_values_with_var.png rename to assets/images/telemetry/filter_by_values_with_var.png diff --git a/source/assets/images/telemetry/grafana_variable_definition.png b/assets/images/telemetry/grafana_variable_definition.png similarity index 100% rename from source/assets/images/telemetry/grafana_variable_definition.png rename to assets/images/telemetry/grafana_variable_definition.png diff --git a/source/assets/images/telemetry/mermaid-workflow.md b/assets/images/telemetry/mermaid-workflow.md similarity index 100% rename from source/assets/images/telemetry/mermaid-workflow.md rename to assets/images/telemetry/mermaid-workflow.md diff --git a/source/assets/images/telemetry/mermaid-workflow.png b/assets/images/telemetry/mermaid-workflow.png similarity index 100% rename from source/assets/images/telemetry/mermaid-workflow.png rename to assets/images/telemetry/mermaid-workflow.png diff --git a/source/assets/images/telemetry/panel_query.png b/assets/images/telemetry/panel_query.png similarity index 100% rename from source/assets/images/telemetry/panel_query.png rename to assets/images/telemetry/panel_query.png diff --git a/source/assets/images/workflow-ui.png b/assets/images/workflow-ui.png similarity index 100% rename from source/assets/images/workflow-ui.png rename to assets/images/workflow-ui.png diff --git a/source/assets/js/custom.js b/assets/js/custom.js similarity index 100% rename from source/assets/js/custom.js rename to assets/js/custom.js diff --git a/source/assets/js/just-the-docs.js b/assets/js/just-the-docs.js similarity index 100% rename from source/assets/js/just-the-docs.js rename to assets/js/just-the-docs.js diff --git a/source/assets/js/search-data.json b/assets/js/search-data.json similarity index 100% rename from source/assets/js/search-data.json rename to assets/js/search-data.json diff --git a/source/assets/js/vendor/lunr.min.js b/assets/js/vendor/lunr.min.js similarity index 100% rename from source/assets/js/vendor/lunr.min.js rename to assets/js/vendor/lunr.min.js diff --git a/ci/customization/customize_doc.py b/ci/customization/customize_doc.py index 4706e13c046..6df8b610cee 100644 --- a/ci/customization/customize_doc.py +++ b/ci/customization/customize_doc.py @@ -452,9 +452,7 @@ def main( MANIFEST_FILEPATH = sys.argv[1] PROJECT_TO_VERSIONS_PATH = sys.argv[2] LIB_MAP_PATH = os.path.join(os.path.dirname(__file__), "lib_map.json") - DOCS_YML_PATH = os.path.join( - os.path.dirname(__file__), "..", "..", "source", "_data", "docs.yml" - ) + DOCS_YML_PATH = os.path.join(os.path.dirname(__file__), "..", "..", "_data", "docs.yml") # read in config files (doing this here so it only happens once) with open(LIB_MAP_PATH) as fp: diff --git a/ci/generate-projects-to-versions.py b/ci/generate-projects-to-versions.py index 4078ee48207..3a89a634857 100755 --- a/ci/generate-projects-to-versions.py +++ b/ci/generate-projects-to-versions.py @@ -11,12 +11,12 @@ # * what types of docs to host ('legacy', 'nightly', 'stable', etc.) # * what versions to map to those types # -# The libraries that should be copied are read from "source/_data/docs.yml". +# The libraries that should be copied are read from "_data/docs.yml". # # The versions that should be copied are read from a mix of sources: # -# - active projects: "source/_data/releases.json" -# - inactive projects: 'version-overrides' field in entries in "source/_data/docs.yml" +# - active projects: "_data/releases.json" +# - inactive projects: 'version-overrides' field in entries in "_data/docs.yml" # # Produces a JSON mapping of the form: # @@ -28,7 +28,7 @@ # }, # } # -# With keys omitted based on configuration in source/_data/docs.yml. +# With keys omitted based on configuration in _data/docs.yml. # # e.g. if a project has 'stable: 0' in that file, it will not have a '{project}.stable' # key in the mapping produced by this script. @@ -39,10 +39,10 @@ import yaml -with open("source/_data/docs.yml") as f: +with open("_data/docs.yml") as f: DOCS_YML_DICT = yaml.safe_load(f) -with open("source/_data/releases.json") as f: +with open("_data/releases.json") as f: RELEASES_JSON_DICT = json.load(f) # using OrderedDict minimizes churn in the output as projects are added and removed diff --git a/source/contributing/code.md b/contributing/code.md similarity index 100% rename from source/contributing/code.md rename to contributing/code.md diff --git a/source/contributing/index.md b/contributing/index.md similarity index 100% rename from source/contributing/index.md rename to contributing/index.md diff --git a/source/contributing/issues.md b/contributing/issues.md similarity index 100% rename from source/contributing/issues.md rename to contributing/issues.md diff --git a/source/contributing/prs.md b/contributing/prs.md similarity index 100% rename from source/contributing/prs.md rename to contributing/prs.md diff --git a/extensions/rapids_docs.py b/extensions/rapids_docs.py index 869dd7f7445..8d98fef03e6 100644 --- a/extensions/rapids_docs.py +++ b/extensions/rapids_docs.py @@ -8,6 +8,7 @@ import email.utils import html import json +import re import shutil from datetime import UTC, datetime from pathlib import Path @@ -400,11 +401,31 @@ def _notice_header(metadata: dict) -> str: ) +_GITHUB_ALERT_RE = re.compile( + r"^> \[!(NOTE|TIP|IMPORTANT|WARNING|CAUTION)\]\n((?:>.*(?:\n|$))*)", + re.MULTILINE, +) + + +def _convert_github_alerts(text: str) -> str: + """Convert GitHub alerts to MyST admonitions for the rendered portal.""" + + def replace(match: re.Match) -> str: + body = "\n".join( + line.removeprefix("> ").removeprefix(">") for line in match.group(2).splitlines() + ) + return f"```{{{match.group(1).lower()}}}\n{body}\n```\n" + + return _GITHUB_ALERT_RE.sub(replace, text) + + def _source_read(app, docname: str, source: list[str]) -> None: raw = source[0] if docname.startswith("notices/") and Path(docname).name[:3] in {"rdn", "rgn", "rsn"}: post = frontmatter.loads(raw) raw = _notice_header(post.metadata) + post.content + elif docname == "SECURITY": + raw = "---\norphan: true\n---\n\n" + _convert_github_alerts(raw) template = app.rapids_portal_jinja.from_string(raw) source[0] = template.render(_context(app)) @@ -477,7 +498,7 @@ def _copy_portal_files(app, exception) -> None: dirs_exist_ok=True, ) for filename in ("LICENSE", "SECURITY.md"): - shutil.copy2(source_dir.parent / filename, output_dir / filename) + shutil.copy2(source_dir / filename, output_dir / filename) # ``dirhtml`` correctly creates pretty URLs everywhere except the hosting # platform's required top-level error document. sphinx-notfound-page has diff --git a/source/index.md b/index.md similarity index 100% rename from source/index.md rename to index.md diff --git a/source/install/index.md b/install/index.md similarity index 100% rename from source/install/index.md rename to install/index.md diff --git a/source/licenses/CubinLinker.txt b/licenses/CubinLinker.txt similarity index 96% rename from source/licenses/CubinLinker.txt rename to licenses/CubinLinker.txt index bdd11f61ef6..fe5abbb7d0d 100644 --- a/source/licenses/CubinLinker.txt +++ b/licenses/CubinLinker.txt @@ -7,11 +7,11 @@ hereunder (“SOFTWARE”). By taking delivery of the SOFTWARE, you affirm that you have reached the legal age of majority, you accept the terms of this license, and you take legal and -financial responsibility for the actions of your permitted users. +financial responsibility for the actions of your permitted users. You agree to use the SOFTWARE only for purposes that are permitted by -(a) this license, and +(a) this license, and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions. @@ -35,7 +35,7 @@ You agree to use the SOFTWARE only for purposes that are permitted by b. You agree to notify NVIDIA in writing of any known or suspected distribution or use of the SOFTWARE not in compliance with the requirements of this license, and to enforce the terms of your agreements - with respect to distributed SOFTWARE. + with respect to distributed SOFTWARE. 3. LIMITATIONS. Your license to use the SOFTWARE is restricted as follows: @@ -58,7 +58,7 @@ You agree to use the SOFTWARE only for purposes that are permitted by 4. OWNERSHIP. The SOFTWARE and the related intellectual property rights therein are and will remain the sole and exclusive property of NVIDIA or its - licensors. + licensors. 5. FEEDBACK. You may, but are not obligated to, provide Feedback to NVIDIA. “Feedback” means all suggestions, fixes, modifications, feature requests or @@ -76,7 +76,7 @@ You agree to use the SOFTWARE only for purposes that are permitted by MERCHANTABILITY, NONINFRINGEMENT, OR FITNESS FOR A PARTICULAR PURPOSE. NVIDIA DOES NOT WARRANT THAT THE SOFTWARE WILL MEET YOUR REQUIREMENTS OR THAT THE OPERATION THEREOF WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT ALL - ERRORS WILL BE CORRECTED. + ERRORS WILL BE CORRECTED. 7. LIMITATIONS OF LIABILITY. TO THE MAXIMUM EXTENT PERMITTED BY LAW, NVIDIA AND ITS AFFILIATES SHALL NOT BE LIABLE FOR ANY SPECIAL, INCIDENTAL, PUNITIVE OR @@ -88,7 +88,7 @@ You agree to use the SOFTWARE only for purposes that are permitted by REASONABLY HAVE FORESEEN, THE POSSIBILITY OF SUCH DAMAGES. IN NO EVENT WILL NVIDIA’S AND ITS AFFILIATES TOTAL CUMULATIVE LIABILITY UNDER OR ARISING OUT OF THIS LICENSE EXCEED US$10.00. THE NATURE OF THE LIABILITY OR THE NUMBER - OF CLAIMS OR SUITS SHALL NOT ENLARGE OR EXTEND THIS LIMIT. + OF CLAIMS OR SUITS SHALL NOT ENLARGE OR EXTEND THIS LIMIT. 8. TERMINATION. Your rights under this license will terminate automatically without notice from NVIDIA if you fail to comply with any term and condition @@ -99,7 +99,7 @@ You agree to use the SOFTWARE only for purposes that are permitted by SOFTWARE and destroy all copies in your possession or control. Your prior distributions in accordance with this license are not affected by the termination of this license. All provisions of this license will survive - termination, except for the license granted to you. + termination, except for the license granted to you. 9. APPLICABLE LAW. This license will be governed in all respects by the laws of the United States and of the State of Delaware, without regard to the @@ -109,13 +109,13 @@ You agree to use the SOFTWARE only for purposes that are permitted by exclusive jurisdiction over any dispute or claim arising out of this license. Notwithstanding this, you agree that NVIDIA shall still be allowed to apply for injunctive remedies or an equivalent type of urgent legal - relief in any jurisdiction. + relief in any jurisdiction. 10. NO ASSIGNMENT. This license and your rights and obligations thereunder may not be assigned by you by any means or operation of law without NVIDIA’s permission. Any attempted assignment not approved by NVIDIA in writing - shall be void and of no effect. - + shall be void and of no effect. + 11. EXPORT. The SOFTWARE is subject to United States export laws and regulations. You agree that you will not ship, transfer or export the SOFTWARE into any country, or use the SOFTWARE in any manner, prohibited by diff --git a/source/licenses/cugraph-ops-EULA.txt b/licenses/cugraph-ops-EULA.txt similarity index 98% rename from source/licenses/cugraph-ops-EULA.txt rename to licenses/cugraph-ops-EULA.txt index 8e37e2e0383..db26548181f 100644 --- a/source/licenses/cugraph-ops-EULA.txt +++ b/licenses/cugraph-ops-EULA.txt @@ -1,381 +1,381 @@ -NVIDIA Software License Agreement -================================= - -IMPORTANT NOTICE - PLEASE READ AND AGREE BEFORE USING THE SOFTWARE. - -This license agreement ("Agreement") is a legal agreement between you, -whether an individual or entity ("you") and NVIDIA Corporation ("NVIDIA") -and governs the use of the NVIDIA cuGraph-Ops software and materials provided -under this Agreement ("Software"). - -This Agreement can be accepted only by an adult of legal age of majority in -the country in which the Software is used. If you don't have the required age -or authority to accept this Agreement, or if you don't accept all the terms and -conditions of this Agreement, do not use the Software. You agree to use the -Software only for purposes that are permitted by this Agreement and any -applicable law or regulation in the relevant jurisdictions. - -1. License Grant. Subject to the terms of this Agreement, NVIDIA grants you a - non-exclusive, revocable, non-transferable, non-sublicensable (except as - expressly granted in this Agreement), license to: - - 1.1 install and use copies of the Software, - and - 1.2 distribute the Software in binary format as incorporated into a - software application subject to the following distribution requirements: - - (a) Your application must have material additional functionality, - beyond the included portions of the Software. - - (b) The distributable portions of the Software shall only be accessed - by your application. - - (c) The following notice shall be included in modifications and - derivative works of sample source code distributed: "This software - contains source code provided by NVIDIA Corporation." - - (d) Unless a developer tool is identified in this Agreement as - distributable, it is delivered for your internal use only. - - (e) The terms under which you distribute your application must be - consistent with the terms of this Agreement, including - (without limitation) terms relating to the license grant and - license restrictions and protection of NVIDIA's intellectual - property rights. Additionally, you agree that you will protect - the privacy, securityand legal rights of your application users. - - (f) You agree to notify NVIDIA in writing of any known or suspected - distribution or use of the Software not in compliance with the - requirements of this Agreement, and to enforce the terms of your - agreements with respect to distributed Software. - -2. Limitations. Your license to use the Software is restricted as follows: - - 2.1 The Software is licensed for you to develop applications only for use - in systems with NVIDIA GPUs. - - 2.2 You may not reverse engineer, decompile or disassemble the Software - components provided in binary form, nor attempt in any other manner to - obtain source code of the Software. - - 2.3 You may not change or remove copyright or other proprietary notices in - the Software. - - 2.4 Except as expressly granted in this Agreement, you may not copy, sell, - rent, sublicense, transfer, distribute, modify or create derivative - works of the Software, or make its functionality available to others. - - 2.5 You may not bypass, disable or circumvent any technical limitation, - encryption, security, digital rights management or authentication - mechanism in the Software. - - 2.6 You may not use the Software in any manner that would cause it to - become subject to an open source software license; subject to the - terms in the "Components Under Other Licenses" section below. - - 2.7 You may not use the Software for the purpose of developing competing - products or technologies or assist a third party in such activities. - - 2.8 You may not indicate that a product or service developed with the - Software is sponsored or endorsed by NVIDIA. - - 2.9 You may not reverse engineer, decompile or disassemble any portion of - the output generated using Software elements for the purpose of - translating such output artifacts to target a non-NVIDIA platform. - - 2.10 You may not distribute or disclose to third parties the output of the - Software where the output reveals functionality or performance data - pertinent to NVIDIA hardware or software products, results of - benchmarking, competitive analysis, or regression or performance data - relating to the Software or NVIDIA GPUs without the prior written - permission from NVIDIA. - - 2.11 You acknowledge that the Software provided under this Agreement is not - designed or tested by NVIDIA for use in any system or application where - the use or failure of such system or application developed with - NVIDIA's Software could result in injury, death or catastrophic damage - (each, a "Mission Critical Application"). Examples of Mission Critical - Applications include use in avionics, navigation, autonomous vehicle - applications, AI solutions for automotive products, military, medical, - life support or other mission-critical or life-critical applications. - NVIDIA will not be liable to you or any third party, in whole or in - part, for any claims or damages arising from these uses. You are solely - responsible for ensuring that systems and applications developed with - the Software include sufficient safety and redundancy features and - comply with all applicable legal and regulatory standards and - requirements. - - 2.12 You agree to defend, indemnify and hold harmless NVIDIA and its - affiliates, and their respective employees, contractors, agents, - officers and directors, from and against any and all claims, damages, - obligations, losses, liabilities, costs or debt, fines, restitutions - and expenses (including but not limited to attorney's fees and costs - incident to establishing the right of indemnification) arising out of - or related to - - (i) products or services that have been developed or deployed with or - use the Software, or claims that they violate laws, or infringe, - violate, or misappropriate any third party right; - or - (ii) a violation of the terms and conditions of this Agreement. - -3. Authorized Users. You may allow employees and contractors of your entity or - of your subsidiary(ies) to access and use the Software from your secure - network to perform the work authorized by this Agreement on your behalf. If - you are an academic institution, you may allow users enrolled or employed - by the academic institution to access and use the Software as authorized by - this Agreement from your secure network. You are responsible for the - compliance with the terms of this Agreement by your authorized users. Any - act or omission that if committed by you would constitute a breach of this - Agreement will be deemed to constitute a breach of this Agreement if - committed by your authorized users. - -4. Confidentiality. You agree that you will not use, nor authorize others to - use, NVIDIA Confidential Information, except as necessary for the - performance of this Agreement, and that you will not disclose NVIDIA - Confidential Information to any third party, except to permitted users - under this Agreement that have a need to know such Confidential Information - for the purpose of this Agreement, provided that each such recipient is - subject to a written agreement that includes confidentiality obligations - consistent with these terms. You will protect the NVIDIA Confidential - Information with at least the same degree of care that you use to protect - your own similar confidential and proprietary information, but no less than - a reasonable degree of care. "Confidential Information" means the Software - including its features and functionality, output, and any results of - competitive analysis or regression or performance data relating to the - Software. - -5. Pre-Release Versions. Software versions or specific features identified as - alpha, beta, preview, early access or otherwise as pre-release may not be - fully functional, may contain errors or design flaws, and may have reduced - or different security, privacy, availability and reliability standards - relative to commercial versions of NVIDIA offerings. You may use - pre-release Software at your own risk, understanding that such versions are - not intended for use in production or business-critical systems. NVIDIA may - choose not to make available a commercial version of any pre-release - Software. NVIDIA may also choose to abandon development and terminate the - availability of pre-release Software at any time without liability. - -6. Updates. NVIDIA may, at its option, make available patches, workarounds or - other updates to the Software. Unless the updates are provided with their - separate governing terms, they are deemed part of the Software licensed to - you as provided in this Agreement. - -7. Components Under Other Licenses. The Software may include or be distributed - with components provided with separate legal notices or terms that - accompany the components, such as open source software licenses and other - license. The components are subject to the applicable other licenses, - including any proprietary notices, disclaimers, requirements and extended - use rights; except that this Agreement will prevail regarding the use of - third-party open source software, unless a third-party open source software - license requires its license terms to prevail. Open source software license - means any software, data or documentation subject to any license identified - as an open source license by the Open Source Initiative - (http://opensource.org), Free Software Foundation (http://www.fsf.org) or - other similar open source organization or listed by the Software Package - Data Exchange (SPDX) Workgroup under the Linux Foundation - (http://www.spdx.org). - -8. Termination. This Agreement will automatically terminate without notice - from NVIDIA if you fail to comply with any of the terms in this Agreement - or if you commence or participate in any legal proceeding against NVIDIA - with respect to the Software. Additionally, NVIDIA may terminate this - Agreement with prior written notice to you if in NVIDIA's sole discretion, - the continued use of it is no longer commercially viable or creates - liabilities for NVIDIA. You agree to cooperate with NVIDIA and provide - reasonably requested information to verify your compliance with this - Agreement. Upon any termination, you must stop using and destroy all copies - of the Software. Upon written request, you will certify in writing that you - have complied with your commitments under this section. All provisions will - survive termination, except for the licenses granted to you. - -9. Ownership. - 9.1 NVIDIA Ownership. The Software, including all intellectual property - rights, is and will remain the sole and exclusive property of NVIDIA - or its licensors. Except as expressly granted in this Agreement, - - (i) NVIDIA reserves all rights, interests and remedies in connection - with the Software and - - (ii) no other license or right is granted to you by implication, - estoppel or otherwise. - - 9.2 Your Ownership. Subject to the rights of NVIDIA and its suppliers in - the Software, you hold all rights, title and interest in and to your - services, applications and derivative works of samples or examples you - develop as permitted in this Agreement including their respective - intellectual property rights. - - 9.3 Non-Assert. You agree that you will not, and will not assist or enable - any other party to, assert or threaten to assert any intellectual - property rights against NVIDIA or its affiliates with respect to new - software samples or examples that NVIDIA or its affiliates may develop - and make available in the future. - -10. Feedback. You may, but are not obligated to, provide suggestions, requests, - fixes, modifications, enhancements or other feedback regarding or in - connection with your use of the Software (collectively, "Feedback"). - Feedback, even if designated as confidential by you, will not create any - confidentiality obligation for NVIDIA or its affiliates. If you provide - Feedback, you hereby grant NVIDIA, its affiliates and its designees a - non-exclusive, perpetual, irrevocable, sublicensable, worldwide, - royalty-free, fully paid-up and transferable license, under your - intellectual property rights, to publicly perform, publicly display, - reproduce, use, make, have made, sell, offer for sale, distribute - (through multiple tiers of distribution), import, create derivative works - of and otherwise commercialize and exploit the Feedback at NVIDIA's - discretion. You will not give Feedback - - (i) that you have reason to believe is subject to any restriction that - impairs the exercise of the grant stated in this section, such as - third-party intellectual property rights or - - (ii) subject to license terms which seek to require any product - incorporating or developed using such Feedback, or other - intellectual property of NVIDIA or its affiliates, to be licensed - to or otherwise shared with any third party. - -11. Disclaimer of Warranties. THE SOFTWARE IS PROVIDED BY NVIDIA AS-IS AND WITH - ALL FAULTS. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, NVIDIA - DISCLAIMS ALL WARRANTIES AND REPRESENTATIONS OF ANY KIND, WHETHER EXPRESS, - IMPLIED OR STATUTORY, RELATING TO OR ARISING UNDER THIS AGREEMENT, - INCLUDING, WITHOUT LIMITATION, THE WARRANTIES OF TITLE, NONINFRINGEMENT, - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, USAGE OF TRADE AND - COURSE OF DEALING. WITHOUT LIMITING THE FOREGOING, NVIDIA DOES NOT WARRANT - THAT THE SOFTWARE WILL MEET YOUR REQUIREMENTS; THAT ANY DEFECTS OR ERRORS - WILL BE CORRECTED; THAT ANY CERTAIN CONTENT WILL BE AVAILABLE; OR THAT THE - SOFTWARE IS FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS. NO INFORMATION OR - ADVICE GIVEN BY NVIDIA WILL IN ANY WAY INCREASE THE SCOPE OF ANY WARRANTY - EXPRESSLY PROVIDED IN THIS AGREEMENT. NVIDIA does not warrant or assume - responsibility for the accuracy or completeness of any third-party - information, text, graphics or links contained in the Software. - -12. Limitations of Liability. - 12.1 DISCLAIMERS. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN - NO EVENT WILL NVIDIA BE LIABLE FOR ANY (I) INDIRECT, PUNITIVE, SPECIAL, - INCIDENTAL OR CONSEQUENTIAL DAMAGES, OR (II) DAMAGES FOR THE (A) COST - OF PROCURING SUBSTITUTE GOODS OR (B) LOSS OF PROFITS, REVENUES, USE, - DATA OR GOODWILL ARISING OUT OF OR RELATED TO THIS AGREEMENT, WHETHER - BASED ON BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT - LIABILITY, OR OTHERWISE, AND EVEN IF NVIDIA HAS BEEN ADVISED OF THE - POSSIBILITY OF SUCH DAMAGES AND EVEN IF A PARTY'S REMEDIES FAIL THEIR - ESSENTIAL PURPOSE. - - 12.2 DAMAGES CAP. ADDITIONALLY, TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE - LAW, NVIDIA'S TOTAL CUMULATIVE AGGREGATE LIABILITY FOR ANY AND ALL - LIABILITIES, OBLIGATIONS OR CLAIMS ARISING OUT OF OR RELATED TO THIS - AGREEMENT WILL NOT EXCEED FIVE U.S. DOLLARS (US$5). - -13. Governing Law and Jurisdiction. This Agreement will be governed in all - respects by the laws of the United States and the laws of the State of - Delaware, without regard to conflict of laws principles or the United - Nations Convention on Contracts for the International Sale of Goods. The - state and federal courts residing in Santa Clara County, California will - have exclusive jurisdiction over any dispute or claim arising out of or - related to this Agreement, and the parties irrevocably consent to personal - jurisdiction and venue in those courts; except that either party may apply - for injunctive remedies or an equivalent type of urgent legal relief in any - jurisdiction. - -14. General. - 14.1 No Assignment. NVIDIA may assign, delegate or transfer its rights - or obligations under this Agreement by any means or operation of law. - You may not, without NVIDIA's prior written consent, assign, delegate - or transfer any of your rights or obligations under this Agreement by - any means or operation of law, and any attempt to do so is null and - void. - - 14.2 No Waiver. No waiver of any term of the Agreement will be deemed a - further or continuing waiver of such term or any other term, and - NVIDIA's failure to assert any right or provision under the Agreement - will not constitute a waiver of such right or provision. - - 14.3 Trade and Compliance. You agree to comply with all applicable export, - import, trade and economic sanctions laws and regulations, including - U.S. Export Administration Regulations and Office of Foreign Assets - Control regulations. You confirm that you will not export or reexport - any products or technology, directly or indirectly, without first - obtaining any required license or other approval from appropriate - authorities, - - (i) to any countries that are subject to any U.S. or local export - restrictions (currently including, but not necessarily limited - to, Cuba, Iran, North Korea, Syria, the Region of Crimea, Donetsk - People's Republic Region and Luhansk People's Republic Region); - - (ii) to any end user who you know or have reason to know will utilize - them in the design, development or production of nuclear, chemical - or biological weapons, missiles, rocket systems, unmanned air - vehicles, or any weapons of mass destruction; - - (iii) to any end-user who has been prohibited from participating in the - U.S. or local export transactions by any governing authority; or - - (iv) to any known military or military-intelligence end-user or for any - known military or military-intelligence end-use in accordance with - U.S. trade compliance laws and regulations. Use of the Software - under this Agreement must be consistent with NVIDIA's - HumanRightsPolicy.pdf (nvidia.com). - - 14.4 Government Rights. The Software, documentation and technology - ("Protected Items") are "Commercial products" as this term is defined - at 48 C.F.R. 2.101, consisting of "commercial computer software" and - "commercial computer software documentation" as such terms are used in, - respectively, 48 C.F.R. 12.212 and 48 C.F.R. 227.7202 & - 252.227-7014(a)(1). Before any Protected Items are supplied to the U.S. - Government, you will - - (i) inform the U.S. Government in writing that the Protected Items are - and must be treated as commercial computer software and commercial - computersoftware documentation developed at private expense; - - (ii) inform the U.S. Government that the Protected Items are provided - subject to the terms of the Agreement; and - - (iii) mark the Protected Items as commercial computer software and - commercial computer software documentation developed at private - expense. In no event will you permit the U.S. Government to acquire - rights in Protected Items beyond those specified in 48 C.F.R. - 52.227-19(b)(1)-(2) or 252.227-7013(c) except as expressly approved - by NVIDIA in writing. - - 14.5 Notices. Please direct your legal notices or other correspondence to - NVIDIA Corporation, 2788 San Tomas Expressway, Santa Clara, California - 95051, United States of America, Attention: Legal Department, with a - copy emailed to legalnotices@nvidia.com. If NVIDIA needs to contact you - about the Software, you consent to receive the notices by email and - agree that such notices will satisfy any legal communication - requirements. - - 14.6 Force Majeure. Neither party will be liable during any period where an - event or circumstance prevents or delays that party from performing its - obligations under this Agreement and that event or circumstance: - - (i) is not within the reasonable control of that party and is not the - result of that party's negligence, and - - (ii) cannot be overcome or avoided by that party using reasonably - diligent efforts. - - 14.7 Severability and Amendment. If a court of competent jurisdiction rules - that a provision of this Agreement is unenforceable, that provision - will be deemed modified to the extent necessary to make it enforceable - and the remainder of this Agreement will continue in full force and - effect. Any amendment to this Agreement must be in writing and signed - by authorized representatives of both parties. - - 14.8 Construction. The headings in the Agreement are included solely for - convenience and are not intended to affect the meaning or - interpretation of the Agreement. As required by the context of the - Agreement, the singular of a term includes the plural and vice versa. - - 14.9 Entire Agreement. Regarding the subject matter of this Agreement, the - parties agree that - - (i) this Agreement constitutes the entire and exclusive agreement - between the parties and supersedes all prior and contemporaneous - communications and - - (ii) any additional or different terms or conditions, whether contained - in purchase orders, order acknowledgments, invoices or otherwise, - will not be binding and are null and void. +NVIDIA Software License Agreement +================================= + +IMPORTANT NOTICE - PLEASE READ AND AGREE BEFORE USING THE SOFTWARE. + +This license agreement ("Agreement") is a legal agreement between you, +whether an individual or entity ("you") and NVIDIA Corporation ("NVIDIA") +and governs the use of the NVIDIA cuGraph-Ops software and materials provided +under this Agreement ("Software"). + +This Agreement can be accepted only by an adult of legal age of majority in +the country in which the Software is used. If you don't have the required age +or authority to accept this Agreement, or if you don't accept all the terms and +conditions of this Agreement, do not use the Software. You agree to use the +Software only for purposes that are permitted by this Agreement and any +applicable law or regulation in the relevant jurisdictions. + +1. License Grant. Subject to the terms of this Agreement, NVIDIA grants you a + non-exclusive, revocable, non-transferable, non-sublicensable (except as + expressly granted in this Agreement), license to: + + 1.1 install and use copies of the Software, + and + 1.2 distribute the Software in binary format as incorporated into a + software application subject to the following distribution requirements: + + (a) Your application must have material additional functionality, + beyond the included portions of the Software. + + (b) The distributable portions of the Software shall only be accessed + by your application. + + (c) The following notice shall be included in modifications and + derivative works of sample source code distributed: "This software + contains source code provided by NVIDIA Corporation." + + (d) Unless a developer tool is identified in this Agreement as + distributable, it is delivered for your internal use only. + + (e) The terms under which you distribute your application must be + consistent with the terms of this Agreement, including + (without limitation) terms relating to the license grant and + license restrictions and protection of NVIDIA's intellectual + property rights. Additionally, you agree that you will protect + the privacy, securityand legal rights of your application users. + + (f) You agree to notify NVIDIA in writing of any known or suspected + distribution or use of the Software not in compliance with the + requirements of this Agreement, and to enforce the terms of your + agreements with respect to distributed Software. + +2. Limitations. Your license to use the Software is restricted as follows: + + 2.1 The Software is licensed for you to develop applications only for use + in systems with NVIDIA GPUs. + + 2.2 You may not reverse engineer, decompile or disassemble the Software + components provided in binary form, nor attempt in any other manner to + obtain source code of the Software. + + 2.3 You may not change or remove copyright or other proprietary notices in + the Software. + + 2.4 Except as expressly granted in this Agreement, you may not copy, sell, + rent, sublicense, transfer, distribute, modify or create derivative + works of the Software, or make its functionality available to others. + + 2.5 You may not bypass, disable or circumvent any technical limitation, + encryption, security, digital rights management or authentication + mechanism in the Software. + + 2.6 You may not use the Software in any manner that would cause it to + become subject to an open source software license; subject to the + terms in the "Components Under Other Licenses" section below. + + 2.7 You may not use the Software for the purpose of developing competing + products or technologies or assist a third party in such activities. + + 2.8 You may not indicate that a product or service developed with the + Software is sponsored or endorsed by NVIDIA. + + 2.9 You may not reverse engineer, decompile or disassemble any portion of + the output generated using Software elements for the purpose of + translating such output artifacts to target a non-NVIDIA platform. + + 2.10 You may not distribute or disclose to third parties the output of the + Software where the output reveals functionality or performance data + pertinent to NVIDIA hardware or software products, results of + benchmarking, competitive analysis, or regression or performance data + relating to the Software or NVIDIA GPUs without the prior written + permission from NVIDIA. + + 2.11 You acknowledge that the Software provided under this Agreement is not + designed or tested by NVIDIA for use in any system or application where + the use or failure of such system or application developed with + NVIDIA's Software could result in injury, death or catastrophic damage + (each, a "Mission Critical Application"). Examples of Mission Critical + Applications include use in avionics, navigation, autonomous vehicle + applications, AI solutions for automotive products, military, medical, + life support or other mission-critical or life-critical applications. + NVIDIA will not be liable to you or any third party, in whole or in + part, for any claims or damages arising from these uses. You are solely + responsible for ensuring that systems and applications developed with + the Software include sufficient safety and redundancy features and + comply with all applicable legal and regulatory standards and + requirements. + + 2.12 You agree to defend, indemnify and hold harmless NVIDIA and its + affiliates, and their respective employees, contractors, agents, + officers and directors, from and against any and all claims, damages, + obligations, losses, liabilities, costs or debt, fines, restitutions + and expenses (including but not limited to attorney's fees and costs + incident to establishing the right of indemnification) arising out of + or related to + + (i) products or services that have been developed or deployed with or + use the Software, or claims that they violate laws, or infringe, + violate, or misappropriate any third party right; + or + (ii) a violation of the terms and conditions of this Agreement. + +3. Authorized Users. You may allow employees and contractors of your entity or + of your subsidiary(ies) to access and use the Software from your secure + network to perform the work authorized by this Agreement on your behalf. If + you are an academic institution, you may allow users enrolled or employed + by the academic institution to access and use the Software as authorized by + this Agreement from your secure network. You are responsible for the + compliance with the terms of this Agreement by your authorized users. Any + act or omission that if committed by you would constitute a breach of this + Agreement will be deemed to constitute a breach of this Agreement if + committed by your authorized users. + +4. Confidentiality. You agree that you will not use, nor authorize others to + use, NVIDIA Confidential Information, except as necessary for the + performance of this Agreement, and that you will not disclose NVIDIA + Confidential Information to any third party, except to permitted users + under this Agreement that have a need to know such Confidential Information + for the purpose of this Agreement, provided that each such recipient is + subject to a written agreement that includes confidentiality obligations + consistent with these terms. You will protect the NVIDIA Confidential + Information with at least the same degree of care that you use to protect + your own similar confidential and proprietary information, but no less than + a reasonable degree of care. "Confidential Information" means the Software + including its features and functionality, output, and any results of + competitive analysis or regression or performance data relating to the + Software. + +5. Pre-Release Versions. Software versions or specific features identified as + alpha, beta, preview, early access or otherwise as pre-release may not be + fully functional, may contain errors or design flaws, and may have reduced + or different security, privacy, availability and reliability standards + relative to commercial versions of NVIDIA offerings. You may use + pre-release Software at your own risk, understanding that such versions are + not intended for use in production or business-critical systems. NVIDIA may + choose not to make available a commercial version of any pre-release + Software. NVIDIA may also choose to abandon development and terminate the + availability of pre-release Software at any time without liability. + +6. Updates. NVIDIA may, at its option, make available patches, workarounds or + other updates to the Software. Unless the updates are provided with their + separate governing terms, they are deemed part of the Software licensed to + you as provided in this Agreement. + +7. Components Under Other Licenses. The Software may include or be distributed + with components provided with separate legal notices or terms that + accompany the components, such as open source software licenses and other + license. The components are subject to the applicable other licenses, + including any proprietary notices, disclaimers, requirements and extended + use rights; except that this Agreement will prevail regarding the use of + third-party open source software, unless a third-party open source software + license requires its license terms to prevail. Open source software license + means any software, data or documentation subject to any license identified + as an open source license by the Open Source Initiative + (http://opensource.org), Free Software Foundation (http://www.fsf.org) or + other similar open source organization or listed by the Software Package + Data Exchange (SPDX) Workgroup under the Linux Foundation + (http://www.spdx.org). + +8. Termination. This Agreement will automatically terminate without notice + from NVIDIA if you fail to comply with any of the terms in this Agreement + or if you commence or participate in any legal proceeding against NVIDIA + with respect to the Software. Additionally, NVIDIA may terminate this + Agreement with prior written notice to you if in NVIDIA's sole discretion, + the continued use of it is no longer commercially viable or creates + liabilities for NVIDIA. You agree to cooperate with NVIDIA and provide + reasonably requested information to verify your compliance with this + Agreement. Upon any termination, you must stop using and destroy all copies + of the Software. Upon written request, you will certify in writing that you + have complied with your commitments under this section. All provisions will + survive termination, except for the licenses granted to you. + +9. Ownership. + 9.1 NVIDIA Ownership. The Software, including all intellectual property + rights, is and will remain the sole and exclusive property of NVIDIA + or its licensors. Except as expressly granted in this Agreement, + + (i) NVIDIA reserves all rights, interests and remedies in connection + with the Software and + + (ii) no other license or right is granted to you by implication, + estoppel or otherwise. + + 9.2 Your Ownership. Subject to the rights of NVIDIA and its suppliers in + the Software, you hold all rights, title and interest in and to your + services, applications and derivative works of samples or examples you + develop as permitted in this Agreement including their respective + intellectual property rights. + + 9.3 Non-Assert. You agree that you will not, and will not assist or enable + any other party to, assert or threaten to assert any intellectual + property rights against NVIDIA or its affiliates with respect to new + software samples or examples that NVIDIA or its affiliates may develop + and make available in the future. + +10. Feedback. You may, but are not obligated to, provide suggestions, requests, + fixes, modifications, enhancements or other feedback regarding or in + connection with your use of the Software (collectively, "Feedback"). + Feedback, even if designated as confidential by you, will not create any + confidentiality obligation for NVIDIA or its affiliates. If you provide + Feedback, you hereby grant NVIDIA, its affiliates and its designees a + non-exclusive, perpetual, irrevocable, sublicensable, worldwide, + royalty-free, fully paid-up and transferable license, under your + intellectual property rights, to publicly perform, publicly display, + reproduce, use, make, have made, sell, offer for sale, distribute + (through multiple tiers of distribution), import, create derivative works + of and otherwise commercialize and exploit the Feedback at NVIDIA's + discretion. You will not give Feedback + + (i) that you have reason to believe is subject to any restriction that + impairs the exercise of the grant stated in this section, such as + third-party intellectual property rights or + + (ii) subject to license terms which seek to require any product + incorporating or developed using such Feedback, or other + intellectual property of NVIDIA or its affiliates, to be licensed + to or otherwise shared with any third party. + +11. Disclaimer of Warranties. THE SOFTWARE IS PROVIDED BY NVIDIA AS-IS AND WITH + ALL FAULTS. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, NVIDIA + DISCLAIMS ALL WARRANTIES AND REPRESENTATIONS OF ANY KIND, WHETHER EXPRESS, + IMPLIED OR STATUTORY, RELATING TO OR ARISING UNDER THIS AGREEMENT, + INCLUDING, WITHOUT LIMITATION, THE WARRANTIES OF TITLE, NONINFRINGEMENT, + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, USAGE OF TRADE AND + COURSE OF DEALING. WITHOUT LIMITING THE FOREGOING, NVIDIA DOES NOT WARRANT + THAT THE SOFTWARE WILL MEET YOUR REQUIREMENTS; THAT ANY DEFECTS OR ERRORS + WILL BE CORRECTED; THAT ANY CERTAIN CONTENT WILL BE AVAILABLE; OR THAT THE + SOFTWARE IS FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS. NO INFORMATION OR + ADVICE GIVEN BY NVIDIA WILL IN ANY WAY INCREASE THE SCOPE OF ANY WARRANTY + EXPRESSLY PROVIDED IN THIS AGREEMENT. NVIDIA does not warrant or assume + responsibility for the accuracy or completeness of any third-party + information, text, graphics or links contained in the Software. + +12. Limitations of Liability. + 12.1 DISCLAIMERS. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN + NO EVENT WILL NVIDIA BE LIABLE FOR ANY (I) INDIRECT, PUNITIVE, SPECIAL, + INCIDENTAL OR CONSEQUENTIAL DAMAGES, OR (II) DAMAGES FOR THE (A) COST + OF PROCURING SUBSTITUTE GOODS OR (B) LOSS OF PROFITS, REVENUES, USE, + DATA OR GOODWILL ARISING OUT OF OR RELATED TO THIS AGREEMENT, WHETHER + BASED ON BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT + LIABILITY, OR OTHERWISE, AND EVEN IF NVIDIA HAS BEEN ADVISED OF THE + POSSIBILITY OF SUCH DAMAGES AND EVEN IF A PARTY'S REMEDIES FAIL THEIR + ESSENTIAL PURPOSE. + + 12.2 DAMAGES CAP. ADDITIONALLY, TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE + LAW, NVIDIA'S TOTAL CUMULATIVE AGGREGATE LIABILITY FOR ANY AND ALL + LIABILITIES, OBLIGATIONS OR CLAIMS ARISING OUT OF OR RELATED TO THIS + AGREEMENT WILL NOT EXCEED FIVE U.S. DOLLARS (US$5). + +13. Governing Law and Jurisdiction. This Agreement will be governed in all + respects by the laws of the United States and the laws of the State of + Delaware, without regard to conflict of laws principles or the United + Nations Convention on Contracts for the International Sale of Goods. The + state and federal courts residing in Santa Clara County, California will + have exclusive jurisdiction over any dispute or claim arising out of or + related to this Agreement, and the parties irrevocably consent to personal + jurisdiction and venue in those courts; except that either party may apply + for injunctive remedies or an equivalent type of urgent legal relief in any + jurisdiction. + +14. General. + 14.1 No Assignment. NVIDIA may assign, delegate or transfer its rights + or obligations under this Agreement by any means or operation of law. + You may not, without NVIDIA's prior written consent, assign, delegate + or transfer any of your rights or obligations under this Agreement by + any means or operation of law, and any attempt to do so is null and + void. + + 14.2 No Waiver. No waiver of any term of the Agreement will be deemed a + further or continuing waiver of such term or any other term, and + NVIDIA's failure to assert any right or provision under the Agreement + will not constitute a waiver of such right or provision. + + 14.3 Trade and Compliance. You agree to comply with all applicable export, + import, trade and economic sanctions laws and regulations, including + U.S. Export Administration Regulations and Office of Foreign Assets + Control regulations. You confirm that you will not export or reexport + any products or technology, directly or indirectly, without first + obtaining any required license or other approval from appropriate + authorities, + + (i) to any countries that are subject to any U.S. or local export + restrictions (currently including, but not necessarily limited + to, Cuba, Iran, North Korea, Syria, the Region of Crimea, Donetsk + People's Republic Region and Luhansk People's Republic Region); + + (ii) to any end user who you know or have reason to know will utilize + them in the design, development or production of nuclear, chemical + or biological weapons, missiles, rocket systems, unmanned air + vehicles, or any weapons of mass destruction; + + (iii) to any end-user who has been prohibited from participating in the + U.S. or local export transactions by any governing authority; or + + (iv) to any known military or military-intelligence end-user or for any + known military or military-intelligence end-use in accordance with + U.S. trade compliance laws and regulations. Use of the Software + under this Agreement must be consistent with NVIDIA's + HumanRightsPolicy.pdf (nvidia.com). + + 14.4 Government Rights. The Software, documentation and technology + ("Protected Items") are "Commercial products" as this term is defined + at 48 C.F.R. 2.101, consisting of "commercial computer software" and + "commercial computer software documentation" as such terms are used in, + respectively, 48 C.F.R. 12.212 and 48 C.F.R. 227.7202 & + 252.227-7014(a)(1). Before any Protected Items are supplied to the U.S. + Government, you will + + (i) inform the U.S. Government in writing that the Protected Items are + and must be treated as commercial computer software and commercial + computersoftware documentation developed at private expense; + + (ii) inform the U.S. Government that the Protected Items are provided + subject to the terms of the Agreement; and + + (iii) mark the Protected Items as commercial computer software and + commercial computer software documentation developed at private + expense. In no event will you permit the U.S. Government to acquire + rights in Protected Items beyond those specified in 48 C.F.R. + 52.227-19(b)(1)-(2) or 252.227-7013(c) except as expressly approved + by NVIDIA in writing. + + 14.5 Notices. Please direct your legal notices or other correspondence to + NVIDIA Corporation, 2788 San Tomas Expressway, Santa Clara, California + 95051, United States of America, Attention: Legal Department, with a + copy emailed to legalnotices@nvidia.com. If NVIDIA needs to contact you + about the Software, you consent to receive the notices by email and + agree that such notices will satisfy any legal communication + requirements. + + 14.6 Force Majeure. Neither party will be liable during any period where an + event or circumstance prevents or delays that party from performing its + obligations under this Agreement and that event or circumstance: + + (i) is not within the reasonable control of that party and is not the + result of that party's negligence, and + + (ii) cannot be overcome or avoided by that party using reasonably + diligent efforts. + + 14.7 Severability and Amendment. If a court of competent jurisdiction rules + that a provision of this Agreement is unenforceable, that provision + will be deemed modified to the extent necessary to make it enforceable + and the remainder of this Agreement will continue in full force and + effect. Any amendment to this Agreement must be in writing and signed + by authorized representatives of both parties. + + 14.8 Construction. The headings in the Agreement are included solely for + convenience and are not intended to affect the meaning or + interpretation of the Agreement. As required by the context of the + Agreement, the singular of a term includes the plural and vice versa. + + 14.9 Entire Agreement. Regarding the subject matter of this Agreement, the + parties agree that + + (i) this Agreement constitutes the entire and exclusive agreement + between the parties and supersedes all prior and contemporaneous + communications and + + (ii) any additional or different terms or conditions, whether contained + in purchase orders, order acknowledgments, invoices or otherwise, + will not be binding and are null and void. diff --git a/source/maintainers/datasets.md b/maintainers/datasets.md similarity index 100% rename from source/maintainers/datasets.md rename to maintainers/datasets.md diff --git a/source/maintainers/forward-merger.md b/maintainers/forward-merger.md similarity index 100% rename from source/maintainers/forward-merger.md rename to maintainers/forward-merger.md diff --git a/source/maintainers/index.md b/maintainers/index.md similarity index 100% rename from source/maintainers/index.md rename to maintainers/index.md diff --git a/source/notices/index.md b/notices/index.md similarity index 100% rename from source/notices/index.md rename to notices/index.md diff --git a/source/notices/rdn/index.md b/notices/rdn/index.md similarity index 100% rename from source/notices/rdn/index.md rename to notices/rdn/index.md diff --git a/source/notices/rdn0001.md b/notices/rdn0001.md similarity index 100% rename from source/notices/rdn0001.md rename to notices/rdn0001.md diff --git a/source/notices/rdn0002.md b/notices/rdn0002.md similarity index 100% rename from source/notices/rdn0002.md rename to notices/rdn0002.md diff --git a/source/notices/rdn0003.md b/notices/rdn0003.md similarity index 100% rename from source/notices/rdn0003.md rename to notices/rdn0003.md diff --git a/source/notices/rgn/index.md b/notices/rgn/index.md similarity index 100% rename from source/notices/rgn/index.md rename to notices/rgn/index.md diff --git a/source/notices/rgn0001.md b/notices/rgn0001.md similarity index 100% rename from source/notices/rgn0001.md rename to notices/rgn0001.md diff --git a/source/notices/rgn0002.md b/notices/rgn0002.md similarity index 100% rename from source/notices/rgn0002.md rename to notices/rgn0002.md diff --git a/source/notices/rgn0003.md b/notices/rgn0003.md similarity index 100% rename from source/notices/rgn0003.md rename to notices/rgn0003.md diff --git a/source/notices/rgn0004.md b/notices/rgn0004.md similarity index 100% rename from source/notices/rgn0004.md rename to notices/rgn0004.md diff --git a/source/notices/rgn0005.md b/notices/rgn0005.md similarity index 100% rename from source/notices/rgn0005.md rename to notices/rgn0005.md diff --git a/source/notices/rgn0006.md b/notices/rgn0006.md similarity index 100% rename from source/notices/rgn0006.md rename to notices/rgn0006.md diff --git a/source/notices/rgn0007.md b/notices/rgn0007.md similarity index 100% rename from source/notices/rgn0007.md rename to notices/rgn0007.md diff --git a/source/notices/rgn0008.md b/notices/rgn0008.md similarity index 100% rename from source/notices/rgn0008.md rename to notices/rgn0008.md diff --git a/source/notices/rgn0009.md b/notices/rgn0009.md similarity index 100% rename from source/notices/rgn0009.md rename to notices/rgn0009.md diff --git a/source/notices/rgn0010.md b/notices/rgn0010.md similarity index 100% rename from source/notices/rgn0010.md rename to notices/rgn0010.md diff --git a/source/notices/rgn0011.md b/notices/rgn0011.md similarity index 100% rename from source/notices/rgn0011.md rename to notices/rgn0011.md diff --git a/source/notices/rgn0012.md b/notices/rgn0012.md similarity index 100% rename from source/notices/rgn0012.md rename to notices/rgn0012.md diff --git a/source/notices/rgn0013.md b/notices/rgn0013.md similarity index 100% rename from source/notices/rgn0013.md rename to notices/rgn0013.md diff --git a/source/notices/rgn0014.md b/notices/rgn0014.md similarity index 100% rename from source/notices/rgn0014.md rename to notices/rgn0014.md diff --git a/source/notices/rgn0015.md b/notices/rgn0015.md similarity index 100% rename from source/notices/rgn0015.md rename to notices/rgn0015.md diff --git a/source/notices/rgn0016.md b/notices/rgn0016.md similarity index 100% rename from source/notices/rgn0016.md rename to notices/rgn0016.md diff --git a/source/notices/rgn0017.md b/notices/rgn0017.md similarity index 100% rename from source/notices/rgn0017.md rename to notices/rgn0017.md diff --git a/source/notices/rgn0018.md b/notices/rgn0018.md similarity index 100% rename from source/notices/rgn0018.md rename to notices/rgn0018.md diff --git a/source/notices/rgn0019.md b/notices/rgn0019.md similarity index 100% rename from source/notices/rgn0019.md rename to notices/rgn0019.md diff --git a/source/notices/rgn0020.md b/notices/rgn0020.md similarity index 100% rename from source/notices/rgn0020.md rename to notices/rgn0020.md diff --git a/source/notices/rgn0021.md b/notices/rgn0021.md similarity index 100% rename from source/notices/rgn0021.md rename to notices/rgn0021.md diff --git a/source/notices/rgn0022.md b/notices/rgn0022.md similarity index 100% rename from source/notices/rgn0022.md rename to notices/rgn0022.md diff --git a/source/notices/rgn0023.md b/notices/rgn0023.md similarity index 100% rename from source/notices/rgn0023.md rename to notices/rgn0023.md diff --git a/source/notices/rgn0024.md b/notices/rgn0024.md similarity index 100% rename from source/notices/rgn0024.md rename to notices/rgn0024.md diff --git a/source/notices/rgn0025.md b/notices/rgn0025.md similarity index 100% rename from source/notices/rgn0025.md rename to notices/rgn0025.md diff --git a/source/notices/rgn0026.md b/notices/rgn0026.md similarity index 100% rename from source/notices/rgn0026.md rename to notices/rgn0026.md diff --git a/source/notices/rgn0027.md b/notices/rgn0027.md similarity index 100% rename from source/notices/rgn0027.md rename to notices/rgn0027.md diff --git a/source/notices/rgn0028.md b/notices/rgn0028.md similarity index 100% rename from source/notices/rgn0028.md rename to notices/rgn0028.md diff --git a/source/notices/rgn0029.md b/notices/rgn0029.md similarity index 100% rename from source/notices/rgn0029.md rename to notices/rgn0029.md diff --git a/source/notices/rgn0030.md b/notices/rgn0030.md similarity index 100% rename from source/notices/rgn0030.md rename to notices/rgn0030.md diff --git a/source/notices/rsn/index.md b/notices/rsn/index.md similarity index 100% rename from source/notices/rsn/index.md rename to notices/rsn/index.md diff --git a/source/notices/rsn0001.md b/notices/rsn0001.md similarity index 100% rename from source/notices/rsn0001.md rename to notices/rsn0001.md diff --git a/source/notices/rsn0002.md b/notices/rsn0002.md similarity index 100% rename from source/notices/rsn0002.md rename to notices/rsn0002.md diff --git a/source/notices/rsn0003.md b/notices/rsn0003.md similarity index 100% rename from source/notices/rsn0003.md rename to notices/rsn0003.md diff --git a/source/notices/rsn0004.md b/notices/rsn0004.md similarity index 100% rename from source/notices/rsn0004.md rename to notices/rsn0004.md diff --git a/source/notices/rsn0005.md b/notices/rsn0005.md similarity index 100% rename from source/notices/rsn0005.md rename to notices/rsn0005.md diff --git a/source/notices/rsn0006.md b/notices/rsn0006.md similarity index 100% rename from source/notices/rsn0006.md rename to notices/rsn0006.md diff --git a/source/notices/rsn0007.md b/notices/rsn0007.md similarity index 100% rename from source/notices/rsn0007.md rename to notices/rsn0007.md diff --git a/source/notices/rsn0008.md b/notices/rsn0008.md similarity index 100% rename from source/notices/rsn0008.md rename to notices/rsn0008.md diff --git a/source/notices/rsn0009.md b/notices/rsn0009.md similarity index 100% rename from source/notices/rsn0009.md rename to notices/rsn0009.md diff --git a/source/notices/rsn0010.md b/notices/rsn0010.md similarity index 100% rename from source/notices/rsn0010.md rename to notices/rsn0010.md diff --git a/source/notices/rsn0011.md b/notices/rsn0011.md similarity index 100% rename from source/notices/rsn0011.md rename to notices/rsn0011.md diff --git a/source/notices/rsn0012.md b/notices/rsn0012.md similarity index 100% rename from source/notices/rsn0012.md rename to notices/rsn0012.md diff --git a/source/notices/rsn0013.md b/notices/rsn0013.md similarity index 100% rename from source/notices/rsn0013.md rename to notices/rsn0013.md diff --git a/source/notices/rsn0014.md b/notices/rsn0014.md similarity index 100% rename from source/notices/rsn0014.md rename to notices/rsn0014.md diff --git a/source/notices/rsn0015.md b/notices/rsn0015.md similarity index 100% rename from source/notices/rsn0015.md rename to notices/rsn0015.md diff --git a/source/notices/rsn0016.md b/notices/rsn0016.md similarity index 100% rename from source/notices/rsn0016.md rename to notices/rsn0016.md diff --git a/source/notices/rsn0017.md b/notices/rsn0017.md similarity index 100% rename from source/notices/rsn0017.md rename to notices/rsn0017.md diff --git a/source/notices/rsn0018.md b/notices/rsn0018.md similarity index 100% rename from source/notices/rsn0018.md rename to notices/rsn0018.md diff --git a/source/notices/rsn0019.md b/notices/rsn0019.md similarity index 100% rename from source/notices/rsn0019.md rename to notices/rsn0019.md diff --git a/source/notices/rsn0020.md b/notices/rsn0020.md similarity index 100% rename from source/notices/rsn0020.md rename to notices/rsn0020.md diff --git a/source/notices/rsn0021.md b/notices/rsn0021.md similarity index 100% rename from source/notices/rsn0021.md rename to notices/rsn0021.md diff --git a/source/notices/rsn0022.md b/notices/rsn0022.md similarity index 100% rename from source/notices/rsn0022.md rename to notices/rsn0022.md diff --git a/source/notices/rsn0023.md b/notices/rsn0023.md similarity index 100% rename from source/notices/rsn0023.md rename to notices/rsn0023.md diff --git a/source/notices/rsn0024.md b/notices/rsn0024.md similarity index 100% rename from source/notices/rsn0024.md rename to notices/rsn0024.md diff --git a/source/notices/rsn0025.md b/notices/rsn0025.md similarity index 100% rename from source/notices/rsn0025.md rename to notices/rsn0025.md diff --git a/source/notices/rsn0026.md b/notices/rsn0026.md similarity index 100% rename from source/notices/rsn0026.md rename to notices/rsn0026.md diff --git a/source/notices/rsn0027.md b/notices/rsn0027.md similarity index 100% rename from source/notices/rsn0027.md rename to notices/rsn0027.md diff --git a/source/notices/rsn0028.md b/notices/rsn0028.md similarity index 100% rename from source/notices/rsn0028.md rename to notices/rsn0028.md diff --git a/source/notices/rsn0029.md b/notices/rsn0029.md similarity index 100% rename from source/notices/rsn0029.md rename to notices/rsn0029.md diff --git a/source/notices/rsn0030.md b/notices/rsn0030.md similarity index 100% rename from source/notices/rsn0030.md rename to notices/rsn0030.md diff --git a/source/notices/rsn0031.md b/notices/rsn0031.md similarity index 100% rename from source/notices/rsn0031.md rename to notices/rsn0031.md diff --git a/source/notices/rsn0032.md b/notices/rsn0032.md similarity index 100% rename from source/notices/rsn0032.md rename to notices/rsn0032.md diff --git a/source/notices/rsn0033.md b/notices/rsn0033.md similarity index 100% rename from source/notices/rsn0033.md rename to notices/rsn0033.md diff --git a/source/notices/rsn0034.md b/notices/rsn0034.md similarity index 100% rename from source/notices/rsn0034.md rename to notices/rsn0034.md diff --git a/source/notices/rsn0035.md b/notices/rsn0035.md similarity index 100% rename from source/notices/rsn0035.md rename to notices/rsn0035.md diff --git a/source/notices/rsn0036.md b/notices/rsn0036.md similarity index 100% rename from source/notices/rsn0036.md rename to notices/rsn0036.md diff --git a/source/notices/rsn0037.md b/notices/rsn0037.md similarity index 100% rename from source/notices/rsn0037.md rename to notices/rsn0037.md diff --git a/source/notices/rsn0038.md b/notices/rsn0038.md similarity index 100% rename from source/notices/rsn0038.md rename to notices/rsn0038.md diff --git a/source/notices/rsn0039.md b/notices/rsn0039.md similarity index 100% rename from source/notices/rsn0039.md rename to notices/rsn0039.md diff --git a/source/notices/rsn0040.md b/notices/rsn0040.md similarity index 100% rename from source/notices/rsn0040.md rename to notices/rsn0040.md diff --git a/source/notices/rsn0041.md b/notices/rsn0041.md similarity index 100% rename from source/notices/rsn0041.md rename to notices/rsn0041.md diff --git a/source/notices/rsn0042.md b/notices/rsn0042.md similarity index 100% rename from source/notices/rsn0042.md rename to notices/rsn0042.md diff --git a/source/notices/rsn0043.md b/notices/rsn0043.md similarity index 100% rename from source/notices/rsn0043.md rename to notices/rsn0043.md diff --git a/source/notices/rsn0044.md b/notices/rsn0044.md similarity index 100% rename from source/notices/rsn0044.md rename to notices/rsn0044.md diff --git a/source/notices/rsn0045.md b/notices/rsn0045.md similarity index 100% rename from source/notices/rsn0045.md rename to notices/rsn0045.md diff --git a/source/notices/rsn0046.md b/notices/rsn0046.md similarity index 100% rename from source/notices/rsn0046.md rename to notices/rsn0046.md diff --git a/source/notices/rsn0047.md b/notices/rsn0047.md similarity index 100% rename from source/notices/rsn0047.md rename to notices/rsn0047.md diff --git a/source/notices/rsn0048.md b/notices/rsn0048.md similarity index 100% rename from source/notices/rsn0048.md rename to notices/rsn0048.md diff --git a/source/notices/rsn0049.md b/notices/rsn0049.md similarity index 100% rename from source/notices/rsn0049.md rename to notices/rsn0049.md diff --git a/source/notices/rsn0050.md b/notices/rsn0050.md similarity index 100% rename from source/notices/rsn0050.md rename to notices/rsn0050.md diff --git a/source/notices/rsn0051.md b/notices/rsn0051.md similarity index 100% rename from source/notices/rsn0051.md rename to notices/rsn0051.md diff --git a/source/notices/rsn0052.md b/notices/rsn0052.md similarity index 100% rename from source/notices/rsn0052.md rename to notices/rsn0052.md diff --git a/source/notices/rsn0053.md b/notices/rsn0053.md similarity index 100% rename from source/notices/rsn0053.md rename to notices/rsn0053.md diff --git a/source/notices/rsn0054.md b/notices/rsn0054.md similarity index 100% rename from source/notices/rsn0054.md rename to notices/rsn0054.md diff --git a/source/notices/rsn0055.md b/notices/rsn0055.md similarity index 100% rename from source/notices/rsn0055.md rename to notices/rsn0055.md diff --git a/source/notices/rsn0056.md b/notices/rsn0056.md similarity index 100% rename from source/notices/rsn0056.md rename to notices/rsn0056.md diff --git a/source/notices/rsn0057.md b/notices/rsn0057.md similarity index 100% rename from source/notices/rsn0057.md rename to notices/rsn0057.md diff --git a/source/notices/rsn0058.md b/notices/rsn0058.md similarity index 100% rename from source/notices/rsn0058.md rename to notices/rsn0058.md diff --git a/source/notices/rsn0059.md b/notices/rsn0059.md similarity index 100% rename from source/notices/rsn0059.md rename to notices/rsn0059.md diff --git a/source/notices/rsn0060.md b/notices/rsn0060.md similarity index 100% rename from source/notices/rsn0060.md rename to notices/rsn0060.md diff --git a/source/notices/rsn0061.md b/notices/rsn0061.md similarity index 100% rename from source/notices/rsn0061.md rename to notices/rsn0061.md diff --git a/source/platform-support/index.md b/platform-support/index.md similarity index 100% rename from source/platform-support/index.md rename to platform-support/index.md diff --git a/source/releases/hotfix.md b/releases/hotfix.md similarity index 100% rename from source/releases/hotfix.md rename to releases/hotfix.md diff --git a/source/releases/index.md b/releases/index.md similarity index 100% rename from source/releases/index.md rename to releases/index.md diff --git a/source/releases/process.md b/releases/process.md similarity index 100% rename from source/releases/process.md rename to releases/process.md diff --git a/source/releases/schedule.md b/releases/schedule.md similarity index 100% rename from source/releases/schedule.md rename to releases/schedule.md diff --git a/source/resources/auto-merger.md b/resources/auto-merger.md similarity index 100% rename from source/resources/auto-merger.md rename to resources/auto-merger.md diff --git a/source/resources/burn-down-guide.md b/resources/burn-down-guide.md similarity index 100% rename from source/resources/burn-down-guide.md rename to resources/burn-down-guide.md diff --git a/source/resources/changelog.md b/resources/changelog.md similarity index 100% rename from source/resources/changelog.md rename to resources/changelog.md diff --git a/source/resources/conduct.md b/resources/conduct.md similarity index 100% rename from source/resources/conduct.md rename to resources/conduct.md diff --git a/source/resources/github-actions.md b/resources/github-actions.md similarity index 100% rename from source/resources/github-actions.md rename to resources/github-actions.md diff --git a/source/resources/index.md b/resources/index.md similarity index 100% rename from source/resources/index.md rename to resources/index.md diff --git a/source/resources/label-checker.md b/resources/label-checker.md similarity index 100% rename from source/resources/label-checker.md rename to resources/label-checker.md diff --git a/source/resources/merge-barriers.md b/resources/merge-barriers.md similarity index 100% rename from source/resources/merge-barriers.md rename to resources/merge-barriers.md diff --git a/source/resources/recently-updated.md b/resources/recently-updated.md similarity index 100% rename from source/resources/recently-updated.md rename to resources/recently-updated.md diff --git a/source/resources/reproducing-ci.md b/resources/reproducing-ci.md similarity index 100% rename from source/resources/reproducing-ci.md rename to resources/reproducing-ci.md diff --git a/source/resources/telemetry.md b/resources/telemetry.md similarity index 100% rename from source/resources/telemetry.md rename to resources/telemetry.md diff --git a/source/resources/versions.md b/resources/versions.md similarity index 100% rename from source/resources/versions.md rename to resources/versions.md diff --git a/scripts/compare_routes.py b/scripts/compare_routes.py deleted file mode 100644 index feb6de59d78..00000000000 --- a/scripts/compare_routes.py +++ /dev/null @@ -1,157 +0,0 @@ -#!/usr/bin/env python3 -# SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. -# SPDX-License-Identifier: Apache-2.0 - -"""Compare Sphinx routes, headings, and normalized content with Jekyll.""" - -from __future__ import annotations - -import argparse -import json -import re -import unicodedata -from collections import Counter -from pathlib import Path - -from bs4 import BeautifulSoup - -SOURCE_COMMIT = "b6afa0cbf4ddfc4c0a21f7c79b18631f214fd759" -MINIMUM_CONTENT_COVERAGE = 0.90 -HEADING_RENAMES = { - "/install/": {"jupyterlab.": "jupyterlab"}, -} -HEADING_OMISSIONS = { - "/visualization/": {"note: web hosted vs local hosted chart interaction"}, -} - - -def routes(root: Path) -> set[str]: - output = set() - for path in root.rglob("index.html"): - relative = path.relative_to(root) - if relative.parts[0] == "assets": - continue - route = "/" + "/".join(relative.parts[:-1]) - output.add(route.rstrip("/") + "/") - return output - - -def _page_path(root: Path, route: str) -> Path: - if route == "/": - return root / "index.html" - return root / route.strip("/") / "index.html" - - -def _normalize(value: str) -> str: - value = unicodedata.normalize("NFKD", value).lower() - value = value.replace("`", "").replace("\u2019", "'").replace("\u2018", "'") - value = re.sub(r"\s+#$", "", value) - return re.sub(r"\s+", " ", value).strip() - - -def _page_data(path: Path, *, jekyll: bool) -> dict: - soup = BeautifulSoup(path.read_text(errors="ignore"), "html.parser") - main = soup.select_one("#main-content" if jekyll else "article.bd-article") or soup - - if jekyll: - # just-the-docs appends child navigation after the authored content. - for heading in list(main.select("h1,h2,h3,h4,h5,h6")): - if _normalize(heading.get_text(" ", strip=True)) == "table of contents": - for following in list(heading.find_all_next()): - following.decompose() - heading.decompose() - - headings = [ - _normalize(heading.get_text(" ", strip=True)) - for heading in main.select("h1,h2,h3,h4,h5,h6") - ] - for element in main.select("script,style,nav,.toc,.headerlink"): - element.decompose() - text = main.get_text(" ", strip=True) - # The Jekyll visualization includes contain malformed en-dash HTML comment - # delimiters. Browsers display those license comments as text, while MyST - # correctly preserves them as non-visible HTML comments. - text = re.sub( - r"", - " ", - text, - flags=re.IGNORECASE, - ) - text = _normalize(text) - words = Counter(re.findall(r"[a-z0-9]+", text)) - return {"headings": headings, "words": dict(sorted(words.items()))} - - -def _write_manifest(jekyll_site: Path, output: Path) -> None: - pages = { - route: _page_data(_page_path(jekyll_site, route), jekyll=True) - for route in sorted(routes(jekyll_site)) - } - manifest = {"source_commit": SOURCE_COMMIT, "pages": pages} - output.parent.mkdir(parents=True, exist_ok=True) - output.write_text(json.dumps(manifest, indent=2, sort_keys=True) + "\n") - print(f"Recorded {len(pages)} Jekyll pages from {SOURCE_COMMIT}") - - -def _compare(manifest_path: Path, sphinx_site: Path) -> None: - manifest = json.loads(manifest_path.read_text()) - if manifest["source_commit"] != SOURCE_COMMIT: - raise SystemExit("Baseline manifest has an unexpected source commit") - - failures = [] - coverages = [] - for route, expected in manifest["pages"].items(): - path = _page_path(sphinx_site, route) - if not path.exists(): - failures.append(f"{route}: route is missing") - continue - - actual = _page_data(path, jekyll=False) - missing_headings = [ - heading - for heading in expected["headings"] - if heading not in HEADING_OMISSIONS.get(route, set()) - if HEADING_RENAMES.get(route, {}).get(heading, heading) not in actual["headings"] - ] - if missing_headings: - failures.append(f"{route}: missing headings: {', '.join(missing_headings)}") - - expected_words = Counter(expected["words"]) - actual_words = Counter(actual["words"]) - coverage = sum((expected_words & actual_words).values()) / sum(expected_words.values()) - coverages.append((coverage, route)) - if coverage < MINIMUM_CONTENT_COVERAGE: - failures.append( - f"{route}: normalized content coverage is {coverage:.1%}, " - f"below {MINIMUM_CONTENT_COVERAGE:.0%}" - ) - - if failures: - raise SystemExit("Jekyll parity validation failed:\n- " + "\n- ".join(failures)) - - minimum, minimum_route = min(coverages) - print( - f"Validated {len(manifest['pages'])} Jekyll routes and headings; " - f"minimum normalized content coverage is {minimum:.1%} ({minimum_route})" - ) - - -def main() -> None: - parser = argparse.ArgumentParser() - parser.add_argument("baseline", type=Path) - parser.add_argument("sphinx", type=Path) - parser.add_argument( - "--write", - action="store_true", - help="write a baseline manifest from a Jekyll site instead of comparing", - ) - args = parser.parse_args() - - if args.write: - _write_manifest(args.baseline, args.sphinx) - else: - _compare(args.baseline, args.sphinx) - - -if __name__ == "__main__": - main() diff --git a/scripts/migrate_from_jekyll.py b/scripts/migrate_from_jekyll.py index d2b1fc3ac0d..57019a82416 100644 --- a/scripts/migrate_from_jekyll.py +++ b/scripts/migrate_from_jekyll.py @@ -12,7 +12,7 @@ from pathlib import Path SOURCE = Path(sys.argv[1] if len(sys.argv) > 1 else "/tmp/rapidsai-docs-jekyll-upstream-main") -DESTINATION = Path(__file__).resolve().parents[1] / "source" +DESTINATION = Path(__file__).resolve().parents[1] def split_front_matter(text: str) -> tuple[str, str]: diff --git a/scripts/validate_site.py b/scripts/validate_site.py index ce64c0e1ae0..1a9fb91c9b8 100644 --- a/scripts/validate_site.py +++ b/scripts/validate_site.py @@ -11,7 +11,7 @@ from xml.etree import ElementTree ROOT = Path(__file__).resolve().parents[1] -SOURCE_NOTICES = ROOT / "source" / "notices" +SOURCE_NOTICES = ROOT / "notices" REQUIRED_PAGES = [ "index.html", diff --git a/source/SECURITY.md b/source/SECURITY.md deleted file mode 100644 index 8c72c173967..00000000000 --- a/source/SECURITY.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -orphan: true ---- -# Security - -## Reporting Security Issues - -```{warning} -Do not report security vulnerabilities through public GitHub issues! -``` - -Instead, please submit a private vulnerability report, see below. - -## Reporting a Vulnerability - -1. **NVIDIA Vulnerability Disclosure Program (preferred)** - Submit through the NVIDIA Product Security Incident Response Team (PSIRT) web form () - This is the fastest path to triage and tracking. - -2. **Email NVIDIA PSIRT** - `psirt@nvidia.com` — encrypt sensitive reports with the - [NVIDIA PSIRT PGP key](https://www.nvidia.com/en-us/security/pgp-key). - -3. **GitHub Private Vulnerability Reporting** - Use the **Security and quality** tab on this repository → *Report a vulnerability*. - -## Report Details - -We prefer all communications to be in English. - -Reports should include the following: - -* reproducible example showing how the vulnerability can be exploited -* statement about the impact (including affected versions) - -And we'd appreciate if they also include: - -* statement about whether you are interested in implementing the fix yourself - -## Disclosure Policy - -NVIDIA PSIRT will acknowledge receipt and coordinate triage, fix development, and coordinated disclosure. - -More on NVIDIA's response process: . diff --git a/source/assets/images/seaborn-logo.svg b/source/assets/images/seaborn-logo.svg deleted file mode 100644 index f0278d560a6..00000000000 --- a/source/assets/images/seaborn-logo.svg +++ /dev/null @@ -1,5216 +0,0 @@ - - - - - - - - - 2020-09-07T14:13:58.676334 - image/svg+xml - - - Matplotlib v3.3.1, https://matplotlib.org/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/source/_static/css/custom.css b/sphinx/_static/css/custom.css similarity index 100% rename from source/_static/css/custom.css rename to sphinx/_static/css/custom.css diff --git a/source/_static/js/portal-analytics.js b/sphinx/_static/js/portal-analytics.js similarity index 100% rename from source/_static/js/portal-analytics.js rename to sphinx/_static/js/portal-analytics.js diff --git a/source/_templates/layout.html b/sphinx/_templates/layout.html similarity index 100% rename from source/_templates/layout.html rename to sphinx/_templates/layout.html diff --git a/source/conf.py b/sphinx/conf.py similarity index 87% rename from source/conf.py rename to sphinx/conf.py index c057e94a08f..9ece1236bca 100644 --- a/source/conf.py +++ b/sphinx/conf.py @@ -24,7 +24,21 @@ source_suffix = {".md": "markdown"} master_doc = "index" -exclude_patterns = ["assets/images/telemetry/mermaid-workflow.md"] +include_patterns = [ + "404.md", + "SECURITY.md", + "api.md", + "index.md", + "contributing/**", + "install/**", + "maintainers/**", + "notices/**", + "platform-support/**", + "releases/**", + "resources/**", + "user-guide/**", + "visualization/**", +] templates_path = ["_templates"] myst_enable_extensions = [ @@ -41,7 +55,7 @@ html_theme = "nvidia_sphinx_theme" html_static_path = ["_static"] -html_extra_path = ["_redirects"] +html_extra_path = ["../_redirects"] html_baseurl = "https://docs.rapids.ai/" html_scaled_image_link = False diff --git a/tests/fixtures/jekyll_manifest.json b/tests/fixtures/jekyll_manifest.json deleted file mode 100644 index cb5f63a34ac..00000000000 --- a/tests/fixtures/jekyll_manifest.json +++ /dev/null @@ -1,14123 +0,0 @@ -{ - "pages": { - "/": { - "headings": [ - "rapids documentation and resources", - "sections", - "stay connected", - "docs issues or feedback" - ], - "words": { - "a": 1, - "ai": 1, - "an": 1, - "and": 1, - "any": 1, - "api": 1, - "are": 1, - "connected": 1, - "contribute": 1, - "deployment": 1, - "docs": 2, - "documentation": 5, - "encountered": 1, - "feedback": 2, - "file": 1, - "for": 4, - "general": 1, - "github": 1, - "guide": 3, - "guides": 2, - "help": 1, - "here": 1, - "incorrect": 1, - "information": 2, - "installation": 1, - "issue": 1, - "issues": 1, - "looking": 1, - "maintainer": 1, - "more": 1, - "new": 1, - "notices": 1, - "of": 1, - "on": 1, - "or": 3, - "overall": 1, - "overflow": 1, - "part": 1, - "platform": 1, - "problems": 1, - "project": 1, - "rapids": 7, - "re": 1, - "resources": 1, - "sections": 1, - "serves": 1, - "site": 2, - "slack": 1, - "stack": 1, - "stay": 1, - "support": 1, - "team": 1, - "the": 4, - "this": 2, - "to": 3, - "twitter": 1, - "unexpected": 1, - "unify": 1, - "user": 1, - "visit": 1, - "visualization": 1, - "whether": 1, - "will": 1, - "you": 2 - } - }, - "/SECURITY/": { - "headings": [ - "security", - "reporting security issues", - "reporting a vulnerability", - "report details", - "disclosure policy" - ], - "words": { - "a": 3, - "about": 2, - "acknowledge": 1, - "affected": 1, - "all": 1, - "also": 1, - "and": 5, - "appreciate": 1, - "are": 1, - "be": 2, - "below": 1, - "can": 1, - "com": 3, - "communications": 1, - "coordinate": 1, - "coordinated": 1, - "d": 1, - "details": 1, - "development": 1, - "disclosure": 3, - "do": 1, - "email": 1, - "en": 2, - "encrypt": 1, - "english": 1, - "example": 1, - "exploited": 1, - "fastest": 1, - "fix": 2, - "following": 1, - "form": 1, - "github": 2, - "how": 1, - "https": 2, - "if": 1, - "impact": 1, - "implementing": 1, - "in": 2, - "incident": 1, - "include": 2, - "including": 1, - "instead": 1, - "interested": 1, - "is": 1, - "issues": 2, - "key": 1, - "more": 1, - "not": 1, - "nvidia": 9, - "on": 2, - "path": 1, - "pgp": 1, - "please": 1, - "policies": 1, - "policy": 1, - "prefer": 1, - "preferred": 1, - "private": 2, - "process": 1, - "product": 1, - "program": 1, - "psirt": 6, - "public": 1, - "quality": 1, - "receipt": 1, - "report": 5, - "reporting": 3, - "reports": 2, - "repository": 1, - "reproducible": 1, - "response": 2, - "s": 1, - "security": 7, - "see": 1, - "sensitive": 1, - "should": 1, - "showing": 1, - "statement": 2, - "submit": 2, - "tab": 1, - "team": 1, - "the": 8, - "they": 1, - "this": 2, - "through": 2, - "to": 2, - "tracking": 1, - "triage": 2, - "us": 2, - "use": 1, - "versions": 1, - "vulnerabilities": 1, - "vulnerability": 7, - "warning": 1, - "we": 2, - "web": 1, - "whether": 1, - "will": 1, - "with": 1, - "www": 2, - "you": 1, - "yourself": 1 - } - }, - "/api/": { - "headings": [ - "rapids api docs", - "rapids apis", - "cudf", - "docs stable (26.06) | nightly (26.08) | legacy (26.04)", - "links changelog | github", - "dask-cudf", - "docs stable (26.06) | nightly (26.08) | legacy (26.04)", - "links changelog | github", - "cuml", - "docs stable (26.06) | nightly (26.08) | legacy (26.04)", - "links changelog | github", - "cugraph", - "docs stable (26.06) | nightly (26.08) | legacy (26.04)", - "links changelog | github", - "cuxfilter", - "docs stable (26.06) | nightly (26.08) | legacy (26.04)", - "links changelog | github", - "java + cudf", - "docs stable (26.06) | legacy (26.04)", - "links changelog | github", - "cucim", - "docs stable (26.06) | nightly (26.08) | legacy (26.04)", - "links changelog | github", - "cuvs", - "docs stable (26.06) | nightly (26.08) | legacy (26.04)", - "links changelog | github", - "kvikio", - "docs stable (26.06) | nightly (26.08) | legacy (26.04)", - "links changelog | github", - "raft", - "docs stable (26.06) | nightly (26.08) | legacy (26.04)", - "links changelog | github", - "dask-cuda", - "docs stable (26.06) | nightly (26.08) | legacy (26.04)", - "links changelog | github", - "rmm", - "docs stable (26.06) | nightly (26.08) | legacy (26.04)", - "links changelog | github", - "rapidsmpf", - "docs stable (26.06) | nightly (26.08) | legacy (26.04)", - "links github", - "ucxx", - "docs stable (0.50) | nightly (0.51)", - "links changelog | github", - "nvforest", - "docs stable (26.06) | nightly (26.08)", - "links changelog | github", - "rapids libraries", - "libcudf", - "docs stable (26.06) | nightly (26.08) | legacy (26.04)", - "links changelog | github", - "libcuml", - "docs stable (26.06) | nightly (26.08) | legacy (26.04)", - "links changelog | github", - "libkvikio", - "docs stable (26.06) | nightly (26.08) | legacy (26.04)", - "links changelog | github", - "librapidsmpf", - "docs stable (26.06) | nightly (26.08) | legacy (26.04)", - "links github", - "libucxx", - "docs stable (0.50) | nightly (0.51) | legacy (0.49)", - "links github", - "rapids-cmake", - "docs stable (26.06) | nightly (26.08) | legacy (26.04)", - "links changelog | github", - "inactive projects", - "cuproj", - "docs stable (25.04) | legacy (25.02)", - "links changelog | github", - "cusignal", - "docs", - "links changelog | github", - "cuspatial", - "docs stable (25.04) | legacy (25.02)", - "links changelog | github", - "libcuproj", - "docs stable (25.04) | legacy (25.02)", - "links changelog | github", - "libcuspatial", - "docs stable (25.04) | legacy (25.02)", - "links changelog | github" - ], - "words": { - "0": 5, - "02": 4, - "04": 22, - "06": 19, - "08": 18, - "25": 8, - "26": 55, - "49": 1, - "50": 2, - "51": 2, - "9im": 2, - "a": 25, - "accelerated": 7, - "access": 1, - "acts": 1, - "addition": 1, - "aggregating": 1, - "algorithms": 4, - "all": 2, - "allocation": 1, - "allocations": 1, - "allocator": 2, - "allow": 1, - "allows": 1, - "also": 2, - "an": 3, - "analysis": 2, - "analytics": 1, - "and": 26, - "apache": 1, - "api": 1, - "apis": 2, - "are": 2, - "arrow": 1, - "as": 1, - "asynchronous": 1, - "at": 1, - "available": 2, - "be": 3, - "been": 1, - "below": 2, - "between": 3, - "binary": 2, - "bindings": 3, - "biomedical": 1, - "both": 1, - "built": 1, - "by": 1, - "c": 12, - "central": 1, - "changelog": 23, - "charts": 1, - "clustering": 1, - "cmake": 3, - "code": 1, - "collection": 3, - "columnar": 1, - "compatible": 2, - "computer": 1, - "connections": 1, - "connector": 1, - "considered": 2, - "contains": 1, - "coordinate": 4, - "coordinates": 2, - "core": 1, - "cpus": 1, - "crses": 2, - "cucim": 2, - "cuda": 8, - "cudf": 9, - "cufile": 1, - "cugraph": 4, - "cuml": 3, - "cuproj": 2, - "cupy": 2, - "current": 2, - "cusignal": 2, - "cuspatial": 2, - "cuvs": 2, - "cuxfilter": 2, - "dashboard": 1, - "dask": 6, - "data": 1, - "dataframe": 4, - "dataframes": 2, - "de": 2, - "deallocation": 1, - "decision": 1, - "deployment": 1, - "description": 1, - "designed": 1, - "device": 3, - "different": 2, - "dimensional": 1, - "distances": 2, - "distributed": 2, - "docs": 33, - "documentation": 1, - "each": 1, - "easier": 1, - "ecosystem": 1, - "efficient": 1, - "enabled": 1, - "enables": 2, - "exposed": 1, - "extends": 1, - "extensible": 1, - "fast": 1, - "faster": 1, - "file": 1, - "filtering": 1, - "fit": 1, - "fixes": 1, - "focus": 1, - "for": 21, - "format": 1, - "foundation": 1, - "from": 1, - "functionality": 1, - "functions": 1, - "fundamental": 1, - "gds": 2, - "geodetic": 2, - "geographic": 2, - "gis": 2, - "github": 26, - "gnns": 1, - "gpu": 12, - "gpudirect": 2, - "gpus": 2, - "graph": 2, - "graphs": 1, - "has": 1, - "hassle": 1, - "header": 3, - "help": 1, - "high": 2, - "highly": 1, - "i": 1, - "image": 1, - "images": 1, - "imaging": 1, - "implement": 1, - "implementing": 1, - "improve": 1, - "in": 9, - "inactive": 1, - "including": 3, - "inference": 1, - "infiniband": 1, - "information": 2, - "instead": 1, - "integration": 1, - "interaction": 1, - "interface": 2, - "io": 1, - "is": 23, - "it": 2, - "its": 1, - "java": 2, - "join": 2, - "joining": 1, - "kvikio": 2, - "large": 1, - "larger": 1, - "learning": 2, - "legacy": 24, - "level": 1, - "leverage": 1, - "libcudf": 2, - "libcuml": 2, - "libcuproj": 2, - "libcuspatial": 2, - "libkvikio": 2, - "librapidsmpf": 2, - "libraries": 6, - "library": 16, - "libucxx": 2, - "lightweight": 1, - "like": 2, - "links": 26, - "loading": 1, - "low": 1, - "machine": 2, - "make": 1, - "makes": 1, - "managed": 1, - "management": 2, - "manager": 1, - "manipulating": 1, - "mathematical": 1, - "memory": 9, - "methods": 1, - "models": 1, - "modules": 1, - "more": 3, - "moved": 1, - "much": 1, - "multi": 3, - "multiple": 2, - "n": 1, - "native": 1, - "necessary": 1, - "needs": 1, - "networking": 2, - "networkx": 1, - "nightly": 23, - "nodes": 1, - "nvforest": 2, - "nvidia": 1, - "nvlink": 1, - "nx": 1, - "o": 1, - "object": 1, - "of": 9, - "on": 4, - "only": 3, - "operations": 1, - "optimized": 1, - "oriented": 1, - "other": 2, - "otherwise": 1, - "our": 1, - "out": 1, - "pandas": 1, - "part": 1, - "partitions": 1, - "performance": 3, - "place": 2, - "please": 1, - "point": 2, - "polygon": 2, - "pool": 1, - "predicates": 2, - "previous": 1, - "primitives": 3, - "process": 1, - "processed": 1, - "processing": 2, - "progress": 1, - "proj": 1, - "projecting": 2, - "projects": 4, - "protocols": 1, - "provide": 1, - "provides": 1, - "providing": 2, - "pyg": 2, - "pylibwholegraph": 1, - "pyproj": 1, - "python": 6, - "raft": 2, - "rapids": 12, - "rapidsmpf": 2, - "reference": 3, - "release": 3, - "released": 1, - "replacement": 1, - "retrieval": 1, - "rmm": 2, - "rolling": 1, - "scales": 1, - "search": 2, - "see": 1, - "select": 1, - "several": 1, - "share": 1, - "sharing": 1, - "similar": 1, - "single": 2, - "spatial": 2, - "stable": 28, - "standard": 1, - "still": 1, - "storage": 2, - "suite": 1, - "support": 2, - "supporting": 1, - "supports": 2, - "systems": 3, - "tcp": 1, - "that": 5, - "the": 13, - "this": 2, - "to": 14, - "toolkit": 1, - "traditional": 1, - "trajectory": 2, - "transformation": 2, - "transport": 1, - "tree": 1, - "ucx": 3, - "ucxx": 3, - "unstable": 1, - "use": 1, - "used": 2, - "useful": 1, - "user": 1, - "using": 3, - "utilities": 1, - "various": 1, - "vector": 4, - "versions": 1, - "vision": 1, - "visualization": 1, - "where": 1, - "which": 4, - "while": 2, - "widely": 1, - "with": 5, - "without": 1, - "work": 1, - "workers": 1, - "workloads": 1, - "written": 1, - "your": 1 - } - }, - "/contributing/": { - "headings": [ - "contributing", - "getting started", - "your first issue", - "more details", - "issues or feedback" - ], - "words": { - "0": 2, - "2": 2, - "a": 2, - "about": 1, - "all": 5, - "also": 1, - "an": 2, - "and": 6, - "any": 2, - "anything": 1, - "apache": 2, - "approach": 1, - "approved": 1, - "are": 6, - "as": 1, - "ask": 2, - "at": 1, - "before": 2, - "begin": 1, - "best": 1, - "bugs": 1, - "can": 1, - "checks": 1, - "ci": 1, - "clarifications": 1, - "code": 5, - "comment": 2, - "comments": 1, - "community": 1, - "conduct": 1, - "contributing": 3, - "contributions": 1, - "copyright": 1, - "create": 1, - "creating": 1, - "details": 1, - "developer": 1, - "developers": 2, - "development": 1, - "don": 1, - "done": 1, - "encountered": 1, - "environment": 1, - "everyone": 1, - "excited": 1, - "features": 1, - "feedback": 2, - "file": 1, - "files": 1, - "find": 1, - "first": 2, - "fix": 1, - "fixing": 1, - "following": 1, - "for": 6, - "general": 1, - "getting": 1, - "going": 1, - "good": 1, - "grow": 1, - "help": 1, - "here": 2, - "hesitate": 1, - "how": 1, - "if": 2, - "include": 2, - "information": 1, - "is": 2, - "issue": 5, - "issues": 2, - "it": 2, - "labels": 1, - "learn": 1, - "levels": 1, - "license": 2, - "look": 1, - "make": 2, - "merge": 1, - "more": 1, - "needed": 2, - "new": 1, - "of": 3, - "on": 5, - "once": 1, - "only": 1, - "or": 4, - "other": 1, - "our": 1, - "outline": 1, - "page": 1, - "pages": 1, - "passes": 1, - "problems": 1, - "project": 1, - "projects": 1, - "pull": 2, - "rapids": 5, - "read": 1, - "readme": 1, - "released": 1, - "remember": 1, - "reporting": 1, - "request": 2, - "review": 3, - "reviewed": 1, - "s": 1, - "saying": 1, - "setup": 1, - "site": 1, - "so": 1, - "source": 1, - "started": 1, - "status": 1, - "success": 1, - "support": 2, - "sure": 2, - "t": 1, - "tests": 1, - "text": 1, - "that": 3, - "the": 12, - "them": 1, - "this": 1, - "to": 10, - "under": 1, - "unexpected": 1, - "unit": 1, - "unsure": 1, - "update": 2, - "verify": 1, - "vital": 2, - "wait": 1, - "wanted": 1, - "way": 1, - "we": 2, - "welcome": 1, - "when": 1, - "will": 1, - "with": 2, - "work": 2, - "you": 4, - "your": 4 - } - }, - "/contributing/code/": { - "headings": [ - "code contributions", - "overview", - "intended audience", - "see also", - "new developers", - "your first issue", - "what do i work on?", - "reviewing pull requests" - ], - "words": { - "0": 2, - "2": 2, - "a": 5, - "about": 1, - "ai": 1, - "all": 5, - "also": 3, - "an": 2, - "and": 9, - "anything": 1, - "apache": 2, - "approved": 3, - "are": 10, - "as": 3, - "ask": 1, - "assign": 1, - "assigned": 1, - "audience": 1, - "be": 1, - "been": 1, - "best": 2, - "board": 2, - "bottom": 1, - "bug": 1, - "can": 1, - "check": 1, - "checks": 2, - "ci": 2, - "clarifications": 1, - "code": 9, - "column": 2, - "comfortable": 1, - "comment": 3, - "comments": 1, - "community": 2, - "conduct": 1, - "contribute": 1, - "contributions": 2, - "copyright": 1, - "create": 2, - "developer": 2, - "developers": 5, - "development": 1, - "do": 1, - "don": 1, - "done": 2, - "each": 1, - "environment": 1, - "feature": 1, - "file": 1, - "files": 1, - "find": 4, - "first": 3, - "fix": 2, - "follow": 1, - "for": 9, - "from": 2, - "going": 2, - "good": 1, - "have": 1, - "help": 2, - "hesitate": 1, - "high": 1, - "highest": 1, - "how": 1, - "https": 1, - "i": 1, - "if": 8, - "implement": 1, - "important": 1, - "improvement": 1, - "in": 3, - "include": 1, - "intended": 1, - "is": 1, - "issue": 8, - "issues": 6, - "it": 2, - "labels": 1, - "lead": 1, - "learn": 1, - "least": 1, - "license": 2, - "look": 1, - "low": 1, - "made": 1, - "make": 5, - "merge": 3, - "most": 1, - "named": 2, - "needed": 5, - "needs": 1, - "new": 3, - "next": 2, - "not": 1, - "note": 1, - "of": 2, - "on": 9, - "once": 2, - "or": 2, - "ordered": 1, - "org": 1, - "other": 2, - "others": 1, - "out": 1, - "outlines": 1, - "overview": 1, - "p0": 1, - "p1": 1, - "p2": 1, - "passes": 2, - "pr": 3, - "prioritized": 1, - "priority": 1, - "project": 4, - "projects": 2, - "pull": 7, - "purpose": 1, - "rapids": 8, - "read": 1, - "readme": 1, - "release": 4, - "released": 1, - "remember": 1, - "report": 1, - "request": 4, - "requests": 3, - "review": 5, - "reviewed": 2, - "reviewer": 1, - "reviewing": 1, - "right": 1, - "s": 1, - "saying": 2, - "scroll": 1, - "see": 1, - "select": 1, - "setup": 1, - "so": 1, - "source": 1, - "status": 2, - "suggest": 1, - "support": 1, - "sure": 5, - "t": 1, - "tests": 2, - "text": 1, - "that": 4, - "the": 23, - "those": 1, - "three": 1, - "to": 21, - "top": 1, - "under": 1, - "understand": 1, - "unit": 2, - "unsure": 1, - "update": 4, - "verify": 2, - "version": 2, - "wait": 2, - "wanted": 1, - "way": 2, - "ways": 1, - "what": 1, - "when": 2, - "will": 2, - "within": 1, - "work": 5, - "working": 1, - "you": 9, - "your": 7, - "yourself": 1 - } - }, - "/contributing/issues/": { - "headings": [ - "issues", - "overview", - "intended audience", - "see also", - "create an issue", - "format", - "title", - "description", - "task list", - "blockers", - "lifecycle" - ], - "words": { - "0": 2, - "1": 1, - "2": 1, - "a": 11, - "about": 1, - "above": 2, - "add": 3, - "adding": 1, - "addressed": 1, - "after": 1, - "already": 1, - "also": 1, - "an": 8, - "and": 6, - "another": 1, - "applicable": 1, - "appropriate": 1, - "are": 3, - "as": 1, - "ask": 1, - "assigned": 1, - "associated": 1, - "audience": 1, - "automatically": 2, - "backlog": 1, - "be": 3, - "been": 1, - "before": 1, - "begin": 1, - "best": 2, - "blocked": 2, - "blockers": 1, - "blocking": 1, - "breakdown": 1, - "bug": 3, - "by": 1, - "can": 2, - "class": 1, - "close": 1, - "closed": 1, - "code": 3, - "comment": 1, - "community": 1, - "completed": 1, - "consider": 1, - "contributing": 1, - "create": 1, - "creating": 6, - "deck": 1, - "describe": 2, - "description": 4, - "determine": 1, - "developer": 1, - "developers": 1, - "do": 1, - "doc": 1, - "documentation": 3, - "due": 1, - "each": 1, - "either": 1, - "enhancement": 1, - "even": 1, - "every": 1, - "existing": 1, - "fall": 1, - "fea": 1, - "feature": 3, - "first": 1, - "fit": 1, - "follow": 2, - "following": 1, - "for": 3, - "format": 1, - "four": 2, - "from": 1, - "fully": 2, - "function": 1, - "general": 1, - "good": 1, - "guide": 2, - "has": 1, - "have": 2, - "help": 2, - "here": 1, - "how": 1, - "idea": 1, - "if": 8, - "important": 1, - "in": 5, - "include": 2, - "intended": 1, - "into": 1, - "is": 5, - "issue": 23, - "issues": 5, - "it": 1, - "item": 1, - "label": 1, - "labels": 2, - "leads": 1, - "lifecycle": 1, - "list": 4, - "mark": 1, - "merged": 1, - "name": 1, - "needed": 1, - "new": 1, - "not": 1, - "of": 7, - "on": 5, - "one": 2, - "open": 2, - "options": 1, - "or": 8, - "order": 1, - "outlined": 1, - "overview": 2, - "perhaps": 1, - "picked": 1, - "please": 1, - "populated": 2, - "practices": 1, - "prefix": 2, - "priority": 1, - "problem": 3, - "process": 1, - "progress": 1, - "project": 1, - "projects": 2, - "pull": 5, - "qst": 1, - "question": 3, - "rapids": 3, - "regular": 1, - "related": 2, - "remove": 1, - "report": 2, - "reproduce": 1, - "request": 3, - "requests": 2, - "says": 1, - "search": 1, - "see": 2, - "select": 2, - "should": 4, - "single": 1, - "so": 1, - "someone": 1, - "sparingly": 1, - "start": 1, - "stating": 1, - "steps": 1, - "succinct": 1, - "suggest": 1, - "suggestion": 1, - "task": 6, - "tasks": 2, - "team": 2, - "template": 1, - "that": 2, - "the": 30, - "these": 1, - "they": 1, - "this": 3, - "title": 4, - "to": 12, - "top": 1, - "truly": 1, - "try": 1, - "type": 2, - "types": 2, - "understand": 1, - "unsure": 2, - "update": 2, - "updating": 1, - "use": 2, - "using": 1, - "waiting": 1, - "want": 1, - "wanted": 1, - "what": 1, - "when": 5, - "which": 2, - "will": 3, - "wip": 1, - "with": 2, - "work": 2, - "works": 1, - "you": 6, - "your": 1 - } - }, - "/contributing/prs/": { - "headings": [ - "pull requests", - "overview", - "intended audience", - "see also", - "create a pull request", - "format a pull request", - "title", - "description", - "comments", - "lifecycle", - "drafting and testing", - "reviewing and merging" - ], - "words": { - "45": 1, - "60": 1, - "a": 9, - "add": 1, - "added": 1, - "addresses": 2, - "affect": 1, - "all": 2, - "also": 2, - "an": 2, - "and": 9, - "any": 1, - "approach": 1, - "approved": 2, - "audience": 1, - "automatically": 2, - "be": 4, - "below": 1, - "branch": 3, - "branches": 1, - "by": 2, - "can": 2, - "challenges": 1, - "changelog": 1, - "changes": 1, - "checks": 1, - "ci": 1, - "click": 1, - "closes": 4, - "code": 2, - "comments": 2, - "conduct": 1, - "context": 1, - "continuous": 2, - "contributions": 1, - "create": 3, - "creating": 1, - "cursor": 2, - "default": 1, - "describing": 1, - "description": 6, - "detail": 1, - "developers": 1, - "documentation": 1, - "draft": 3, - "drafting": 1, - "each": 1, - "especially": 1, - "example": 2, - "feature": 2, - "feedback": 1, - "fix": 1, - "follow": 3, - "for": 8, - "fork": 2, - "forks": 1, - "format": 2, - "found": 1, - "get": 1, - "guidelines": 1, - "here": 1, - "how": 1, - "if": 2, - "imperative": 1, - "implementations": 1, - "in": 2, - "integration": 2, - "intended": 1, - "is": 3, - "issue": 5, - "issues": 3, - "liberally": 1, - "lifecycle": 1, - "list": 1, - "managing": 1, - "may": 1, - "merged": 1, - "merging": 1, - "mood": 1, - "move": 1, - "moves": 1, - "multiple": 1, - "must": 3, - "name": 1, - "next": 1, - "not": 3, - "number": 2, - "of": 3, - "on": 2, - "once": 3, - "open": 1, - "opened": 1, - "opening": 1, - "or": 1, - "overview": 2, - "pass": 1, - "planned": 1, - "pr": 3, - "present": 1, - "progress": 1, - "project": 1, - "provide": 1, - "prs": 1, - "pull": 15, - "rapids": 2, - "ready": 3, - "reference": 1, - "related": 2, - "release": 1, - "repeat": 1, - "repository": 2, - "request": 11, - "requested": 1, - "requesting": 1, - "requests": 4, - "review": 2, - "reviewer": 1, - "reviewers": 2, - "reviewing": 1, - "reviews": 1, - "run": 1, - "see": 1, - "should": 4, - "so": 1, - "solutions": 1, - "start": 1, - "state": 1, - "status": 1, - "steps": 1, - "succinct": 1, - "target": 3, - "tense": 1, - "testing": 1, - "the": 25, - "them": 1, - "this": 2, - "title": 2, - "titles": 1, - "to": 4, - "understand": 1, - "unordered": 1, - "upstream": 1, - "use": 4, - "verify": 1, - "when": 1, - "while": 1, - "will": 2, - "with": 2, - "without": 1, - "work": 2, - "your": 1 - } - }, - "/install/": { - "headings": [ - "rapids installation guide", - "install rapids", - "installation troubleshooting", - "conda issues", - "docker issues", - "pip issues", - "wsl2 issues", - "system requirements", - "os / gpu driver / cuda versions", - "cuda support notes", - "pip", - "system recommendations", - "cloud instance gpus", - "environment setup", - "conda", - "docker", - "jupyterlab.", - "pip", - "sdk manager (ubuntu only)", - "windows wsl2", - "wsl2 additional prerequisites", - "limitations", - "troubleshooting", - "wsl2 sdk manager install", - "wsl2 conda install", - "wsl2 docker desktop install", - "wsl2 pip install", - "build from source", - "next steps" - ], - "words": { - "0": 11, - "000": 1, - "02": 3, - "04": 4, - "06": 2, - "08": 2, - "1": 8, - "10": 2, - "11": 5, - "12": 8, - "13": 2, - "16gb": 1, - "1g": 1, - "2": 9, - "20": 2, - "2018": 2, - "22": 1, - "23": 2, - "24": 3, - "25": 1, - "26": 1, - "28": 1, - "29": 1, - "3": 5, - "4": 2, - "5": 1, - "525": 1, - "580": 1, - "60": 1, - "64": 1, - "65": 1, - "67108864": 1, - "7": 3, - "8": 3, - "8888": 1, - "a": 22, - "about": 1, - "above": 1, - "accelerate": 1, - "accelerated": 1, - "access": 1, - "accessing": 1, - "add": 1, - "additional": 4, - "after": 2, - "ai": 1, - "all": 6, - "alma": 1, - "also": 4, - "always": 1, - "amazon": 1, - "amd64": 2, - "an": 7, - "anaconda": 1, - "and": 34, - "any": 4, - "appropriately": 1, - "approximately": 1, - "apt": 1, - "arch": 1, - "are": 15, - "arguments": 1, - "arm": 1, - "as": 2, - "aside": 1, - "asked": 1, - "assumed": 1, - "at": 1, - "attempts": 1, - "august": 1, - "automates": 1, - "automatically": 1, - "available": 2, - "aws": 1, - "azure": 1, - "base": 2, - "based": 2, - "bash": 3, - "be": 7, - "been": 1, - "before": 1, - "being": 1, - "below": 7, - "benchmark": 1, - "best": 3, - "bin": 1, - "blog": 2, - "boot": 1, - "brought": 1, - "build": 5, - "building": 1, - "built": 1, - "but": 2, - "by": 5, - "c": 1, - "can": 5, - "cannot": 1, - "capability": 3, - "capable": 1, - "certain": 1, - "change": 1, - "changes": 4, - "channel": 11, - "channels": 1, - "check": 7, - "cloud": 5, - "code": 3, - "colab": 1, - "com": 2, - "combinations": 1, - "command": 10, - "commands": 4, - "community": 2, - "compare": 1, - "compatibility": 3, - "compatible": 2, - "complexity": 1, - "compute": 3, - "conda": 34, - "condarc": 1, - "config": 2, - "configuration": 2, - "conflict": 1, - "conflicting": 1, - "connection": 1, - "considerations": 1, - "constraint": 2, - "container": 6, - "containers": 3, - "contributing": 1, - "copy": 3, - "could": 1, - "create": 3, - "csp": 1, - "cu12": 5, - "cuda": 32, - "cudf": 9, - "curl": 2, - "current": 2, - "currently": 2, - "customize": 1, - "d": 1, - "dask": 1, - "data": 2, - "deal": 1, - "deb": 3, - "debian": 1, - "defaults": 7, - "dependencies": 1, - "depending": 1, - "deploy": 1, - "deployment": 1, - "designed": 1, - "desired": 1, - "desktop": 2, - "details": 2, - "dev": 2, - "devel": 1, - "developer": 4, - "development": 2, - "dimmed": 1, - "direct": 1, - "directly": 2, - "directory": 1, - "distribution": 6, - "distributions": 2, - "do": 3, - "docker": 25, - "docs": 2, - "does": 2, - "doing": 1, - "download": 8, - "downloads": 1, - "drive": 1, - "driver": 7, - "drivers": 5, - "dual": 1, - "e": 2, - "either": 1, - "enabled": 1, - "enables": 1, - "enabling": 1, - "encountered": 1, - "end": 1, - "engine": 2, - "ensure": 2, - "ensures": 1, - "env": 1, - "environment": 16, - "environments": 1, - "error": 9, - "especially": 1, - "even": 1, - "example": 3, - "examples": 1, - "fatal": 1, - "feature": 2, - "fedora": 1, - "file": 5, - "find": 3, - "finish": 1, - "fix": 1, - "flavor": 1, - "flavors": 1, - "flexible": 2, - "folder": 2, - "follow": 6, - "following": 4, - "for": 33, - "forge": 4, - "found": 1, - "free": 1, - "from": 13, - "full": 2, - "function": 1, - "functionality": 1, - "g": 2, - "gcp": 1, - "general": 1, - "generate": 1, - "get": 2, - "github": 3, - "gives": 2, - "glibc": 1, - "goai": 1, - "google": 1, - "gpu": 15, - "gpus": 6, - "graphical": 2, - "great": 1, - "gui": 2, - "guidance": 1, - "guide": 6, - "hardware": 1, - "has": 4, - "have": 5, - "help": 1, - "helpful": 1, - "here": 2, - "hffde075": 1, - "higher": 2, - "historical": 1, - "home": 2, - "host": 4, - "how": 1, - "http": 1, - "https": 2, - "ibm": 1, - "ideal": 1, - "identified": 1, - "if": 14, - "image": 6, - "images": 7, - "import": 3, - "in": 20, - "include": 3, - "included": 2, - "incompatible": 1, - "incorrectly": 1, - "index": 1, - "indicates": 1, - "infiniband": 1, - "information": 2, - "init": 1, - "initialized": 1, - "inside": 2, - "inspecting": 1, - "install": 37, - "installation": 16, - "installations": 4, - "installed": 10, - "installing": 5, - "instance": 10, - "instead": 1, - "instructions": 7, - "interface": 2, - "into": 2, - "io": 1, - "ipython": 3, - "is": 22, - "issue": 3, - "issues": 5, - "it": 5, - "jitify": 1, - "jupyterlab": 2, - "k8s": 1, - "key": 1, - "l": 1, - "lab": 1, - "label": 1, - "later": 2, - "latest": 8, - "learn": 2, - "libcuda": 1, - "libmamba": 2, - "libmambaunsatisfiableerror": 1, - "libraries": 2, - "library": 1, - "like": 1, - "limitations": 1, - "limited": 1, - "line": 1, - "linux": 16, - "list": 3, - "local": 1, - "location": 1, - "log": 3, - "login": 2, - "longer": 1, - "m": 2, - "machine": 3, - "machines": 1, - "major": 1, - "make": 1, - "making": 1, - "mamba": 3, - "manager": 11, - "match": 1, - "matching": 4, - "may": 3, - "md": 2, - "means": 2, - "memlock": 1, - "memory": 2, - "message": 1, - "method": 2, - "methods": 1, - "microsoft": 3, - "miniconda": 1, - "miniforge": 4, - "miniforge3": 2, - "minimum": 6, - "mint": 1, - "mixing": 1, - "mnmg": 3, - "modify": 2, - "more": 4, - "most": 1, - "move": 1, - "multi": 2, - "multiarch": 1, - "must": 1, - "native": 1, - "nbody": 2, - "nccl": 1, - "need": 2, - "needed": 1, - "new": 4, - "newer": 2, - "next": 2, - "ngc": 1, - "no": 2, - "node": 1, - "nodefaults": 1, - "nonfunctional": 1, - "not": 15, - "note": 3, - "notebooks": 1, - "notes": 2, - "now": 3, - "numba": 1, - "nvcr": 1, - "nvidia": 18, - "nvlink": 1, - "nvme": 1, - "nvrtc": 1, - "o": 1, - "object": 1, - "occurs": 4, - "of": 13, - "offer": 1, - "older": 1, - "on": 23, - "one": 2, - "only": 2, - "open": 2, - "option": 2, - "or": 17, - "os": 4, - "other": 2, - "our": 8, - "out": 1, - "output": 1, - "override": 2, - "package": 3, - "packages": 15, - "page": 3, - "paperspace": 1, - "pascaltm": 1, - "performance": 1, - "pip": 15, - "place": 1, - "platform": 1, - "please": 8, - "port": 1, - "possible": 2, - "preferred": 3, - "prefix": 1, - "prerequisites": 2, - "print": 3, - "priority": 3, - "problem": 1, - "problems": 1, - "process": 1, - "properly": 1, - "provide": 1, - "provided": 1, - "providers": 1, - "provides": 1, - "provisioned": 1, - "published": 2, - "pwd": 1, - "python": 5, - "ram": 1, - "rapids": 47, - "rapidsai": 1, - "ratio": 1, - "re": 1, - "reach": 1, - "readme": 2, - "recommend": 1, - "recommendation": 1, - "recommendations": 2, - "recommended": 1, - "recreating": 1, - "release": 6, - "released": 1, - "releases": 1, - "removed": 1, - "removing": 1, - "reported": 1, - "repository": 1, - "require": 6, - "required": 2, - "requirement": 1, - "requirements": 5, - "requires": 3, - "resolutions": 1, - "resolve": 2, - "resources": 1, - "restart": 1, - "review": 1, - "rhel": 1, - "rocky": 2, - "run": 18, - "running": 2, - "runtime": 1, - "s": 14, - "sagemaker": 1, - "sample": 1, - "satisfies": 1, - "saving": 1, - "science": 1, - "scratch": 1, - "script": 2, - "sdk": 12, - "sdkmanager": 3, - "section": 1, - "see": 9, - "select": 1, - "selector": 7, - "separate": 1, - "series": 3, - "service": 3, - "services": 1, - "set": 1, - "setting": 1, - "setup": 4, - "several": 3, - "sh": 3, - "shared": 1, - "shell": 3, - "shm": 1, - "should": 2, - "show": 2, - "shutdown": 1, - "sign": 3, - "significant": 1, - "significantly": 1, - "simplifying": 1, - "single": 1, - "size": 1, - "slack": 2, - "so": 1, - "solves": 1, - "solving": 2, - "some": 2, - "something": 1, - "source": 4, - "specific": 3, - "specify": 1, - "ssd": 1, - "stability": 1, - "stack": 1, - "standard": 1, - "start": 4, - "started": 1, - "starts": 1, - "steps": 3, - "still": 1, - "stop": 1, - "storage": 1, - "stored": 1, - "strict": 1, - "structured": 1, - "studio": 1, - "subsystem": 2, - "sudo": 3, - "sufficient": 2, - "suffix": 1, - "suggestions": 3, - "support": 4, - "supported": 7, - "supports": 3, - "system": 11, - "systems": 1, - "t": 1, - "tap": 1, - "tensorflow": 1, - "terminal": 4, - "test": 1, - "than": 1, - "that": 12, - "the": 104, - "their": 3, - "then": 3, - "there": 1, - "these": 4, - "this": 12, - "those": 1, - "time": 1, - "to": 42, - "tool": 1, - "toolkit": 10, - "tools": 1, - "total": 1, - "trials": 1, - "troubleshooting": 4, - "try": 1, - "trying": 2, - "type": 1, - "ubuntu": 12, - "ucx": 1, - "ulimit": 2, - "uname": 4, - "unless": 1, - "up": 2, - "update": 1, - "updating": 2, - "usage": 2, - "use": 7, - "used": 1, - "useful": 1, - "user": 3, - "users": 7, - "uses": 1, - "using": 17, - "v": 1, - "values": 1, - "variable": 1, - "version": 21, - "versions": 5, - "via": 1, - "voltatm": 1, - "w": 1, - "was": 1, - "way": 1, - "we": 2, - "website": 2, - "wheel": 3, - "wheels": 3, - "when": 4, - "where": 1, - "which": 3, - "while": 1, - "will": 6, - "window": 4, - "windows": 16, - "with": 23, - "without": 2, - "working": 3, - "ws": 1, - "wsl": 6, - "wsl1": 1, - "wsl2": 24, - "x86": 1, - "yet": 2, - "you": 18, - "your": 14 - } - }, - "/maintainers/": { - "headings": [ - "rapids maintainers docs", - "intended audience", - "release v26.08 schedule", - "proposed release v26.10 schedule" - ], - "words": { - "08": 1, - "1": 1, - "10": 4, - "12": 1, - "14": 1, - "15": 2, - "16": 4, - "17": 1, - "2": 2, - "2026": 24, - "22": 1, - "23": 1, - "29": 1, - "30": 2, - "39": 1, - "4": 3, - "40": 1, - "5": 3, - "6": 4, - "7": 1, - "8": 1, - "9": 2, - "all": 1, - "an": 1, - "and": 2, - "anytime": 1, - "are": 3, - "at": 1, - "audience": 1, - "aug": 4, - "available": 1, - "burn": 4, - "change": 1, - "cmake": 4, - "code": 4, - "community": 1, - "completed": 1, - "cuda": 4, - "cudf": 4, - "dask": 4, - "dates": 1, - "days": 12, - "developers": 1, - "development": 2, - "docs": 1, - "down": 4, - "duration": 2, - "end": 2, - "established": 1, - "feedback": 1, - "for": 2, - "freeze": 4, - "guidelines": 1, - "here": 1, - "intended": 1, - "jul": 8, - "kvikio": 4, - "leads": 1, - "maintainers": 1, - "may": 1, - "note": 1, - "nvforest": 4, - "oct": 5, - "of": 1, - "on": 1, - "operations": 1, - "others": 4, - "phase": 2, - "posted": 1, - "procedures": 1, - "project": 1, - "projects": 2, - "proposed": 1, - "provide": 1, - "raft": 4, - "rapids": 6, - "rapidsmpf": 4, - "release": 5, - "review": 1, - "rmm": 4, - "schedule": 2, - "schedules": 1, - "sep": 6, - "set": 1, - "start": 2, - "subject": 1, - "testing": 4, - "the": 1, - "these": 1, - "thu": 12, - "to": 2, - "tue": 4, - "ucxx": 4, - "use": 1, - "v26": 2, - "wed": 8 - } - }, - "/maintainers/datasets/": { - "headings": [ - "datasets", - "overview", - "intended audience", - "running tests that use datasets", - "the rapids_dataset_root_dir option to cmake", - "the rapids_dataset_root_dir environment variable", - "the built-in /datasets default", - "writing tests that use datasets", - "example api usage", - "best practices", - "datasets for benchmarks" - ], - "words": { - "0": 1, - "2mb": 1, - "85": 1, - "a": 20, - "above": 2, - "absolute": 2, - "acceptable": 1, - "accessed": 1, - "accessible": 1, - "accessing": 1, - "adopted": 1, - "alike": 1, - "allow": 2, - "allows": 2, - "also": 1, - "alternate": 1, - "an": 3, - "and": 9, - "api": 1, - "apis": 1, - "approximately": 1, - "are": 7, - "as": 6, - "assume": 1, - "at": 2, - "audience": 1, - "author": 1, - "authors": 2, - "available": 2, - "bash": 1, - "be": 15, - "below": 5, - "benchmark": 4, - "benchmarks": 5, - "berkstan": 1, - "best": 1, - "bin": 1, - "binaries": 1, - "both": 3, - "build": 4, - "building": 2, - "built": 1, - "but": 2, - "by": 3, - "calling": 1, - "can": 8, - "cannot": 1, - "cases": 3, - "cd": 1, - "certain": 1, - "check": 1, - "cmake": 3, - "code": 3, - "coexist": 1, - "command": 1, - "committed": 1, - "consider": 1, - "const": 2, - "containing": 1, - "convenient": 1, - "convention": 1, - "correctness": 1, - "could": 1, - "create": 1, - "cugraph": 3, - "currently": 1, - "data": 2, - "dataset": 20, - "datasets": 33, - "default": 3, - "depend": 1, - "describe": 1, - "described": 4, - "description": 1, - "determined": 1, - "developers": 4, - "did": 1, - "different": 6, - "dir": 14, - "directory": 2, - "document": 3, - "download": 1, - "downloading": 1, - "drapids": 1, - "due": 1, - "each": 1, - "either": 1, - "end": 1, - "enough": 2, - "ensures": 1, - "environment": 5, - "etc": 1, - "evaluate": 1, - "example": 1, - "exception": 1, - "executable": 1, - "executables": 2, - "exist": 1, - "experimenting": 1, - "export": 1, - "finally": 1, - "find": 1, - "fixtures": 1, - "following": 2, - "for": 12, - "from": 3, - "function": 1, - "functionality": 1, - "get": 6, - "golden": 1, - "h": 1, - "has": 3, - "have": 1, - "hosted": 1, - "how": 4, - "if": 8, - "in": 10, - "included": 5, - "install": 1, - "installed": 1, - "installing": 1, - "instead": 2, - "instructions": 1, - "intended": 1, - "is": 4, - "it": 1, - "know": 1, - "large": 1, - "larger": 3, - "leads": 1, - "libraries": 1, - "library": 2, - "likely": 1, - "limitations": 1, - "located": 2, - "locating": 4, - "location": 8, - "machines": 1, - "made": 1, - "many": 1, - "may": 1, - "meaning": 1, - "mechanism": 1, - "mechanisms": 2, - "method": 2, - "moment": 2, - "moved": 1, - "must": 1, - "necessary": 1, - "need": 2, - "needs": 1, - "neither": 1, - "nor": 1, - "not": 5, - "note": 1, - "obtain": 1, - "of": 10, - "on": 5, - "one": 2, - "only": 2, - "operations": 1, - "option": 8, - "optionally": 1, - "options": 4, - "or": 8, - "order": 1, - "others": 1, - "over": 1, - "override": 2, - "overview": 1, - "pagerank": 1, - "particular": 1, - "path": 3, - "paths": 2, - "performance": 1, - "place": 1, - "practically": 1, - "practices": 1, - "precedence": 1, - "presence": 1, - "prior": 2, - "project": 1, - "properly": 1, - "provided": 2, - "rapids": 16, - "rapidsdatasetrootdir": 2, - "re": 1, - "readdataset": 1, - "readme": 2, - "rebuild": 1, - "reference": 1, - "relative": 2, - "relatively": 1, - "repo": 4, - "repository": 2, - "require": 1, - "requiring": 1, - "responsible": 1, - "return": 1, - "root": 16, - "run": 3, - "running": 4, - "s": 1, - "same": 2, - "script": 4, - "see": 1, - "separately": 1, - "set": 4, - "settings": 1, - "setup": 2, - "sh": 1, - "shell": 1, - "should": 8, - "showing": 1, - "shown": 2, - "similar": 2, - "since": 2, - "small": 3, - "so": 1, - "some": 2, - "source": 6, - "specific": 1, - "specified": 1, - "specify": 1, - "standardized": 1, - "std": 3, - "string": 3, - "supports": 1, - "system": 1, - "takes": 1, - "test": 11, - "tests": 10, - "that": 9, - "the": 65, - "their": 1, - "them": 1, - "they": 6, - "this": 5, - "throw": 1, - "to": 26, - "under": 1, - "usage": 1, - "use": 8, - "used": 3, - "useful": 2, - "user": 6, - "users": 2, - "using": 5, - "utilities": 3, - "val": 1, - "value": 1, - "variable": 5, - "vary": 1, - "verify": 1, - "very": 1, - "via": 1, - "was": 1, - "web": 1, - "well": 1, - "where": 2, - "which": 1, - "will": 6, - "with": 8, - "without": 1, - "write": 1, - "writing": 1, - "written": 1 - } - }, - "/maintainers/forward-merger/": { - "headings": [ - "forward mergers", - "overview", - "intended audience", - "forward mergers" - ], - "words": { - "06": 6, - "12": 1, - "25": 1, - "26": 6, - "a": 4, - "activated": 1, - "adding": 1, - "admin": 1, - "all": 1, - "am": 1, - "and": 5, - "any": 4, - "are": 3, - "as": 3, - "audience": 1, - "auto": 2, - "automated": 1, - "automatically": 2, - "b": 1, - "be": 5, - "bot": 3, - "branch": 11, - "branches": 1, - "burn": 1, - "burndown": 2, - "by": 3, - "cannot": 1, - "cause": 1, - "caused": 1, - "changes": 3, - "checkout": 3, - "close": 1, - "comment": 2, - "commit": 2, - "commits": 1, - "compatible": 1, - "conflicts": 4, - "contain": 1, - "created": 1, - "current": 1, - "default": 5, - "developers": 1, - "development": 4, - "do": 2, - "done": 2, - "down": 1, - "due": 1, - "during": 3, - "e": 1, - "enabled": 1, - "ensures": 2, - "example": 2, - "fail": 1, - "fails": 1, - "fix": 3, - "following": 1, - "for": 3, - "fork": 1, - "forward": 12, - "git": 8, - "github": 2, - "hashes": 1, - "history": 1, - "i": 1, - "implemented": 1, - "important": 2, - "in": 5, - "instead": 2, - "intended": 1, - "into": 4, - "is": 8, - "it": 4, - "jobs": 1, - "leads": 1, - "made": 1, - "main": 8, - "manual": 2, - "manually": 1, - "merge": 17, - "merged": 5, - "merger": 5, - "mergers": 4, - "merging": 4, - "must": 1, - "never": 1, - "next": 2, - "no": 1, - "nosquash": 2, - "not": 2, - "note": 1, - "of": 3, - "once": 2, - "open": 1, - "opened": 1, - "operations": 1, - "ops": 3, - "original": 1, - "otherwise": 1, - "overview": 1, - "part": 1, - "pending": 1, - "personal": 1, - "please": 1, - "plugin": 3, - "pr": 5, - "preserved": 1, - "process": 1, - "project": 1, - "prs": 1, - "pull": 3, - "push": 1, - "rapidsai": 2, - "re": 1, - "reflected": 1, - "release": 14, - "remain": 1, - "remote": 2, - "repository": 2, - "request": 1, - "requests": 1, - "same": 1, - "should": 1, - "since": 1, - "sometimes": 1, - "squash": 1, - "steps": 1, - "such": 1, - "targeted": 1, - "targets": 1, - "that": 4, - "the": 30, - "this": 7, - "to": 12, - "true": 1, - "typically": 1, - "ui": 1, - "use": 4, - "using": 1, - "version": 1, - "was": 1, - "web": 1, - "when": 2, - "which": 1, - "will": 4, - "with": 3, - "yaml": 1, - "your": 1 - } - }, - "/notices/": { - "headings": [ - "rapids notices", - "notice types", - "recent and important notices" - ], - "words": { - "0": 2, - "01": 2, - "02": 9, - "03": 1, - "04": 7, - "05": 1, - "06": 5, - "08": 12, - "10": 10, - "11": 1, - "12": 18, - "14": 2, - "17": 7, - "18": 2, - "19": 1, - "2": 4, - "20": 1, - "2024": 5, - "2025": 15, - "2026": 6, - "22": 1, - "25": 5, - "26": 2, - "3": 2, - "30": 1, - "31": 1, - "36": 1, - "37": 1, - "38": 1, - "39": 1, - "40": 1, - "41": 1, - "42": 1, - "43": 1, - "44": 1, - "45": 1, - "46": 1, - "47": 1, - "48": 1, - "49": 1, - "5": 1, - "50": 1, - "51": 1, - "52": 1, - "53": 1, - "54": 1, - "55": 1, - "56": 1, - "57": 1, - "58": 1, - "59": 1, - "60": 1, - "61": 1, - "7": 1, - "8": 2, - "9": 2, - "a": 1, - "accel": 1, - "adding": 2, - "after": 1, - "all": 1, - "and": 8, - "announcement": 2, - "announcements": 1, - "april": 1, - "are": 2, - "audience": 1, - "august": 2, - "branching": 1, - "breaking": 1, - "centos": 1, - "change": 22, - "changes": 3, - "channel": 1, - "code": 1, - "com": 1, - "communicate": 2, - "community": 1, - "compilers": 1, - "completed": 23, - "conda": 1, - "consolidates": 1, - "contributors": 2, - "core": 2, - "cpu": 1, - "cuda": 10, - "cudf": 1, - "cugraph": 3, - "cuml": 3, - "cumlprims": 1, - "cupy": 1, - "cuspatial": 1, - "cuxfilter": 1, - "december": 3, - "deprecation": 9, - "developer": 1, - "developers": 2, - "development": 2, - "dgl": 1, - "docker": 5, - "document": 1, - "dropping": 8, - "everyone": 2, - "favor": 1, - "february": 1, - "for": 6, - "from": 3, - "general": 1, - "image": 1, - "images": 4, - "important": 2, - "in": 22, - "including": 1, - "increasing": 1, - "installation": 1, - "intended": 1, - "into": 1, - "january": 3, - "july": 4, - "june": 2, - "label": 1, - "legacy": 1, - "libcugraphops": 1, - "libcumlprims": 1, - "library": 4, - "major": 1, - "march": 1, - "may": 2, - "means": 1, - "mg": 1, - "miniforge": 1, - "minimum": 1, - "missing": 1, - "moving": 3, - "notice": 6, - "notices": 3, - "november": 1, - "numpy": 1, - "nvidia": 1, - "october": 5, - "of": 9, - "older": 1, - "on": 1, - "ops": 1, - "os": 1, - "our": 4, - "packages": 4, - "pandas": 2, - "per": 1, - "platform": 21, - "platforms": 1, - "process": 1, - "processes": 1, - "progress": 3, - "project": 3, - "publishing": 3, - "purpose": 1, - "py": 1, - "pylibcugraphops": 1, - "pynvjitlink": 1, - "pypi": 1, - "python": 5, - "rapids": 23, - "rapidsai": 2, - "rdn": 1, - "recent": 1, - "release": 10, - "removing": 1, - "replaces": 2, - "require": 1, - "requirement": 1, - "rgn": 1, - "rsn": 27, - "september": 1, - "service": 1, - "single": 1, - "specific": 1, - "strategy": 1, - "sunsetting": 1, - "support": 29, - "tag": 1, - "the": 3, - "title": 1, - "to": 9, - "topic": 1, - "transition": 1, - "type": 1, - "types": 1, - "ucx": 1, - "updated": 1, - "updates": 3, - "users": 1, - "v23": 1, - "v24": 9, - "v25": 20, - "v26": 9, - "v3": 3, - "version": 2, - "versions": 2, - "wheels": 1, - "wide": 1, - "will": 2, - "with": 2 - } - }, - "/notices/rdn/": { - "headings": [ - "rapids developer notices" - ], - "words": { - "0": 1, - "05": 1, - "1": 1, - "11": 1, - "12": 1, - "15": 2, - "16": 1, - "18": 1, - "2": 1, - "2020": 1, - "2021": 1, - "2023": 1, - "26": 1, - "3": 1, - "5": 1, - "7": 1, - "about": 1, - "and": 1, - "august": 1, - "build": 1, - "builds": 1, - "change": 3, - "completed": 3, - "conda": 1, - "container": 1, - "contributors": 1, - "dask": 1, - "deprecated": 1, - "deprecation": 1, - "devel": 1, - "developer": 1, - "developers": 1, - "development": 1, - "february": 1, - "for": 1, - "from": 1, - "gcc": 1, - "in": 1, - "index": 1, - "is": 1, - "library": 1, - "notice": 1, - "notices": 2, - "of": 1, - "practices": 1, - "rapids": 3, - "rdn": 4, - "release": 2, - "removed": 1, - "september": 1, - "source": 1, - "targeting": 1, - "title": 1, - "to": 2, - "topic": 1, - "updated": 1, - "updates": 2, - "v0": 4, - "v21": 1, - "version": 1, - "with": 1, - "xgboost": 1 - } - }, - "/notices/rdn0001/": { - "headings": [ - "rdn 1 - 'dask-xgboost' is deprecated in v0.15 & removed v0.16", - "overview", - "status", - "impact" - ], - "words": { - "0": 1, - "1": 2, - "15": 3, - "16": 2, - "2020": 1, - "26": 1, - "a": 3, - "added": 1, - "all": 2, - "also": 1, - "an": 2, - "and": 2, - "any": 1, - "api": 4, - "are": 1, - "as": 1, - "august": 1, - "author": 1, - "be": 1, - "blog": 1, - "clean": 1, - "combined": 1, - "completed": 1, - "created": 1, - "dask": 8, - "deprecated": 2, - "deprecation": 2, - "developers": 1, - "encouraged": 1, - "extensive": 1, - "for": 1, - "functionality": 1, - "has": 1, - "impact": 1, - "in": 3, - "is": 2, - "library": 1, - "more": 1, - "much": 1, - "n": 1, - "native": 3, - "of": 4, - "ops": 1, - "or": 1, - "other": 1, - "our": 1, - "overview": 2, - "post": 1, - "projects": 1, - "provides": 1, - "rapids": 3, - "rapidsai": 3, - "rdn": 1, - "release": 1, - "removed": 2, - "repo": 2, - "see": 1, - "should": 1, - "status": 2, - "switch": 2, - "testing": 1, - "the": 5, - "this": 1, - "to": 4, - "topic": 1, - "updated": 2, - "upstream": 1, - "users": 1, - "using": 1, - "v0": 5, - "version": 2, - "warning": 1, - "will": 1, - "with": 1, - "xgboost": 8 - } - }, - "/notices/rdn0002/": { - "headings": [ - "rdn 2 - updates to from-source builds with conda for gcc '7.5.0'", - "overview", - "impact", - "ubuntu 16.04/18.04/20.04", - "centos 7/8 or rhel 7/8" - ], - "words": { - "0": 15, - "04": 3, - "1": 2, - "10": 4, - "11": 3, - "16": 1, - "18": 4, - "2": 4, - "20": 1, - "2021": 1, - "3": 6, - "5": 7, - "6": 7, - "7": 17, - "8": 2, - "9": 6, - "a": 4, - "able": 1, - "add": 1, - "affected": 1, - "again": 1, - "all": 3, - "allows": 1, - "also": 1, - "alternatives": 5, - "amazonaws": 1, - "an": 1, - "and": 8, - "any": 1, - "apt": 8, - "are": 2, - "as": 2, - "author": 1, - "available": 2, - "be": 7, - "below": 1, - "bin": 10, - "build": 11, - "builds": 6, - "cache": 1, - "can": 4, - "cc": 1, - "centos": 2, - "change": 1, - "changes": 2, - "check": 2, - "code": 3, - "com": 1, - "commands": 1, - "common": 1, - "compiler": 1, - "completed": 1, - "conda": 10, - "created": 1, - "cuda": 6, - "cudahostcxx": 1, - "current": 1, - "cxx": 1, - "default": 1, - "dependencies": 6, - "developers": 1, - "dir": 6, - "do": 1, - "docker": 5, - "download": 1, - "during": 1, - "east": 1, - "enable": 1, - "encounter": 1, - "environment": 1, - "equivalent": 3, - "error": 1, - "errors": 1, - "export": 7, - "extract": 1, - "extracted": 2, - "extracts": 1, - "f": 1, - "february": 1, - "following": 3, - "for": 11, - "forge": 2, - "found": 3, - "from": 10, - "g": 9, - "gcc": 18, - "gcc7": 12, - "get": 6, - "glibc": 1, - "gpuci": 1, - "has": 2, - "here": 4, - "home": 1, - "https": 1, - "if": 2, - "image": 1, - "images": 1, - "impact": 1, - "impacted": 1, - "in": 3, - "include": 1, - "install": 8, - "installed": 3, - "installing": 1, - "into": 1, - "is": 3, - "it": 3, - "ld": 2, - "lib": 1, - "lib64": 2, - "library": 2, - "libstdc": 8, - "local": 5, - "machine": 1, - "make": 1, - "meant": 1, - "must": 1, - "n": 1, - "need": 1, - "not": 3, - "note": 4, - "now": 1, - "o": 1, - "of": 5, - "once": 1, - "ops": 1, - "or": 2, - "order": 1, - "our": 4, - "outlined": 1, - "overview": 1, - "package": 4, - "packages": 1, - "patched": 2, - "path": 5, - "pkg": 1, - "policy": 1, - "ppa": 2, - "process": 1, - "properties": 1, - "public": 1, - "publish": 1, - "quiet": 1, - "r": 1, - "rapids": 8, - "rdn": 1, - "recently": 1, - "repos": 1, - "repository": 1, - "resulting": 1, - "rhel": 2, - "rm": 1, - "root": 1, - "s3": 1, - "scripts": 1, - "set": 3, - "setup": 1, - "sh": 1, - "should": 2, - "software": 1, - "source": 6, - "stack": 2, - "status": 1, - "successfully": 1, - "sudo": 15, - "support": 1, - "sure": 1, - "switched": 2, - "tar": 1, - "tarball": 4, - "target": 1, - "test": 1, - "tgz": 4, - "that": 1, - "the": 25, - "this": 5, - "through": 1, - "to": 14, - "toolchain": 1, - "topic": 1, - "ubuntu": 3, - "update": 9, - "updated": 2, - "updates": 1, - "us": 1, - "use": 2, - "using": 3, - "usr": 11, - "v0": 3, - "variables": 1, - "verify": 1, - "version": 7, - "versions": 1, - "we": 2, - "wget": 1, - "with": 7, - "without": 1, - "work": 1, - "xzf": 1, - "y": 3, - "you": 3 - } - }, - "/notices/rdn0003/": { - "headings": [ - "rdn 3 - devel container release change", - "overview" - ], - "words": { - "05": 1, - "11": 1, - "12": 2, - "18": 1, - "2021": 1, - "2023": 1, - "21": 1, - "3": 1, - "5": 1, - "author": 1, - "be": 1, - "change": 2, - "completed": 1, - "container": 1, - "created": 1, - "cuda": 1, - "devel": 2, - "distributed": 1, - "effective": 1, - "for": 1, - "november": 1, - "only": 1, - "ops": 1, - "overview": 1, - "packages": 1, - "rapids": 3, - "rdn": 1, - "release": 3, - "september": 1, - "status": 1, - "the": 1, - "topic": 1, - "updated": 1, - "v21": 1, - "version": 1, - "will": 1, - "with": 1 - } - }, - "/notices/rgn/": { - "headings": [ - "rapids general notices" - ], - "words": { - "0": 1, - "01": 7, - "02": 5, - "04": 4, - "05": 8, - "06": 10, - "07": 2, - "08": 5, - "09": 3, - "1": 2, - "10": 8, - "11": 4, - "12": 7, - "13": 1, - "14": 3, - "15": 11, - "16": 4, - "17": 5, - "18": 5, - "19": 7, - "2": 3, - "20": 4, - "2020": 7, - "2021": 13, - "2022": 2, - "2023": 8, - "21": 4, - "22": 6, - "23": 1, - "24": 1, - "25": 1, - "26": 2, - "27": 1, - "28": 3, - "29": 1, - "3": 1, - "30": 1, - "4": 1, - "5": 1, - "6": 1, - "7": 1, - "8": 1, - "9": 1, - "all": 1, - "and": 3, - "announcement": 1, - "announcements": 1, - "april": 4, - "august": 5, - "beta": 1, - "branch": 1, - "breaking": 4, - "build": 1, - "calver": 1, - "capability": 1, - "change": 29, - "changes": 3, - "clx": 1, - "colab": 2, - "command": 2, - "compatibility": 1, - "completed": 30, - "cucim": 1, - "cuda": 3, - "cudf": 9, - "cuml": 1, - "cuxfilter": 2, - "december": 3, - "delay": 1, - "docker": 4, - "enhanced": 1, - "extension": 4, - "february": 2, - "five": 1, - "for": 7, - "general": 1, - "git": 1, - "google": 2, - "hotfix": 14, - "image": 2, - "in": 5, - "including": 1, - "index": 1, - "installation": 1, - "july": 1, - "june": 2, - "labs": 1, - "libraries": 1, - "limited": 2, - "main": 1, - "may": 1, - "method": 1, - "new": 1, - "no": 1, - "notice": 1, - "notices": 2, - "november": 1, - "now": 2, - "october": 2, - "of": 1, - "package": 1, - "project": 1, - "python": 1, - "rapids": 13, - "release": 42, - "renaming": 1, - "repo": 1, - "rgn": 31, - "rmm": 2, - "run": 2, - "sagemaker": 1, - "september": 9, - "stable": 1, - "studio": 1, - "support": 2, - "switching": 1, - "targeting": 1, - "title": 1, - "to": 4, - "topic": 1, - "try": 1, - "update": 1, - "updated": 2, - "updates": 1, - "users": 1, - "v0": 25, - "v21": 15, - "v22": 12, - "v23": 2, - "version": 2, - "via": 1, - "wide": 1, - "wsl2": 1 - } - }, - "/notices/rgn0001/": { - "headings": [ - "rgn 1 - stable/release branch renaming to 'main' in v0.15", - "overview", - "status", - "updates", - "impact" - ], - "words": { - "0": 1, - "1": 1, - "10": 1, - "13": 1, - "15": 6, - "2020": 6, - "26": 1, - "28": 2, - "added": 1, - "ai": 1, - "all": 2, - "an": 3, - "and": 6, - "any": 1, - "are": 1, - "as": 1, - "aug": 2, - "august": 1, - "author": 1, - "be": 3, - "been": 1, - "best": 1, - "branch": 14, - "branches": 3, - "but": 1, - "case": 1, - "cause": 1, - "change": 1, - "complete": 1, - "completed": 2, - "confusion": 1, - "created": 1, - "current": 1, - "decided": 1, - "default": 4, - "detailing": 1, - "developers": 1, - "development": 2, - "do": 1, - "docs": 3, - "documentation": 1, - "ensure": 1, - "existing": 2, - "file": 1, - "find": 1, - "follow": 1, - "for": 5, - "forward": 1, - "found": 1, - "from": 1, - "git": 3, - "github": 5, - "going": 1, - "has": 1, - "have": 1, - "here": 1, - "however": 2, - "impact": 1, - "in": 5, - "includes": 1, - "incorrectly": 1, - "information": 1, - "into": 2, - "is": 1, - "issue": 2, - "jul": 2, - "july": 1, - "link": 1, - "links": 4, - "longer": 1, - "main": 7, - "may": 2, - "means": 1, - "mentions": 1, - "merged": 1, - "more": 1, - "new": 1, - "no": 1, - "note": 1, - "occurred": 1, - "old": 1, - "on": 2, - "open": 2, - "ops": 1, - "or": 3, - "other": 3, - "others": 1, - "our": 6, - "outdated": 2, - "overview": 1, - "place": 1, - "plan": 1, - "projects": 3, - "prs": 2, - "rapids": 6, - "read": 1, - "redirect": 3, - "redirects": 1, - "references": 2, - "referring": 1, - "release": 8, - "removed": 2, - "renaming": 5, - "repo": 2, - "repos": 1, - "rgn": 1, - "scripts": 1, - "search": 1, - "should": 2, - "site": 1, - "some": 2, - "source": 1, - "stable": 6, - "starting": 1, - "status": 2, - "that": 2, - "the": 10, - "their": 2, - "then": 1, - "there": 1, - "they": 2, - "this": 3, - "to": 12, - "topic": 1, - "typically": 1, - "update": 1, - "updated": 3, - "updates": 2, - "use": 1, - "users": 1, - "uses": 1, - "using": 1, - "v0": 4, - "version": 1, - "we": 1, - "web": 1, - "were": 2, - "which": 1, - "will": 7, - "with": 4, - "work": 1, - "x": 1, - "y": 1 - } - }, - "/notices/rgn0002/": { - "headings": [ - "rgn 2 - v0.15 no cuda 11 release for 'clx'", - "overview", - "status", - "impact" - ], - "words": { - "0": 1, - "03": 1, - "1": 2, - "10": 4, - "11": 3, - "15": 3, - "16": 1, - "2": 3, - "2020": 3, - "26": 2, - "6": 1, - "and": 1, - "are": 1, - "aug": 1, - "august": 2, - "author": 1, - "available": 1, - "change": 1, - "clx": 4, - "completed": 1, - "conda": 1, - "created": 1, - "cuda": 7, - "currently": 1, - "depends": 1, - "does": 1, - "encouraged": 1, - "for": 2, - "have": 1, - "impact": 1, - "in": 1, - "is": 1, - "nightly": 1, - "no": 1, - "not": 1, - "of": 1, - "on": 1, - "only": 1, - "ops": 1, - "overview": 1, - "packages": 1, - "pytorch": 1, - "rapids": 2, - "release": 3, - "released": 1, - "rgn": 1, - "status": 2, - "support": 4, - "the": 1, - "to": 1, - "topic": 1, - "updated": 1, - "use": 1, - "users": 1, - "v0": 4, - "v1": 1, - "version": 1, - "when": 1, - "which": 1, - "will": 1 - } - }, - "/notices/rgn0003/": { - "headings": [ - "rgn 3 - v0.15 release extension", - "overview", - "rationale", - "impact" - ], - "words": { - "05": 1, - "1": 1, - "11": 2, - "15": 5, - "19": 1, - "2020": 3, - "26": 1, - "3": 1, - "a": 1, - "and": 1, - "are": 3, - "around": 1, - "aug": 2, - "august": 1, - "author": 1, - "been": 1, - "better": 1, - "can": 1, - "candidate": 1, - "change": 1, - "completed": 1, - "core": 1, - "created": 1, - "cuda": 2, - "cupy": 1, - "date": 2, - "dates": 1, - "dependencies": 2, - "extended": 1, - "extending": 1, - "extension": 1, - "for": 3, - "given": 1, - "has": 1, - "impact": 1, - "instead": 1, - "like": 1, - "more": 1, - "n": 1, - "numba": 1, - "on": 2, - "ops": 1, - "or": 2, - "original": 1, - "our": 1, - "overview": 1, - "planning": 1, - "rapids": 5, - "rationale": 1, - "release": 9, - "rgn": 1, - "schedule": 1, - "scheduled": 1, - "see": 1, - "ship": 1, - "so": 1, - "stable": 2, - "status": 1, - "support": 2, - "that": 1, - "the": 3, - "their": 1, - "to": 3, - "topic": 1, - "updated": 2, - "v0": 5, - "version": 1, - "versions": 1, - "we": 2, - "week": 1, - "with": 1 - } - }, - "/notices/rgn0004/": { - "headings": [ - "rgn 4 - v0.15 release delay for 'cuxfilter'", - "overview", - "status", - "impact" - ], - "words": { - "0": 1, - "08": 2, - "1": 1, - "15": 5, - "2020": 4, - "26": 2, - "4": 1, - "51": 3, - "and": 1, - "are": 2, - "aug": 1, - "august": 1, - "author": 1, - "change": 1, - "completed": 1, - "created": 1, - "currently": 1, - "cuxfilter": 6, - "delay": 1, - "depends": 1, - "encouraged": 1, - "for": 3, - "from": 1, - "impact": 1, - "is": 2, - "issues": 1, - "known": 1, - "libraries": 1, - "need": 1, - "numba": 1, - "of": 1, - "on": 1, - "only": 1, - "ops": 1, - "other": 1, - "overview": 1, - "previous": 1, - "rapids": 5, - "re": 1, - "release": 4, - "released": 2, - "resolved": 1, - "rgn": 1, - "sept": 1, - "september": 1, - "status": 2, - "the": 1, - "there": 2, - "this": 2, - "to": 3, - "topic": 1, - "until": 1, - "updated": 1, - "use": 1, - "users": 1, - "v0": 8, - "version": 2, - "wait": 1, - "we": 1, - "with": 2, - "without": 1 - } - }, - "/notices/rgn0005/": { - "headings": [ - "rgn 5 - google colab rapids support limited to rapids 0.14", - "overview", - "status", - "impact" - ], - "words": { - "0": 7, - "10": 1, - "11": 2, - "14": 3, - "15": 5, - "2": 1, - "2020": 3, - "3": 4, - "5": 1, - "6": 2, - "7": 2, - "about": 1, - "added": 2, - "app": 1, - "at": 1, - "author": 1, - "been": 2, - "blazingsql": 4, - "breaking": 1, - "can": 1, - "change": 1, - "colab": 6, - "com": 1, - "complete": 1, - "completed": 1, - "created": 1, - "cuda": 1, - "currently": 2, - "eol": 1, - "for": 5, - "google": 4, - "have": 2, - "http": 1, - "impact": 1, - "information": 1, - "is": 3, - "limited": 3, - "links": 2, - "make": 1, - "may": 1, - "more": 1, - "note": 1, - "notebooks": 3, - "of": 2, - "on": 1, - "only": 1, - "ops": 1, - "overview": 1, - "python": 4, - "rapids": 11, - "refer": 1, - "requires": 1, - "rgn": 1, - "rsn": 1, - "sep": 1, - "september": 2, - "status": 2, - "support": 6, - "to": 8, - "topic": 1, - "until": 1, - "up": 1, - "updated": 1, - "use": 2, - "users": 2, - "v0": 1, - "version": 2, - "warnings": 1, - "website": 1, - "will": 1 - } - }, - "/notices/rgn0006/": { - "headings": [ - "rgn 6 - v0.16 release extension", - "overview", - "impact" - ], - "words": { - "07": 1, - "1": 1, - "10": 1, - "16": 4, - "2020": 2, - "21": 1, - "6": 1, - "a": 1, - "author": 1, - "been": 1, - "change": 1, - "completed": 1, - "created": 1, - "date": 1, - "extended": 1, - "extension": 1, - "for": 2, - "has": 1, - "impact": 1, - "n": 1, - "october": 1, - "ops": 1, - "our": 1, - "overview": 1, - "rapids": 3, - "release": 4, - "rgn": 1, - "schedule": 1, - "see": 1, - "status": 1, - "the": 1, - "to": 1, - "topic": 1, - "updated": 2, - "v0": 4, - "version": 1, - "week": 1 - } - }, - "/notices/rgn0007/": { - "headings": [ - "rgn 7 - rapids docker image changes in v0.17", - "overview", - "status", - "impact", - "stable (release) images", - "nightly images" - ], - "words": { - "10": 2, - "16": 1, - "17": 7, - "2020": 2, - "7": 1, - "a": 2, - "and": 6, - "author": 1, - "base": 2, - "based": 2, - "been": 3, - "behavior": 5, - "below": 1, - "blazingsql": 5, - "by": 1, - "change": 1, - "changes": 2, - "comparison": 1, - "completed": 1, - "conda": 2, - "contain": 1, - "core": 5, - "created": 2, - "dec": 1, - "december": 1, - "default": 1, - "dev": 4, - "devel": 2, - "docker": 5, - "existing": 1, - "for": 5, - "from": 2, - "have": 3, - "image": 4, - "images": 13, - "impact": 1, - "in": 1, - "include": 1, - "libraries": 1, - "n": 1, - "name": 1, - "new": 1, - "nightly": 5, - "of": 2, - "only": 9, - "ops": 1, - "options": 3, - "overview": 1, - "previous": 2, - "pushed": 1, - "rapids": 17, - "rapidsai": 17, - "refer": 1, - "release": 2, - "repo": 2, - "rgn": 1, - "root": 1, - "runtime": 2, - "source": 2, - "stable": 1, - "status": 2, - "switch": 4, - "tables": 1, - "tags": 1, - "that": 1, - "the": 4, - "to": 6, - "topic": 1, - "type": 2, - "updated": 2, - "using": 1, - "v0": 8, - "version": 1, - "with": 2 - } - }, - "/notices/rgn0008/": { - "headings": [ - "rgn 8 - v0.18 release extension", - "overview", - "impact" - ], - "words": { - "0": 1, - "02": 1, - "11": 1, - "18": 5, - "2": 2, - "2021": 2, - "24": 1, - "5": 1, - "7": 1, - "8": 1, - "a": 1, - "author": 1, - "been": 1, - "build": 1, - "change": 1, - "changes": 1, - "completed": 1, - "created": 1, - "date": 1, - "details": 1, - "due": 1, - "encountered": 1, - "extended": 1, - "extension": 1, - "february": 1, - "for": 2, - "from": 1, - "gcc": 1, - "has": 1, - "impact": 1, - "in": 2, - "issues": 1, - "more": 1, - "n": 1, - "needed": 1, - "on": 1, - "ops": 1, - "our": 1, - "overview": 1, - "rapids": 3, - "rdn": 2, - "refer": 1, - "release": 4, - "rgn": 1, - "schedule": 1, - "see": 1, - "source": 1, - "status": 1, - "the": 1, - "to": 3, - "topic": 1, - "updated": 2, - "v0": 5, - "version": 1 - } - }, - "/notices/rgn0009/": { - "headings": [ - "rgn 9 - v0.19 release extension", - "overview", - "rationale", - "impact" - ], - "words": { - "1": 1, - "14": 1, - "19": 4, - "2021": 2, - "21": 1, - "9": 1, - "a": 2, - "apr": 1, - "april": 1, - "author": 1, - "been": 1, - "being": 1, - "bug": 1, - "change": 1, - "completed": 1, - "created": 1, - "date": 1, - "extended": 2, - "extension": 1, - "file": 1, - "fix": 1, - "for": 2, - "has": 1, - "impact": 1, - "in": 2, - "is": 1, - "n": 1, - "ops": 1, - "order": 1, - "our": 1, - "overview": 1, - "parquet": 1, - "rapids": 3, - "rationale": 1, - "reader": 1, - "release": 5, - "rgn": 1, - "schedule": 1, - "see": 1, - "status": 1, - "the": 3, - "to": 2, - "topic": 1, - "updated": 2, - "v0": 4, - "version": 1, - "week": 1 - } - }, - "/notices/rgn0010/": { - "headings": [ - "rgn 10 - cudf v0.18.2 hotfix release", - "overview", - "rationale", - "impact" - ], - "words": { - "0": 2, - "10": 1, - "15": 1, - "18": 5, - "2": 3, - "2021": 2, - "22": 1, - "a": 1, - "all": 1, - "april": 2, - "are": 1, - "as": 2, - "author": 1, - "bug": 1, - "change": 1, - "completed": 1, - "created": 1, - "cudf": 4, - "encouraged": 1, - "file": 1, - "for": 1, - "hotfix": 1, - "hotfixed": 2, - "impact": 1, - "in": 1, - "libraries": 1, - "ops": 1, - "overview": 1, - "parquet": 1, - "possible": 1, - "rapids": 2, - "rationale": 1, - "reader": 1, - "release": 2, - "rgn": 1, - "soon": 1, - "status": 1, - "the": 1, - "to": 3, - "topic": 1, - "update": 1, - "updated": 1, - "users": 1, - "v0": 3, - "version": 2, - "was": 2 - } - }, - "/notices/rgn0011/": { - "headings": [ - "rgn 11 - cudf & cuxfilter v0.19.1 hotfix release", - "overview", - "rationale", - "impact" - ], - "words": { - "0": 2, - "1": 3, - "11": 1, - "19": 5, - "2021": 1, - "22": 1, - "8023": 1, - "8031": 1, - "a": 2, - "all": 1, - "and": 1, - "april": 1, - "are": 1, - "as": 2, - "author": 1, - "both": 1, - "bugs": 1, - "change": 1, - "completed": 1, - "conflict": 1, - "created": 1, - "cudf": 4, - "cuxfilter": 4, - "dependency": 1, - "encouraged": 1, - "for": 1, - "hotfix": 1, - "hotfixed": 3, - "impact": 1, - "libraries": 1, - "n": 1, - "ops": 1, - "overview": 1, - "possible": 1, - "rapids": 2, - "rationale": 1, - "release": 2, - "resolve": 1, - "rgn": 1, - "soon": 1, - "status": 1, - "to": 4, - "topic": 1, - "two": 1, - "update": 1, - "updated": 1, - "users": 1, - "v0": 3, - "version": 2, - "was": 2, - "were": 1 - } - }, - "/notices/rgn0012/": { - "headings": [ - "rgn 12 - cudf v0.19.2 hotfix release", - "overview", - "rationale", - "impact" - ], - "words": { - "0": 2, - "12": 1, - "19": 5, - "2": 3, - "2021": 1, - "28": 1, - "8073": 1, - "a": 2, - "all": 1, - "april": 1, - "are": 1, - "as": 2, - "author": 1, - "change": 1, - "completed": 1, - "could": 1, - "created": 1, - "cudf": 4, - "cuio": 1, - "deadlock": 1, - "decompression": 1, - "encouraged": 1, - "fix": 1, - "hotfix": 1, - "hotfixed": 2, - "impact": 1, - "in": 2, - "libraries": 1, - "n": 1, - "occur": 1, - "ops": 1, - "overview": 1, - "possible": 1, - "rapids": 2, - "rationale": 1, - "release": 2, - "rgn": 1, - "soon": 1, - "status": 1, - "that": 1, - "to": 4, - "topic": 1, - "update": 1, - "updated": 1, - "users": 1, - "v0": 3, - "version": 2, - "was": 2 - } - }, - "/notices/rgn0013/": { - "headings": [ - "rgn 13 - rapids switching to calver in v0.20 (now v21.06)", - "overview", - "impact" - ], - "words": { - "0": 2, - "00": 5, - "00a210505": 1, - "05": 1, - "06": 8, - "13": 1, - "17": 1, - "20": 3, - "2021": 3, - "21": 6, - "a": 1, - "abi": 1, - "all": 1, - "and": 1, - "api": 1, - "apply": 1, - "are": 1, - "as": 1, - "author": 1, - "be": 1, - "both": 1, - "calendar": 1, - "calver": 1, - "change": 1, - "compatibility": 1, - "completed": 1, - "core": 1, - "created": 1, - "cudf": 1, - "cuml": 1, - "day": 1, - "digit": 1, - "each": 2, - "etc": 1, - "example": 2, - "for": 4, - "format": 2, - "impact": 1, - "in": 2, - "instead": 1, - "is": 1, - "june": 1, - "library": 1, - "maintained": 1, - "may": 2, - "mm": 3, - "new": 2, - "nightlies": 1, - "not": 1, - "now": 1, - "number": 1, - "of": 2, - "ops": 1, - "overall": 2, - "overview": 1, - "part": 1, - "patch": 1, - "pp": 2, - "ppayymmdd": 1, - "projects": 1, - "rapids": 6, - "release": 8, - "rgn": 1, - "scheme": 1, - "so": 1, - "status": 1, - "switching": 2, - "the": 3, - "their": 1, - "this": 1, - "to": 3, - "topic": 1, - "two": 1, - "updated": 1, - "v0": 2, - "v21": 2, - "version": 4, - "versioning": 3, - "we": 2, - "where": 1, - "will": 4, - "within": 1, - "xx": 1, - "yy": 3 - } - }, - "/notices/rgn0014/": { - "headings": [ - "rgn 14 - cuml v21.06.02 hotfix release", - "overview", - "rationale", - "impact" - ], - "words": { - "01": 1, - "02": 4, - "06": 7, - "10": 1, - "14": 1, - "2021": 2, - "21": 4, - "22": 1, - "32": 1, - "3971": 1, - "3988": 1, - "a": 2, - "all": 1, - "are": 1, - "as": 2, - "author": 1, - "batch": 1, - "bits": 1, - "bug": 2, - "change": 1, - "completed": 1, - "created": 1, - "cuml": 5, - "encouraged": 1, - "fix": 2, - "hotfix": 1, - "hotfixed": 3, - "impact": 1, - "june": 2, - "larger": 1, - "libraries": 1, - "missing": 1, - "openmp": 1, - "ops": 1, - "overview": 1, - "possible": 1, - "rapids": 2, - "rationale": 1, - "release": 2, - "rgn": 1, - "sizes": 1, - "soon": 1, - "status": 1, - "support": 1, - "than": 1, - "to": 5, - "topic": 1, - "update": 1, - "updated": 1, - "users": 1, - "v21": 3, - "version": 2, - "was": 3, - "with": 2 - } - }, - "/notices/rgn0015/": { - "headings": [ - "rgn 15 - cudf v21.06.01 hotfix release", - "overview", - "rationale", - "impact" - ], - "words": { - "01": 3, - "06": 5, - "15": 1, - "17": 1, - "2021": 2, - "21": 2, - "22": 1, - "8538": 1, - "all": 1, - "an": 1, - "are": 1, - "as": 2, - "author": 1, - "change": 1, - "columns": 1, - "completed": 1, - "corruption": 1, - "could": 1, - "created": 1, - "cudf": 4, - "data": 1, - "encouraged": 1, - "error": 1, - "files": 1, - "fix": 1, - "hotfix": 1, - "hotfixed": 2, - "impact": 1, - "june": 2, - "large": 1, - "lead": 1, - "libraries": 1, - "multiple": 1, - "offset": 1, - "ops": 1, - "orc": 1, - "overview": 1, - "possible": 1, - "rapids": 2, - "rationale": 1, - "release": 2, - "rgn": 1, - "soon": 1, - "status": 1, - "string": 1, - "to": 5, - "topic": 1, - "update": 1, - "updated": 1, - "users": 1, - "v21": 3, - "version": 2, - "was": 2, - "when": 1, - "which": 1, - "with": 1, - "writing": 1 - } - }, - "/notices/rgn0016/": { - "headings": [ - "rgn 16 - cucim and cudf 21.08.01 hotfix release", - "overview", - "rationale", - "impact" - ], - "words": { - "01": 5, - "08": 7, - "09": 1, - "16": 1, - "2021": 1, - "21": 5, - "84": 1, - "8968": 1, - "8984": 1, - "a": 1, - "aligned": 1, - "all": 1, - "and": 4, - "are": 1, - "as": 2, - "august": 1, - "author": 1, - "bug": 1, - "change": 1, - "columns": 1, - "compiler": 1, - "completed": 1, - "concatenate": 1, - "created": 1, - "cucim": 4, - "cudf": 4, - "degradation": 1, - "encouraged": 1, - "ensure": 1, - "fix": 1, - "for": 1, - "hotfix": 1, - "hotfixed": 3, - "impact": 1, - "in": 3, - "libraries": 1, - "n": 1, - "of": 1, - "order": 2, - "overview": 1, - "performance": 1, - "possible": 1, - "rapids": 3, - "rationale": 1, - "release": 2, - "rest": 1, - "rgn": 1, - "soon": 1, - "stack": 1, - "status": 1, - "string": 1, - "the": 3, - "to": 7, - "topic": 1, - "tpm": 1, - "update": 1, - "updated": 1, - "users": 1, - "v21": 2, - "version": 2, - "was": 2, - "were": 1, - "with": 1 - } - }, - "/notices/rgn0017/": { - "headings": [ - "rgn 17 - hotfix 21.08 release for five libraries", - "overview", - "rationale", - "impact" - ], - "words": { - "01": 3, - "02": 3, - "08": 9, - "09": 1, - "17": 1, - "2021": 1, - "21": 7, - "56": 1, - "a": 1, - "all": 1, - "and": 4, - "are": 1, - "as": 2, - "august": 1, - "author": 1, - "change": 1, - "cmake": 1, - "completed": 1, - "conda": 1, - "configuration": 1, - "created": 1, - "cudf": 3, - "cugraph": 2, - "cuml": 2, - "cuspatial": 2, - "encouraged": 1, - "files": 1, - "five": 2, - "fix": 1, - "for": 1, - "four": 1, - "hotfix": 1, - "hotfixed": 5, - "impact": 1, - "in": 1, - "libraries": 4, - "location": 1, - "n": 1, - "of": 1, - "order": 1, - "overview": 1, - "package": 1, - "possible": 1, - "rapids": 3, - "rationale": 1, - "release": 2, - "rgn": 1, - "rmm": 2, - "soon": 1, - "status": 1, - "the": 2, - "these": 1, - "to": 8, - "topic": 1, - "tpm": 1, - "update": 1, - "updated": 1, - "users": 1, - "v21": 2, - "version": 3, - "was": 2, - "were": 3 - } - }, - "/notices/rgn0018/": { - "headings": [ - "rgn 18 - hotfix 21.10 release for rmm and cudf", - "overview", - "rationale", - "impact" - ], - "words": { - "01": 1, - "10": 3, - "11": 1, - "18": 1, - "2021": 1, - "21": 2, - "a": 1, - "and": 3, - "author": 1, - "change": 1, - "cmake": 1, - "completed": 1, - "conda": 1, - "created": 1, - "cudf": 3, - "files": 2, - "fix": 1, - "for": 1, - "from": 1, - "hotfix": 1, - "hotfixed": 2, - "impact": 1, - "issue": 1, - "lib": 1, - "lib64": 1, - "libraries": 1, - "moves": 1, - "n": 1, - "observed": 1, - "october": 1, - "overview": 1, - "packaging": 1, - "party": 2, - "rapids": 2, - "rationale": 1, - "release": 2, - "resolve": 1, - "rgn": 1, - "rmm": 3, - "status": 1, - "subdirectory": 1, - "the": 2, - "third": 2, - "to": 3, - "topic": 1, - "tpm": 1, - "updated": 1, - "v21": 1, - "version": 2, - "were": 2, - "with": 1 - } - }, - "/notices/rgn0019/": { - "headings": [ - "rgn 19 - cuda enhanced compatibility", - "overview", - "impact" - ], - "words": { - "0": 1, - "02": 1, - "05": 1, - "11": 5, - "12": 2, - "18": 1, - "19": 1, - "2021": 1, - "2023": 1, - "21": 1, - "450": 1, - "5": 4, - "80": 1, - "a": 2, - "able": 1, - "and": 3, - "any": 2, - "author": 1, - "basis": 1, - "be": 2, - "best": 1, - "build": 1, - "built": 1, - "change": 1, - "compatibility": 2, - "completed": 1, - "created": 1, - "cuda": 7, - "debug": 2, - "decorator": 1, - "distributed": 1, - "driver": 1, - "effort": 1, - "enhanced": 2, - "error": 1, - "for": 2, - "impact": 1, - "in": 1, - "is": 2, - "jit": 1, - "latest": 1, - "limitation": 1, - "minor": 1, - "november": 1, - "numba": 1, - "nvcc": 1, - "of": 4, - "older": 1, - "on": 1, - "one": 1, - "overview": 1, - "packages": 1, - "poses": 1, - "rapids": 3, - "recommend": 1, - "result": 1, - "rgn": 1, - "running": 2, - "runtime": 5, - "september": 1, - "status": 1, - "still": 1, - "strongly": 1, - "supported": 1, - "that": 1, - "the": 7, - "this": 1, - "to": 1, - "topic": 1, - "tpm": 1, - "true": 2, - "updated": 1, - "use": 4, - "users": 2, - "using": 2, - "v21": 1, - "version": 2, - "versions": 1, - "via": 1, - "we": 1, - "will": 3, - "with": 2 - } - }, - "/notices/rgn0020/": { - "headings": [ - "rgn 20 - cudf v21.12.01 hotfix release", - "overview", - "rationale", - "impact" - ], - "words": { - "01": 4, - "09": 1, - "12": 6, - "20": 1, - "2021": 1, - "9868": 1, - "a": 1, - "all": 1, - "are": 1, - "as": 2, - "author": 1, - "bug": 1, - "change": 1, - "completed": 1, - "created": 1, - "cudf": 4, - "december": 1, - "encouraged": 1, - "fix": 1, - "hotfix": 1, - "hotfixed": 2, - "impact": 1, - "in": 1, - "library": 1, - "n": 1, - "order": 1, - "overview": 1, - "possible": 1, - "rapids": 2, - "rationale": 1, - "release": 2, - "rgn": 1, - "soon": 1, - "status": 1, - "the": 2, - "to": 5, - "topic": 1, - "tpm": 1, - "update": 1, - "updated": 1, - "users": 1, - "v21": 6, - "version": 2, - "was": 2 - } - }, - "/notices/rgn0021/": { - "headings": [ - "rgn 21 - cudf v21.12.02 hotfix release", - "overview", - "rationale", - "impact" - ], - "words": { - "02": 4, - "12": 6, - "16": 1, - "2021": 1, - "21": 1, - "9898": 1, - "a": 2, - "all": 1, - "are": 1, - "as": 3, - "author": 1, - "change": 1, - "completed": 1, - "created": 1, - "cudf": 4, - "december": 1, - "encouraged": 1, - "fix": 1, - "hotfix": 1, - "hotfixed": 2, - "impact": 1, - "in": 2, - "library": 1, - "n": 1, - "noted": 1, - "order": 1, - "overview": 1, - "performance": 1, - "possible": 1, - "rapids": 2, - "rationale": 1, - "regression": 1, - "release": 2, - "rgn": 1, - "soon": 1, - "status": 1, - "the": 1, - "to": 5, - "topic": 1, - "tpm": 1, - "update": 1, - "updated": 1, - "users": 1, - "v21": 6, - "version": 2, - "was": 2 - } - }, - "/notices/rgn0022/": { - "headings": [ - "rgn 22 - google colab rapids support limited to rapids v21.12", - "overview", - "status", - "impact" - ], - "words": { - "02": 4, - "04": 2, - "12": 6, - "14": 1, - "17": 1, - "2022": 2, - "22": 1, - "3": 4, - "7": 2, - "8": 2, - "a": 1, - "about": 1, - "added": 2, - "all": 1, - "alternative": 1, - "an": 1, - "and": 2, - "as": 1, - "author": 1, - "been": 2, - "breaking": 1, - "can": 1, - "change": 1, - "colab": 6, - "complete": 1, - "completed": 1, - "created": 1, - "currently": 2, - "eol": 1, - "feb": 1, - "february": 1, - "for": 5, - "google": 4, - "have": 2, - "impact": 1, - "information": 1, - "is": 3, - "it": 1, - "lab": 2, - "labs": 1, - "legacy": 2, - "limited": 3, - "links": 2, - "make": 1, - "may": 1, - "more": 1, - "n": 1, - "nightly": 2, - "note": 1, - "now": 1, - "of": 2, - "on": 1, - "only": 1, - "ops": 1, - "overview": 1, - "python": 4, - "rapids": 11, - "refer": 1, - "requires": 1, - "rgn": 1, - "rsn": 1, - "sagemaker": 3, - "stable": 2, - "status": 2, - "studio": 3, - "support": 5, - "to": 8, - "topic": 1, - "trials": 1, - "try": 1, - "until": 1, - "up": 1, - "updated": 1, - "use": 2, - "users": 2, - "v21": 5, - "v22": 6, - "version": 2, - "versions": 1, - "warnings": 1, - "website": 1, - "will": 1 - } - }, - "/notices/rgn0023/": { - "headings": [ - "rgn 23 - new 'try rapids now' capability via sagemaker studio labs in beta", - "overview", - "status", - "impact" - ], - "words": { - "02": 3, - "04": 2, - "05": 1, - "12": 3, - "17": 1, - "2022": 2, - "2023": 1, - "23": 1, - "a": 3, - "account": 1, - "added": 2, - "after": 1, - "all": 1, - "and": 4, - "announcement": 1, - "any": 1, - "appropriate": 1, - "as": 1, - "author": 1, - "be": 2, - "been": 3, - "beta": 1, - "buttons": 1, - "can": 3, - "capability": 2, - "community": 1, - "completed": 1, - "continue": 1, - "created": 2, - "face": 1, - "feb": 1, - "february": 1, - "feedback": 1, - "for": 2, - "found": 2, - "further": 1, - "getting": 1, - "goai": 1, - "has": 2, - "have": 3, - "impact": 1, - "in": 7, - "installation": 1, - "installations": 1, - "instructions": 1, - "issues": 1, - "it": 1, - "lab": 4, - "labs": 2, - "legacy": 2, - "links": 2, - "made": 1, - "new": 3, - "nightly": 2, - "now": 3, - "of": 1, - "only": 1, - "open": 1, - "ops": 1, - "options": 1, - "our": 1, - "overview": 1, - "please": 1, - "quick": 2, - "rapids": 10, - "repo": 1, - "repository": 2, - "rgn": 1, - "sagemaker": 6, - "sections": 1, - "september": 1, - "share": 1, - "slack": 1, - "smsl": 1, - "stable": 2, - "start": 2, - "started": 1, - "status": 2, - "studio": 6, - "successfully": 1, - "the": 3, - "to": 2, - "topic": 1, - "try": 4, - "updated": 1, - "users": 1, - "v21": 2, - "v22": 5, - "version": 1, - "versions": 1, - "via": 1, - "website": 1, - "with": 1, - "you": 3 - } - }, - "/notices/rgn0024/": { - "headings": [ - "rgn 24 - updated wsl2 installation method", - "overview", - "status", - "impact" - ], - "words": { - "02": 3, - "05": 1, - "1": 1, - "11": 2, - "12": 1, - "17": 1, - "2": 1, - "2022": 2, - "2023": 1, - "24": 1, - "3": 1, - "a": 3, - "accordance": 1, - "accordingly": 1, - "additional": 1, - "already": 1, - "any": 1, - "are": 2, - "as": 2, - "aspx": 1, - "author": 1, - "b": 1, - "be": 1, - "below": 1, - "blog": 1, - "breaking": 1, - "capable": 2, - "change": 1, - "changed": 1, - "choice": 1, - "com": 2, - "compatible": 1, - "complete": 1, - "completed": 1, - "conda": 1, - "continued": 1, - "continues": 1, - "created": 1, - "ctk": 1, - "cuda": 2, - "desired": 1, - "do": 1, - "docker": 1, - "docs": 1, - "download": 1, - "drivers": 4, - "ea": 2, - "easier": 1, - "en": 2, - "environment": 2, - "environments": 1, - "far": 1, - "feb": 1, - "february": 1, - "first": 1, - "follow": 2, - "for": 3, - "gpu": 1, - "guide": 1, - "has": 1, - "have": 1, - "host": 1, - "https": 2, - "if": 2, - "impact": 1, - "in": 5, - "index": 1, - "inside": 3, - "install": 7, - "installation": 4, - "installed": 1, - "installing": 1, - "instance": 2, - "instructions": 1, - "intending": 1, - "is": 1, - "it": 1, - "lang": 1, - "latest": 1, - "longer": 1, - "machine": 1, - "makes": 1, - "method": 2, - "microsoft": 1, - "ms": 1, - "necessary": 1, - "neither": 1, - "no": 1, - "nor": 1, - "normal": 1, - "not": 1, - "nvidia": 3, - "of": 2, - "on": 2, - "ops": 1, - "options": 1, - "or": 1, - "overview": 1, - "please": 4, - "production": 2, - "rapids": 10, - "release": 1, - "rgn": 1, - "run": 1, - "running": 1, - "s": 1, - "september": 1, - "should": 1, - "status": 2, - "steps": 1, - "support": 2, - "systems": 1, - "the": 7, - "their": 1, - "this": 3, - "time": 1, - "to": 2, - "toolkit": 1, - "topic": 1, - "update": 2, - "updated": 4, - "us": 2, - "users": 1, - "v22": 3, - "version": 1, - "when": 1, - "which": 1, - "will": 1, - "windows": 4, - "with": 4, - "wsl": 1, - "wsl2": 11, - "www": 1, - "you": 3, - "your": 4 - } - }, - "/notices/rgn0025/": { - "headings": [ - "rgn 25 - rmm v22.04.01 hotfix release", - "overview", - "rationale", - "impact" - ], - "words": { - "01": 4, - "04": 6, - "05": 1, - "1024": 1, - "15": 1, - "2022": 1, - "2023": 1, - "25": 1, - "a": 1, - "all": 1, - "april": 1, - "are": 1, - "as": 3, - "author": 1, - "change": 1, - "completed": 1, - "created": 1, - "encouraged": 1, - "fix": 1, - "hotfix": 1, - "hotfixed": 2, - "impact": 1, - "in": 2, - "issue": 1, - "library": 1, - "noted": 1, - "order": 1, - "overview": 1, - "packaging": 1, - "possible": 1, - "rapids": 2, - "rationale": 1, - "release": 2, - "rgn": 1, - "rmm": 4, - "september": 1, - "soon": 1, - "status": 1, - "the": 1, - "to": 5, - "topic": 1, - "tpm": 1, - "update": 1, - "updated": 1, - "users": 1, - "v22": 6, - "version": 2, - "was": 2 - } - }, - "/notices/rgn0026/": { - "headings": [ - "rgn 26 - v22.06 release update", - "overview", - "rationale", - "impact" - ], - "words": { - "05": 1, - "06": 4, - "07": 1, - "15": 2, - "2022": 1, - "2023": 1, - "22": 5, - "26": 1, - "6": 3, - "8": 1, - "a": 1, - "and": 2, - "artifacts": 1, - "author": 1, - "base": 2, - "be": 4, - "bifurcated": 1, - "change": 1, - "completed": 1, - "conda": 2, - "container": 1, - "containers": 3, - "created": 1, - "dates": 1, - "devel": 3, - "e": 1, - "i": 1, - "impact": 1, - "june": 1, - "n": 1, - "on": 3, - "other": 1, - "overview": 1, - "packages": 2, - "rapids": 2, - "rationale": 1, - "release": 4, - "released": 3, - "remain": 1, - "rgn": 1, - "september": 1, - "status": 1, - "than": 1, - "those": 1, - "topic": 1, - "tpm": 1, - "unchanged": 1, - "update": 1, - "updated": 1, - "v22": 2, - "version": 1, - "wednesday": 3, - "will": 5 - } - }, - "/notices/rgn0027/": { - "headings": [ - "rgn 27 - rapids docker run command changes in v22.04", - "overview", - "status", - "impact", - "example old docker run command", - "example new docker run command" - ], - "words": { - "04": 4, - "05": 1, - "06": 3, - "08": 2, - "1": 2, - "1g": 2, - "2022": 2, - "2023": 1, - "22": 2, - "27": 1, - "5": 2, - "8786": 4, - "8787": 4, - "8888": 4, - "9": 2, - "a": 2, - "across": 1, - "additional": 2, - "adopt": 1, - "advise": 1, - "all": 3, - "and": 3, - "architectures": 1, - "are": 1, - "arm": 1, - "arm64": 2, - "as": 1, - "author": 1, - "be": 1, - "below": 1, - "change": 3, - "changes": 1, - "command": 4, - "commands": 1, - "comparison": 1, - "completed": 1, - "core": 2, - "created": 1, - "cuda11": 2, - "currently": 2, - "docker": 10, - "especially": 1, - "everyone": 1, - "example": 2, - "examples": 1, - "expand": 1, - "for": 2, - "further": 1, - "gpu": 2, - "gpus": 2, - "have": 1, - "identified": 1, - "if": 1, - "impact": 1, - "in": 4, - "instructions": 1, - "is": 2, - "it": 2, - "june": 1, - "memlock": 2, - "mnmg": 2, - "more": 1, - "multi": 2, - "new": 3, - "node": 1, - "of": 1, - "old": 2, - "on": 2, - "ops": 1, - "out": 1, - "overview": 1, - "p": 6, - "parameters": 3, - "platforms": 1, - "provide": 1, - "py3": 2, - "rapids": 8, - "rapidsai": 4, - "re": 1, - "recently": 1, - "refer": 1, - "release": 2, - "rgn": 1, - "rm": 2, - "run": 9, - "running": 2, - "runtime": 2, - "sbsa": 1, - "selector": 2, - "september": 1, - "shm": 2, - "size": 2, - "soon": 1, - "stable": 1, - "status": 2, - "the": 5, - "these": 1, - "this": 2, - "to": 4, - "topic": 1, - "ubuntu20": 2, - "ulimit": 2, - "updated": 3, - "v22": 2, - "version": 1, - "way": 1, - "we": 3, - "when": 1, - "will": 1, - "with": 2, - "you": 1 - } - }, - "/notices/rgn0028/": { - "headings": [ - "rgn 28 - 22.06 hotfix for cuda-python package", - "overview", - "rationale", - "impact" - ], - "words": { - "0": 1, - "01": 2, - "06": 4, - "07": 1, - "1": 1, - "11": 2, - "2022": 1, - "22": 2, - "28": 1, - "7": 2, - "a": 2, - "all": 2, - "are": 1, - "author": 1, - "blocking": 1, - "change": 2, - "completed": 1, - "consequences": 1, - "created": 1, - "cuda": 4, - "cudatoolkit": 1, - "dependency": 3, - "for": 4, - "had": 1, - "hotfix": 1, - "hotfixed": 1, - "impact": 1, - "including": 1, - "installation": 1, - "its": 1, - "july": 1, - "latest": 1, - "libraries": 3, - "maximum": 1, - "n": 1, - "of": 2, - "on": 1, - "overview": 1, - "package": 4, - "pin": 1, - "python": 3, - "rapids": 6, - "rationale": 1, - "recently": 1, - "recommended": 1, - "release": 1, - "released": 1, - "rgn": 1, - "several": 2, - "some": 1, - "status": 1, - "switched": 1, - "the": 4, - "this": 1, - "to": 4, - "toolkit": 1, - "topic": 1, - "tpm": 1, - "unintended": 1, - "updated": 1, - "use": 1, - "users": 2, - "v22": 2, - "version": 4, - "was": 2, - "which": 1 - } - }, - "/notices/rgn0029/": { - "headings": [ - "rgn 29 - rapids v22.10.01 hotfix release", - "overview", - "rationale", - "impact" - ], - "words": { - "01": 4, - "05": 1, - "09": 1, - "1": 1, - "10": 5, - "11": 1, - "2022": 1, - "2023": 1, - "22": 1, - "29": 1, - "7": 1, - "additionally": 1, - "all": 1, - "and": 2, - "are": 1, - "author": 1, - "change": 1, - "changed": 1, - "completed": 1, - "cpu": 1, - "created": 1, - "cuda": 3, - "cuda11x": 1, - "cudf": 1, - "cugraph": 2, - "cuml": 1, - "cupy": 3, - "dependencies": 1, - "dependency": 1, - "errors": 1, - "for": 2, - "hotfix": 1, - "hotfixed": 1, - "impact": 1, - "installation": 1, - "installed": 1, - "issues": 1, - "latest": 1, - "machines": 2, - "november": 1, - "of": 1, - "on": 1, - "only": 1, - "ops": 1, - "or": 1, - "overview": 1, - "packages": 1, - "pip": 1, - "python": 2, - "rapids": 4, - "rationale": 1, - "recommended": 1, - "release": 2, - "requirement": 1, - "resolve": 2, - "rgn": 1, - "rmm": 1, - "september": 1, - "some": 1, - "status": 1, - "the": 2, - "to": 7, - "topic": 1, - "tpm": 1, - "update": 1, - "updated": 2, - "use": 1, - "users": 2, - "v22": 4, - "version": 4, - "was": 3, - "without": 1 - } - }, - "/notices/rgn0030/": { - "headings": [ - "rgn 30 - rapids v23.10 hotfix for cudf", - "overview", - "rationale", - "impact" - ], - "words": { - "01": 2, - "02": 3, - "10": 7, - "12": 1, - "20": 1, - "2023": 1, - "23": 6, - "30": 1, - "a": 3, - "all": 1, - "and": 3, - "are": 1, - "author": 1, - "being": 2, - "bug": 2, - "cause": 2, - "change": 1, - "completed": 1, - "could": 2, - "created": 1, - "cudf": 12, - "dask": 3, - "dataframes": 2, - "encouraged": 1, - "for": 1, - "hotfix": 1, - "hotfixed": 2, - "impact": 1, - "in": 5, - "incorrect": 2, - "indexes": 2, - "introduced": 2, - "is": 5, - "issue": 3, - "merging": 2, - "n": 1, - "new": 1, - "nightlies": 1, - "not": 3, - "november": 1, - "of": 2, - "one": 2, - "output": 2, - "overview": 1, - "patch": 1, - "present": 1, - "rapids": 3, - "rationale": 1, - "release": 2, - "resolve": 2, - "rgn": 1, - "status": 1, - "that": 2, - "the": 4, - "this": 2, - "to": 6, - "topic": 1, - "tpm": 1, - "unique": 2, - "updated": 1, - "upgrade": 1, - "users": 1, - "v23": 2, - "version": 1, - "when": 2, - "which": 2 - } - }, - "/notices/rsn/": { - "headings": [ - "rapids support notices" - ], - "words": { - "0": 8, - "01": 2, - "02": 16, - "03": 2, - "04": 16, - "05": 17, - "06": 15, - "08": 24, - "1": 3, - "10": 21, - "11": 12, - "12": 37, - "13": 4, - "14": 5, - "15": 7, - "16": 2, - "17": 17, - "18": 4, - "19": 8, - "2": 9, - "20": 5, - "2020": 4, - "2021": 5, - "2022": 3, - "2023": 21, - "2024": 7, - "2025": 15, - "2026": 6, - "21": 3, - "22": 4, - "23": 1, - "24": 1, - "25": 7, - "26": 4, - "27": 1, - "28": 1, - "29": 1, - "3": 8, - "30": 2, - "31": 2, - "32": 1, - "33": 1, - "34": 1, - "35": 1, - "36": 1, - "37": 1, - "38": 1, - "39": 1, - "4": 3, - "40": 1, - "41": 1, - "42": 1, - "43": 1, - "44": 1, - "45": 1, - "46": 1, - "47": 1, - "48": 1, - "49": 1, - "5": 4, - "50": 1, - "51": 1, - "52": 1, - "53": 1, - "54": 1, - "55": 1, - "56": 1, - "57": 1, - "58": 1, - "59": 1, - "6": 3, - "60": 1, - "61": 1, - "7": 6, - "8": 7, - "9": 6, - "a": 1, - "accel": 1, - "adding": 2, - "after": 1, - "all": 2, - "and": 7, - "announcement": 12, - "announcements": 1, - "april": 3, - "are": 1, - "arm": 1, - "arm64": 1, - "around": 1, - "august": 9, - "branching": 1, - "centos": 2, - "change": 59, - "changes": 2, - "channel": 1, - "clx": 1, - "com": 1, - "compilers": 1, - "completed": 58, - "conda": 1, - "consolidates": 1, - "containers": 2, - "cpu": 1, - "cuda": 23, - "cudf": 1, - "cugraph": 4, - "cuml": 4, - "cumlprims": 1, - "cupy": 1, - "cusignal": 1, - "cuspatial": 1, - "cuxfilter": 1, - "december": 3, - "deprecation": 19, - "development": 1, - "dgl": 1, - "docker": 7, - "driver": 1, - "dropping": 11, - "eol": 4, - "favor": 1, - "february": 6, - "for": 29, - "from": 3, - "g": 2, - "gcc": 2, - "gpu": 1, - "image": 2, - "images": 5, - "important": 1, - "in": 50, - "increasing": 1, - "index": 1, - "installation": 1, - "into": 1, - "january": 3, - "july": 7, - "june": 3, - "label": 1, - "legacy": 1, - "libcugraphops": 1, - "libcumlprims": 1, - "library": 4, - "major": 1, - "march": 1, - "may": 3, - "mg": 1, - "migration": 1, - "miniforge": 1, - "minimum": 4, - "missing": 1, - "moving": 3, - "notice": 2, - "notices": 2, - "november": 1, - "numpy": 1, - "nvidia": 1, - "october": 6, - "of": 10, - "older": 1, - "ops": 1, - "os": 1, - "our": 4, - "packages": 4, - "pandas": 2, - "pascal": 1, - "per": 1, - "pin": 1, - "pip": 1, - "platform": 56, - "platforms": 1, - "please": 1, - "process": 1, - "progress": 3, - "project": 1, - "publishing": 3, - "py": 1, - "pylibcugraphops": 1, - "pynvjitlink": 1, - "pypi": 1, - "python": 14, - "rapids": 22, - "rapidsai": 2, - "release": 15, - "removing": 1, - "replaces": 2, - "repository": 1, - "require": 1, - "requirement": 2, - "rocky": 1, - "rsn": 62, - "sbsa": 1, - "september": 16, - "service": 1, - "single": 1, - "specific": 1, - "sql": 1, - "stop": 2, - "strategy": 1, - "sunsetting": 1, - "support": 79, - "supporting": 2, - "tag": 1, - "targeting": 1, - "the": 1, - "title": 1, - "to": 9, - "topic": 1, - "transition": 1, - "ubuntu": 4, - "ucx": 1, - "updated": 1, - "updates": 1, - "users": 2, - "v0": 16, - "v21": 11, - "v22": 24, - "v23": 18, - "v24": 9, - "v25": 20, - "v26": 9, - "v3": 6, - "version": 4, - "versions": 2, - "wheels": 2, - "will": 2, - "with": 2, - "x": 1 - } - }, - "/notices/rsn0001/": { - "headings": [ - "rsn 1 - change minimum support gcc/g++ version to 7.5", - "overview", - "status", - "impact" - ], - "words": { - "1": 1, - "14": 1, - "15": 1, - "17": 1, - "2020": 1, - "3": 1, - "5": 4, - "7": 5, - "a": 1, - "all": 1, - "and": 2, - "author": 1, - "build": 1, - "building": 1, - "change": 3, - "changes": 1, - "compatibility": 1, - "completed": 1, - "conda": 3, - "created": 1, - "docker": 1, - "ecosystem": 1, - "ensure": 1, - "for": 1, - "forced": 1, - "forge": 2, - "from": 2, - "future": 1, - "g": 5, - "gcc": 5, - "higher": 1, - "images": 1, - "impact": 1, - "in": 1, - "july": 1, - "minimum": 1, - "n": 1, - "ops": 1, - "or": 1, - "overview": 1, - "platform": 1, - "rapids": 4, - "releases": 1, - "rsn": 1, - "should": 1, - "source": 1, - "status": 2, - "support": 4, - "the": 1, - "to": 5, - "topic": 1, - "updated": 1, - "use": 2, - "users": 1, - "v0": 2, - "version": 2, - "with": 1 - } - }, - "/notices/rsn0002/": { - "headings": [ - "rsn 2 - eol python 3.6 & cuda 10.0 in v0.14", - "overview", - "status", - "nightly support", - "documentation", - "rationale", - "python 3.6 eol", - "cuda 10.0 eol", - "impact" - ], - "words": { - "0": 6, - "1": 1, - "10": 5, - "11": 2, - "13": 3, - "14": 3, - "15": 6, - "2": 1, - "2020": 4, - "29": 1, - "3": 10, - "4": 1, - "6": 5, - "7": 2, - "8": 2, - "a": 2, - "ai": 1, - "and": 4, - "are": 2, - "as": 1, - "author": 1, - "be": 3, - "beta": 1, - "bring": 2, - "change": 1, - "community": 2, - "completed": 1, - "conda": 1, - "continuing": 1, - "created": 1, - "cuda": 7, - "defaults": 1, - "dependent": 1, - "discontinuing": 1, - "docker": 2, - "documentation": 1, - "due": 1, - "end": 1, - "ended": 2, - "eol": 6, - "favor": 1, - "focus": 1, - "for": 7, - "further": 1, - "future": 1, - "given": 2, - "has": 2, - "have": 1, - "however": 1, - "hub": 1, - "images": 1, - "impact": 1, - "in": 8, - "includes": 1, - "input": 1, - "jul": 2, - "july": 1, - "june": 1, - "large": 1, - "late": 1, - "libraries": 2, - "life": 1, - "migrate": 1, - "n": 1, - "near": 1, - "nep": 1, - "new": 1, - "ngc": 1, - "nightly": 2, - "no": 1, - "not": 1, - "number": 1, - "of": 8, - "on": 3, - "ops": 1, - "opted": 2, - "or": 1, - "others": 1, - "our": 3, - "overview": 1, - "packages": 2, - "platform": 1, - "publish": 1, - "push": 1, - "python": 8, - "rapids": 5, - "rationale": 1, - "reached": 1, - "reflect": 1, - "reflected": 1, - "release": 4, - "released": 1, - "removed": 1, - "repos": 1, - "resources": 1, - "rsn": 3, - "see": 2, - "selector": 1, - "should": 1, - "some": 1, - "spend": 1, - "status": 2, - "support": 5, - "supported": 1, - "team": 1, - "the": 7, - "them": 1, - "these": 1, - "this": 1, - "to": 8, - "topic": 1, - "towards": 1, - "up": 2, - "upcoming": 1, - "updated": 2, - "updates": 3, - "users": 1, - "v0": 9, - "version": 1, - "versions": 1, - "was": 1, - "we": 1, - "which": 1, - "will": 3, - "with": 1, - "working": 1 - } - }, - "/notices/rsn0003/": { - "headings": [ - "rsn 3 - support for python 3.8 in v0.15", - "overview", - "status", - "impact" - ], - "words": { - "13": 1, - "15": 3, - "16": 1, - "17": 1, - "2": 1, - "2020": 3, - "3": 5, - "6": 1, - "8": 3, - "and": 3, - "announced": 1, - "any": 1, - "are": 1, - "author": 1, - "been": 1, - "both": 1, - "builds": 1, - "change": 1, - "completed": 1, - "conda": 2, - "created": 1, - "development": 1, - "docker": 2, - "effort": 1, - "encouraged": 1, - "eol": 1, - "for": 2, - "has": 1, - "impact": 1, - "in": 4, - "issues": 1, - "jul": 1, - "july": 2, - "nightly": 2, - "of": 1, - "on": 1, - "ops": 1, - "overview": 1, - "platform": 1, - "python": 4, - "rapids": 2, - "redirected": 1, - "report": 1, - "repos": 1, - "respective": 1, - "rsn": 2, - "started": 1, - "status": 2, - "support": 4, - "test": 1, - "the": 1, - "their": 1, - "to": 2, - "topic": 1, - "updated": 1, - "users": 1, - "v0": 3, - "version": 1, - "with": 1 - } - }, - "/notices/rsn0004/": { - "headings": [ - "rsn 4 - support for cuda 11.0 in v0.15", - "overview", - "status", - "updates" - ], - "words": { - "0": 11, - "10": 1, - "11": 11, - "12": 1, - "13": 1, - "15": 4, - "16": 1, - "2": 1, - "2020": 6, - "21": 1, - "26": 3, - "4": 1, - "8": 2, - "a": 2, - "addition": 1, - "also": 1, - "an": 1, - "anaconda": 1, - "and": 2, - "announced": 1, - "are": 2, - "aug": 3, - "august": 1, - "author": 1, - "available": 1, - "been": 1, - "bring": 1, - "built": 3, - "change": 1, - "channel": 4, - "channels": 1, - "completed": 1, - "conda": 4, - "condatoolkit": 1, - "continue": 1, - "core": 1, - "created": 1, - "cuda": 12, - "cupy": 2, - "defaults": 1, - "dependencies": 1, - "development": 1, - "effort": 1, - "enable": 1, - "eol": 1, - "faiss": 2, - "for": 4, - "forge": 3, - "gap": 1, - "getting": 1, - "gpu": 1, - "has": 3, - "have": 2, - "in": 8, - "is": 1, - "jul": 1, - "july": 1, - "libfaiss": 1, - "made": 1, - "nightlies": 1, - "nightly": 1, - "note": 1, - "nvidia": 1, - "of": 2, - "on": 4, - "once": 1, - "ops": 1, - "our": 2, - "overview": 1, - "package": 2, - "packages": 4, - "platform": 1, - "provides": 1, - "published": 1, - "rapids": 2, - "rapidsai": 3, - "redirected": 1, - "released": 3, - "remove": 1, - "rsn": 2, - "status": 2, - "stop": 1, - "support": 8, - "temporarily": 2, - "testing": 1, - "that": 1, - "the": 3, - "these": 1, - "to": 4, - "topic": 1, - "until": 2, - "up": 2, - "update": 1, - "updated": 1, - "updates": 1, - "use": 1, - "v0": 5, - "v7": 2, - "version": 2, - "we": 3, - "will": 2, - "with": 3, - "working": 1 - } - }, - "/notices/rsn0005/": { - "headings": [ - "rsn 5 - deprecation announcement for cuda 10.1 & 10.2 in v0.19", - "overview", - "impact" - ], - "words": { - "0": 1, - "1": 2, - "10": 5, - "11": 2, - "19": 4, - "2": 2, - "2021": 2, - "25": 1, - "5": 1, - "a": 1, - "additional": 1, - "after": 1, - "announcement": 1, - "any": 1, - "april": 1, - "are": 1, - "as": 3, - "at": 1, - "author": 1, - "available": 1, - "be": 3, - "become": 1, - "being": 1, - "change": 1, - "completed": 1, - "created": 1, - "cuda": 5, - "deprecated": 1, - "deprecation": 1, - "details": 1, - "dropped": 1, - "expect": 1, - "february": 1, - "for": 4, - "further": 1, - "future": 1, - "impact": 1, - "in": 3, - "may": 1, - "move": 1, - "n": 1, - "notices": 1, - "of": 2, - "on": 1, - "ops": 1, - "our": 1, - "overview": 1, - "plan": 1, - "platform": 1, - "point": 1, - "possible": 1, - "rapids": 2, - "release": 2, - "releases": 1, - "rsn": 2, - "scheduled": 1, - "shared": 1, - "should": 2, - "soon": 1, - "status": 1, - "support": 3, - "that": 1, - "the": 1, - "they": 1, - "to": 2, - "topic": 1, - "upcoming": 2, - "updated": 1, - "users": 2, - "v0": 4, - "version": 1, - "versions": 1, - "will": 2, - "worked": 1, - "x": 2 - } - }, - "/notices/rsn0006/": { - "headings": [ - "rsn 6 - eol cuda 10.1 & 10.2 in v0.19", - "overview", - "status", - "release support - v0.19", - "nightly support - v0.20", - "documentation", - "impact" - ], - "words": { - "0": 1, - "04": 1, - "05": 1, - "1": 2, - "10": 6, - "11": 2, - "19": 5, - "2": 3, - "20": 4, - "2021": 2, - "21": 1, - "6": 1, - "a": 1, - "ai": 1, - "and": 3, - "april": 1, - "author": 1, - "available": 1, - "be": 2, - "change": 1, - "changes": 1, - "completed": 1, - "conda": 2, - "created": 1, - "cuda": 5, - "docker": 3, - "documentation": 1, - "end": 1, - "ended": 1, - "eol": 3, - "final": 1, - "for": 2, - "further": 1, - "have": 1, - "hub": 1, - "images": 2, - "impact": 1, - "in": 3, - "includes": 1, - "install": 1, - "life": 1, - "migrate": 1, - "n": 1, - "ngc": 1, - "nightly": 2, - "no": 1, - "not": 1, - "of": 3, - "on": 1, - "ops": 1, - "options": 1, - "or": 3, - "overview": 1, - "packages": 2, - "platform": 1, - "rapids": 5, - "reached": 1, - "reflect": 1, - "reflected": 1, - "release": 5, - "repos": 1, - "rsn": 1, - "selector": 1, - "should": 1, - "status": 2, - "support": 4, - "supported": 1, - "supporting": 2, - "the": 2, - "this": 1, - "to": 3, - "topic": 1, - "upcoming": 1, - "updated": 2, - "updates": 1, - "users": 1, - "v0": 9, - "version": 1, - "which": 1, - "will": 2, - "with": 1, - "x": 2 - } - }, - "/notices/rsn0007/": { - "headings": [ - "rsn 7 - support for cuda 11.2 in v0.19", - "overview", - "impact" - ], - "words": { - "10": 1, - "11": 3, - "19": 3, - "2": 3, - "20": 2, - "2021": 1, - "21": 1, - "6": 1, - "7": 1, - "a": 1, - "and": 2, - "announced": 1, - "april": 1, - "are": 1, - "as": 1, - "author": 1, - "been": 1, - "change": 1, - "completed": 1, - "created": 1, - "cuda": 4, - "develop": 1, - "development": 1, - "effort": 1, - "encouraged": 1, - "eol": 1, - "feedback": 1, - "for": 1, - "has": 1, - "if": 1, - "impact": 1, - "in": 3, - "libraries": 1, - "n": 1, - "of": 1, - "ops": 1, - "overview": 1, - "platform": 1, - "possible": 1, - "provide": 1, - "rapids": 3, - "redirected": 1, - "rsn": 2, - "status": 1, - "support": 3, - "the": 2, - "to": 3, - "topic": 1, - "updated": 1, - "use": 1, - "users": 1, - "v0": 5, - "version": 1, - "we": 1, - "with": 1, - "x": 1 - } - }, - "/notices/rsn0008/": { - "headings": [ - "rsn 8 - change minimum support gcc/g++ version to 9.x", - "overview", - "status", - "impact" - ], - "words": { - "0": 2, - "05": 1, - "06": 2, - "17": 1, - "20": 2, - "2021": 2, - "29": 1, - "3": 1, - "8": 1, - "9": 4, - "advantage": 1, - "aligns": 1, - "all": 2, - "also": 1, - "and": 1, - "april": 1, - "author": 1, - "build": 2, - "building": 1, - "builds": 1, - "c": 2, - "change": 2, - "completed": 1, - "conda": 2, - "created": 1, - "current": 1, - "docker": 1, - "features": 1, - "forge": 1, - "from": 1, - "g": 4, - "gcc": 4, - "higher": 1, - "images": 1, - "impact": 1, - "in": 1, - "including": 1, - "may": 1, - "minimum": 1, - "moving": 1, - "new": 1, - "notably": 1, - "now": 1, - "of": 1, - "ops": 1, - "or": 1, - "order": 1, - "overview": 1, - "platform": 1, - "projects": 1, - "rapids": 5, - "require": 1, - "rsn": 1, - "should": 1, - "source": 1, - "stack": 1, - "starting": 1, - "status": 2, - "support": 2, - "take": 1, - "the": 1, - "this": 1, - "to": 4, - "topic": 1, - "updated": 1, - "use": 2, - "users": 1, - "v0": 2, - "v21": 2, - "version": 2, - "will": 1, - "with": 2, - "x": 1 - } - }, - "/notices/rsn0009/": { - "headings": [ - "rsn 9 - stop supporting ubuntu 16.04 in v21.08", - "overview", - "status", - "impact" - ], - "words": { - "04": 7, - "05": 2, - "08": 2, - "16": 5, - "18": 1, - "20": 1, - "2021": 1, - "2023": 1, - "7": 2, - "8": 1, - "9": 1, - "additionally": 1, - "an": 1, - "any": 3, - "at": 1, - "author": 1, - "be": 1, - "builds": 1, - "built": 1, - "centos": 3, - "change": 1, - "completed": 1, - "consider": 1, - "converted": 1, - "cpu": 1, - "created": 1, - "dropping": 1, - "effort": 1, - "end": 1, - "following": 1, - "for": 2, - "full": 1, - "gpuci": 1, - "image": 1, - "images": 1, - "impact": 1, - "in": 1, - "instead": 1, - "is": 2, - "life": 1, - "longer": 1, - "may": 1, - "means": 1, - "no": 1, - "now": 1, - "of": 3, - "on": 1, - "ongoing": 1, - "operating": 1, - "ops": 1, - "over": 1, - "overview": 1, - "platform": 1, - "publish": 1, - "rapids": 3, - "rapidsai": 2, - "rsn": 1, - "september": 1, - "should": 1, - "status": 2, - "stop": 1, - "support": 2, - "supported": 1, - "supporting": 1, - "switching": 1, - "systems": 1, - "the": 1, - "to": 2, - "topic": 1, - "ubuntu": 7, - "updated": 1, - "use": 1, - "users": 1, - "v21": 2, - "version": 1, - "which": 1, - "will": 2 - } - }, - "/notices/rsn0010/": { - "headings": [ - "rsn 10 - support for cuda 11.4 in v21.08", - "overview", - "impact" - ], - "words": { - "05": 1, - "08": 5, - "09": 1, - "10": 2, - "11": 4, - "2021": 1, - "2023": 1, - "4": 4, - "and": 1, - "are": 1, - "as": 1, - "author": 1, - "begun": 1, - "change": 1, - "completed": 1, - "created": 1, - "cuda": 4, - "currently": 1, - "develop": 1, - "development": 1, - "effort": 1, - "encouraged": 1, - "expected": 1, - "experimental": 1, - "feedback": 1, - "for": 3, - "ga": 1, - "has": 1, - "if": 1, - "impact": 1, - "in": 3, - "is": 2, - "july": 1, - "libraries": 1, - "on": 1, - "ops": 1, - "overview": 1, - "platform": 1, - "possible": 1, - "provide": 1, - "rapids": 3, - "rsn": 1, - "september": 1, - "status": 1, - "support": 3, - "supporting": 1, - "the": 1, - "to": 2, - "topic": 1, - "updated": 1, - "use": 1, - "users": 1, - "v21": 6, - "version": 1, - "we": 1 - } - }, - "/notices/rsn0011/": { - "headings": [ - "rsn 11 - minimum driver requirement for cuda 11.0 in v21.12", - "overview", - "impact" - ], - "words": { - "0": 2, - "02": 2, - "11": 3, - "12": 3, - "2021": 1, - "450": 2, - "80": 2, - "a": 1, - "are": 1, - "author": 1, - "change": 1, - "compatibility": 1, - "completed": 1, - "continue": 1, - "created": 1, - "cuda": 3, - "driver": 3, - "enhanced": 1, - "for": 2, - "future": 1, - "impact": 1, - "in": 3, - "increasing": 1, - "minimum": 2, - "n": 1, - "newer": 1, - "october": 1, - "or": 1, - "order": 1, - "overview": 1, - "platform": 1, - "rapids": 4, - "requirement": 1, - "rsn": 1, - "should": 1, - "status": 1, - "support": 2, - "the": 2, - "their": 1, - "to": 4, - "topic": 1, - "tpm": 1, - "updated": 1, - "upgrade": 1, - "users": 1, - "using": 1, - "v21": 2, - "version": 2, - "we": 1 - } - }, - "/notices/rsn0012/": { - "headings": [ - "rsn 12 - sql migration in v21.12", - "overview", - "impact" - ], - "words": { - "12": 5, - "13": 1, - "17": 1, - "2021": 1, - "2022": 1, - "21": 2, - "a": 2, - "author": 1, - "based": 2, - "blazingsql": 1, - "change": 1, - "completed": 1, - "contain": 1, - "created": 1, - "dask": 2, - "february": 1, - "for": 1, - "from": 1, - "impact": 1, - "in": 2, - "its": 1, - "migration": 3, - "october": 1, - "of": 1, - "overview": 1, - "path": 2, - "platform": 1, - "preview": 2, - "rapids": 4, - "rsn": 1, - "sql": 3, - "status": 1, - "support": 1, - "to": 2, - "topic": 1, - "tpm": 1, - "updated": 1, - "use": 1, - "users": 1, - "v21": 2, - "version": 1, - "will": 2, - "with": 1 - } - }, - "/notices/rsn0013/": { - "headings": [ - "rsn 13 - deprecation announcement for python v3.7 in v21.12", - "overview", - "impact" - ], - "words": { - "03": 1, - "12": 4, - "13": 1, - "16": 1, - "2021": 2, - "2022": 1, - "3": 4, - "7": 3, - "8": 1, - "9": 1, - "additional": 1, - "after": 1, - "announcement": 1, - "any": 1, - "as": 3, - "at": 1, - "author": 1, - "available": 1, - "be": 3, - "become": 1, - "being": 1, - "change": 1, - "completed": 1, - "created": 1, - "december": 1, - "deprecated": 1, - "deprecation": 1, - "details": 1, - "dropped": 1, - "expect": 1, - "february": 1, - "for": 4, - "further": 1, - "future": 1, - "impact": 1, - "in": 3, - "is": 1, - "may": 1, - "move": 1, - "notices": 1, - "november": 1, - "of": 2, - "on": 1, - "our": 1, - "overview": 1, - "plan": 1, - "platform": 1, - "point": 1, - "possible": 1, - "python": 5, - "rapids": 2, - "release": 2, - "releases": 1, - "rsn": 2, - "scheduled": 1, - "shared": 1, - "should": 2, - "soon": 1, - "status": 1, - "support": 3, - "that": 1, - "the": 1, - "they": 1, - "to": 2, - "topic": 1, - "tpm": 1, - "upcoming": 2, - "updated": 1, - "users": 2, - "v21": 4, - "v3": 1, - "version": 2, - "will": 2, - "worked": 1 - } - }, - "/notices/rsn0014/": { - "headings": [ - "rsn 14 - eol python 3.7 in v22.02", - "overview", - "status", - "release support - v22.02", - "nightly support - v22.04", - "documentation", - "impact" - ], - "words": { - "02": 8, - "03": 2, - "04": 2, - "05": 1, - "14": 1, - "2022": 2, - "2023": 1, - "3": 6, - "7": 4, - "8": 1, - "9": 1, - "ai": 1, - "and": 3, - "author": 1, - "available": 1, - "be": 2, - "change": 1, - "changes": 1, - "completed": 1, - "conda": 2, - "created": 1, - "docker": 3, - "documentation": 1, - "end": 1, - "ended": 1, - "eol": 3, - "february": 1, - "final": 1, - "for": 2, - "further": 1, - "has": 1, - "hub": 1, - "images": 2, - "impact": 1, - "in": 3, - "includes": 1, - "install": 1, - "life": 1, - "migrate": 1, - "ngc": 1, - "nightly": 2, - "no": 1, - "nor": 1, - "not": 1, - "of": 3, - "on": 1, - "options": 1, - "or": 3, - "overview": 1, - "packages": 2, - "platform": 1, - "python": 6, - "rapids": 5, - "reached": 1, - "reflect": 1, - "reflected": 1, - "release": 6, - "repos": 1, - "rsn": 1, - "selector": 1, - "september": 1, - "should": 1, - "stable": 1, - "status": 2, - "support": 4, - "supported": 2, - "supporting": 1, - "the": 3, - "this": 1, - "to": 3, - "topic": 1, - "tpm": 1, - "upcoming": 1, - "updated": 2, - "updates": 1, - "users": 1, - "v22": 9, - "version": 1, - "which": 1, - "will": 2, - "with": 1 - } - }, - "/notices/rsn0015/": { - "headings": [ - "rsn 15 - support for python 3.9 in v22.02", - "overview", - "status", - "impact" - ], - "words": { - "02": 3, - "04": 3, - "05": 1, - "14": 1, - "15": 1, - "2022": 2, - "2023": 1, - "3": 4, - "7": 1, - "9": 3, - "and": 4, - "announced": 1, - "any": 1, - "are": 1, - "author": 1, - "been": 1, - "both": 1, - "builds": 1, - "change": 1, - "completed": 1, - "conda": 2, - "created": 1, - "development": 1, - "docker": 2, - "effort": 1, - "encouraged": 1, - "eol": 1, - "feb": 1, - "february": 1, - "for": 2, - "has": 1, - "impact": 1, - "in": 4, - "issues": 1, - "nightly": 3, - "of": 1, - "on": 1, - "ops": 1, - "overview": 1, - "platform": 1, - "python": 4, - "rapids": 2, - "redirected": 1, - "releases": 1, - "report": 1, - "repos": 1, - "respective": 1, - "rsn": 2, - "september": 1, - "stable": 1, - "started": 1, - "status": 2, - "support": 4, - "test": 1, - "the": 1, - "their": 1, - "to": 2, - "topic": 1, - "updated": 1, - "users": 1, - "v22": 4, - "version": 1, - "with": 1 - } - }, - "/notices/rsn0016/": { - "headings": [ - "rsn 16 - support for arm sbsa in v22.04", - "overview", - "status", - "impact" - ], - "words": { - "04": 3, - "05": 1, - "08": 1, - "15": 1, - "16": 1, - "2022": 2, - "2023": 1, - "able": 1, - "and": 5, - "announcing": 1, - "any": 1, - "apr": 1, - "april": 1, - "are": 1, - "arm": 4, - "author": 1, - "be": 1, - "blog": 1, - "both": 1, - "builds": 1, - "change": 1, - "channels": 1, - "completed": 1, - "conda": 3, - "created": 1, - "details": 1, - "docker": 3, - "does": 1, - "encouraged": 1, - "extend": 1, - "for": 3, - "impact": 1, - "in": 3, - "install": 1, - "installation": 1, - "issues": 1, - "jetson": 1, - "nightly": 2, - "not": 1, - "nvidia": 1, - "of": 1, - "on": 1, - "ops": 1, - "our": 2, - "overview": 1, - "platform": 1, - "products": 1, - "rapids": 3, - "release": 1, - "report": 1, - "repos": 1, - "respective": 1, - "rsn": 1, - "s": 1, - "sbsa": 3, - "see": 1, - "september": 1, - "stable": 1, - "started": 1, - "status": 2, - "support": 5, - "test": 1, - "their": 1, - "this": 1, - "to": 3, - "topic": 1, - "updated": 1, - "users": 2, - "v22": 3, - "version": 1, - "via": 1, - "will": 1, - "yet": 1 - } - }, - "/notices/rsn0017/": { - "headings": [ - "rsn 17 - deprecation announcement for cuda 11.0 in v22.06", - "overview", - "impact" - ], - "words": { - "0": 3, - "02": 1, - "06": 4, - "08": 1, - "11": 5, - "17": 1, - "2": 1, - "2022": 2, - "80": 1, - "a": 1, - "additional": 1, - "advantage": 1, - "after": 1, - "announcement": 1, - "any": 1, - "are": 1, - "as": 3, - "at": 1, - "author": 1, - "available": 1, - "be": 3, - "become": 1, - "being": 1, - "capability": 1, - "change": 1, - "compatibility": 1, - "completed": 1, - "created": 1, - "cuda": 6, - "deprecated": 1, - "deprecation": 1, - "details": 1, - "driver": 1, - "dropped": 1, - "enhanced": 1, - "expect": 1, - "for": 4, - "further": 1, - "future": 1, - "higher": 1, - "impact": 1, - "in": 3, - "june": 2, - "may": 1, - "move": 1, - "n": 1, - "notices": 1, - "of": 3, - "on": 1, - "ops": 1, - "or": 2, - "our": 1, - "overview": 1, - "plan": 1, - "platform": 1, - "point": 1, - "possible": 1, - "r450": 1, - "rapids": 2, - "release": 2, - "releases": 1, - "rsn": 2, - "scheduled": 1, - "shared": 1, - "should": 2, - "soon": 1, - "status": 1, - "support": 3, - "take": 1, - "that": 1, - "the": 2, - "their": 1, - "they": 1, - "to": 4, - "topic": 1, - "upcoming": 2, - "update": 1, - "updated": 1, - "users": 2, - "v22": 4, - "version": 1, - "versions": 1, - "will": 2, - "worked": 1, - "x": 1 - } - }, - "/notices/rsn0018/": { - "headings": [ - "rsn 18 - support for rocky 8.6 in v22.08", - "overview", - "impact" - ], - "words": { - "05": 1, - "08": 6, - "10": 1, - "18": 1, - "2022": 1, - "2023": 1, - "6": 5, - "8": 7, - "and": 1, - "are": 1, - "as": 1, - "author": 1, - "begin": 2, - "centos": 2, - "change": 1, - "completed": 1, - "created": 1, - "develop": 1, - "development": 1, - "distributions": 1, - "effort": 1, - "encouraged": 1, - "expected": 1, - "experimental": 1, - "feedback": 1, - "for": 4, - "future": 1, - "ga": 1, - "if": 1, - "impact": 1, - "in": 3, - "is": 1, - "june": 1, - "libraries": 1, - "migrate": 1, - "nightlies": 1, - "ops": 1, - "os": 1, - "overview": 1, - "platform": 1, - "possible": 1, - "provide": 1, - "rapids": 4, - "releases": 1, - "replace": 1, - "rocky": 5, - "rsn": 1, - "september": 1, - "stable": 1, - "status": 1, - "support": 4, - "supporting": 1, - "the": 2, - "to": 3, - "topic": 1, - "updated": 1, - "users": 1, - "v22": 6, - "version": 1, - "we": 1, - "will": 3 - } - }, - "/notices/rsn0019/": { - "headings": [ - "rsn 19 - stop supporting centos 8 in v22.08", - "overview", - "status", - "impact" - ], - "words": { - "04": 2, - "05": 1, - "06": 2, - "08": 3, - "18": 1, - "19": 1, - "20": 1, - "2022": 1, - "2023": 1, - "6": 2, - "7": 1, - "8": 8, - "additionally": 1, - "any": 2, - "at": 1, - "author": 1, - "be": 1, - "builds": 1, - "built": 1, - "centos": 7, - "change": 1, - "completed": 1, - "consider": 1, - "container": 1, - "converted": 1, - "cpu": 1, - "created": 1, - "end": 1, - "ended": 1, - "following": 2, - "for": 1, - "gpuci": 1, - "has": 1, - "images": 1, - "impact": 1, - "in": 1, - "instead": 1, - "is": 2, - "june": 1, - "last": 1, - "life": 1, - "longer": 1, - "means": 1, - "no": 1, - "now": 1, - "of": 3, - "on": 1, - "ops": 1, - "oses": 1, - "over": 1, - "overview": 1, - "platform": 1, - "publish": 1, - "rapids": 5, - "release": 1, - "rocky": 2, - "rsn": 1, - "september": 1, - "should": 1, - "status": 2, - "stop": 1, - "support": 3, - "supporting": 1, - "switching": 1, - "the": 3, - "to": 3, - "topic": 1, - "ubuntu": 2, - "updated": 1, - "use": 1, - "users": 1, - "v22": 4, - "version": 2, - "which": 1, - "will": 2 - } - }, - "/notices/rsn0020/": { - "headings": [ - "rsn 20 - please pin cuda-python to 11.7.0", - "overview", - "status", - "impact" - ], - "words": { - "0": 7, - "01": 2, - "02": 4, - "04": 2, - "05": 1, - "06": 8, - "1": 5, - "11": 9, - "14": 1, - "15": 2, - "16": 1, - "2": 1, - "20": 2, - "2022": 1, - "2023": 1, - "22": 4, - "4cuda": 2, - "5": 1, - "7": 9, - "7ccudart": 2, - "9": 5, - "additional": 1, - "affected": 2, - "affects": 1, - "after": 1, - "also": 2, - "an": 3, - "and": 6, - "attempt": 1, - "author": 1, - "automatically": 1, - "aware": 1, - "be": 1, - "become": 1, - "being": 1, - "buffer": 3, - "by": 1, - "c": 2, - "call": 1, - "can": 3, - "ccudart": 1, - "change": 1, - "changes": 1, - "command": 1, - "completed": 1, - "conda": 10, - "created": 1, - "cuda": 12, - "cudaerror": 2, - "cudastream": 2, - "cudastreamsynchronize": 1, - "cudf": 2, - "current": 1, - "currently": 1, - "depend": 1, - "depending": 1, - "device": 3, - "devicebuffer": 1, - "docker": 1, - "doing": 1, - "during": 1, - "easy": 1, - "error": 1, - "example": 1, - "existing": 1, - "expected": 1, - "file": 7, - "from": 4, - "function": 1, - "got": 1, - "gpu": 2, - "grab": 1, - "has": 2, - "have": 2, - "if": 2, - "impact": 1, - "impacts": 1, - "import": 4, - "in": 11, - "incompatible": 1, - "incorporated": 1, - "init": 4, - "install": 4, - "installation": 3, - "installations": 1, - "installing": 1, - "installs": 1, - "issue": 3, - "it": 3, - "july": 1, - "last": 1, - "legacy": 1, - "lib": 8, - "line": 7, - "made": 1, - "makes": 1, - "may": 1, - "memory": 1, - "module": 5, - "most": 1, - "mr": 2, - "need": 1, - "not": 1, - "nvidia": 1, - "of": 4, - "offer": 1, - "older": 1, - "on": 2, - "ops": 1, - "opt": 5, - "or": 3, - "our": 1, - "overview": 1, - "packages": 7, - "path": 2, - "paths": 1, - "pin": 5, - "platform": 1, - "please": 1, - "potentially": 1, - "py": 5, - "python": 10, - "python3": 5, - "pyx": 3, - "rapids": 9, - "recent": 1, - "recently": 1, - "release": 1, - "rerun": 1, - "resolution": 3, - "resource": 1, - "result": 1, - "results": 1, - "rmm": 7, - "rsn": 1, - "script": 1, - "selector": 1, - "september": 1, - "setup": 2, - "should": 1, - "signature": 1, - "simply": 1, - "site": 5, - "status": 2, - "stdin": 1, - "support": 1, - "t": 6, - "that": 3, - "the": 2, - "these": 1, - "this": 3, - "through": 1, - "thrown": 1, - "to": 11, - "topic": 1, - "traceback": 1, - "try": 1, - "two": 1, - "typeerror": 1, - "update": 1, - "updated": 1, - "upgrade": 4, - "use": 1, - "user": 1, - "users": 2, - "using": 1, - "utils": 2, - "v22": 10, - "validate": 2, - "ve": 1, - "version": 2, - "versions": 3, - "via": 1, - "we": 3, - "when": 2, - "which": 1, - "will": 2, - "with": 2, - "wrong": 1, - "you": 6, - "your": 1 - } - }, - "/notices/rsn0021/": { - "headings": [ - "rsn 21 - eol for cuda 11.0 in v22.10", - "overview", - "impact" - ], - "words": { - "0": 2, - "05": 2, - "10": 6, - "11": 5, - "12": 1, - "13": 1, - "2": 1, - "2022": 2, - "2023": 1, - "21": 1, - "4": 1, - "5": 1, - "and": 1, - "author": 1, - "be": 1, - "change": 1, - "completed": 1, - "created": 1, - "cuda": 3, - "end": 1, - "ended": 1, - "eol": 2, - "for": 2, - "impact": 1, - "in": 3, - "includes": 1, - "is": 1, - "life": 1, - "migrate": 1, - "nightly": 1, - "nor": 1, - "not": 1, - "now": 1, - "october": 1, - "of": 2, - "on": 1, - "ops": 1, - "or": 1, - "overview": 1, - "platform": 1, - "rapids": 4, - "release": 2, - "rsn": 1, - "september": 1, - "should": 1, - "stable": 1, - "status": 1, - "support": 2, - "supported": 1, - "the": 2, - "this": 1, - "to": 1, - "topic": 1, - "upcoming": 1, - "updated": 1, - "users": 1, - "v22": 6, - "version": 1, - "which": 1, - "will": 1 - } - }, - "/notices/rsn0022/": { - "headings": [ - "rsn 22 - deprecation announcement for python v3.9 in v22.12", - "overview", - "impact" - ], - "words": { - "02": 1, - "05": 1, - "10": 1, - "12": 4, - "2022": 2, - "2023": 1, - "21": 1, - "22": 1, - "23": 2, - "3": 4, - "8": 1, - "9": 3, - "a": 1, - "after": 1, - "and": 1, - "announcement": 1, - "any": 1, - "as": 2, - "at": 1, - "author": 1, - "be": 2, - "being": 2, - "change": 1, - "completed": 1, - "created": 1, - "december": 1, - "deprecated": 1, - "deprecation": 1, - "dropped": 1, - "expect": 1, - "for": 6, - "impact": 1, - "in": 2, - "is": 2, - "maintained": 1, - "may": 1, - "move": 1, - "november": 1, - "of": 1, - "our": 1, - "overview": 1, - "plan": 1, - "platform": 1, - "point": 1, - "possible": 1, - "python": 6, - "rapids": 3, - "release": 2, - "rsn": 2, - "scheduled": 1, - "see": 1, - "september": 1, - "should": 2, - "soon": 1, - "status": 1, - "support": 4, - "supported": 1, - "targeted": 1, - "that": 1, - "the": 1, - "to": 2, - "topic": 1, - "tpm": 1, - "upcoming": 1, - "updated": 1, - "users": 2, - "v22": 4, - "v3": 1, - "version": 2, - "will": 1 - } - }, - "/notices/rsn0023/": { - "headings": [ - "rsn 23 - support for python 3.10 in v23.02", - "overview", - "impact" - ], - "words": { - "02": 2, - "05": 1, - "10": 2, - "12": 1, - "2022": 1, - "2023": 1, - "21": 1, - "22": 1, - "23": 1, - "3": 3, - "9": 1, - "and": 2, - "announced": 1, - "any": 1, - "are": 1, - "author": 1, - "been": 1, - "builds": 1, - "change": 1, - "completed": 1, - "conda": 1, - "created": 1, - "deprecation": 1, - "development": 1, - "docker": 1, - "effort": 1, - "encouraged": 1, - "for": 1, - "has": 1, - "impact": 1, - "in": 4, - "issues": 1, - "nightly": 2, - "november": 1, - "of": 1, - "ops": 1, - "overview": 1, - "platform": 1, - "python": 3, - "rapids": 2, - "redirected": 1, - "releases": 1, - "report": 1, - "repos": 1, - "respective": 1, - "rsn": 2, - "september": 1, - "status": 1, - "support": 3, - "test": 1, - "the": 1, - "their": 1, - "to": 2, - "topic": 1, - "updated": 1, - "users": 1, - "v22": 1, - "v23": 2, - "version": 1, - "with": 1 - } - }, - "/notices/rsn0024/": { - "headings": [ - "rsn 24 - deprecation announcement for ubuntu 18.04 in v22.12", - "overview", - "impact" - ], - "words": { - "02": 1, - "04": 5, - "05": 1, - "12": 4, - "18": 3, - "20": 1, - "2022": 2, - "2023": 1, - "21": 1, - "22": 1, - "23": 1, - "24": 1, - "25": 1, - "7": 1, - "8": 1, - "after": 1, - "announcement": 1, - "any": 3, - "at": 1, - "author": 1, - "be": 2, - "centos": 1, - "change": 1, - "completed": 1, - "consider": 1, - "created": 1, - "december": 1, - "deprecated": 1, - "deprecation": 1, - "dropped": 1, - "expect": 1, - "following": 1, - "for": 5, - "image": 1, - "impact": 1, - "in": 2, - "linux": 1, - "may": 1, - "november": 1, - "of": 2, - "operating": 1, - "ops": 1, - "our": 1, - "overview": 1, - "platform": 1, - "point": 1, - "rapids": 3, - "rapidsai": 2, - "release": 2, - "rocky": 1, - "rsn": 2, - "scheduled": 1, - "see": 1, - "september": 1, - "should": 2, - "status": 1, - "support": 3, - "supported": 1, - "switching": 1, - "systems": 1, - "targeted": 1, - "that": 1, - "the": 2, - "to": 1, - "topic": 1, - "ubuntu": 5, - "upcoming": 1, - "updated": 1, - "users": 2, - "v22": 4, - "version": 1, - "will": 1 - } - }, - "/notices/rsn0025/": { - "headings": [ - "rsn 25 - support for ubuntu 22.04 in v23.02", - "overview", - "impact" - ], - "words": { - "02": 3, - "04": 5, - "05": 1, - "12": 1, - "18": 2, - "2022": 1, - "2023": 1, - "21": 1, - "22": 3, - "25": 1, - "a": 1, - "are": 1, - "as": 2, - "author": 1, - "begin": 1, - "change": 1, - "completed": 1, - "created": 1, - "distributions": 1, - "encouraged": 1, - "experimental": 1, - "for": 3, - "future": 1, - "ga": 1, - "impact": 1, - "in": 3, - "is": 1, - "its": 1, - "migrate": 1, - "nightlies": 1, - "november": 1, - "of": 1, - "ops": 1, - "os": 1, - "overview": 1, - "planning": 1, - "platform": 1, - "possible": 1, - "rapids": 4, - "release": 1, - "releases": 1, - "replace": 1, - "rsn": 1, - "september": 1, - "soon": 1, - "status": 1, - "support": 4, - "supported": 1, - "the": 1, - "to": 2, - "topic": 1, - "ubuntu": 6, - "updated": 1, - "users": 1, - "v22": 1, - "v23": 3, - "version": 2, - "will": 2 - } - }, - "/notices/rsn0026/": { - "headings": [ - "rsn 26 - support for 22.10 cuml/cugraph users", - "overview", - "example", - "impact", - "background" - ], - "words": { - "05": 1, - "1": 2, - "10": 8, - "11": 3, - "12": 4, - "14": 1, - "2022": 1, - "2023": 1, - "22": 8, - "26": 1, - "3": 1, - "4": 2, - "48": 2, - "5": 1, - "8": 1, - "above": 1, - "add": 1, - "and": 5, - "applied": 1, - "as": 1, - "author": 1, - "background": 1, - "be": 1, - "beyond": 1, - "by": 1, - "c": 3, - "cannot": 1, - "change": 1, - "commands": 1, - "compatible": 1, - "completed": 1, - "conda": 5, - "create": 1, - "created": 1, - "cudatoolkit": 1, - "cugraph": 7, - "cuml": 6, - "december": 1, - "default": 1, - "depend": 1, - "dependencies": 2, - "directory": 1, - "error": 1, - "errors": 1, - "example": 1, - "file": 2, - "for": 3, - "forge": 1, - "have": 1, - "impact": 2, - "in": 2, - "incompatibilities": 1, - "install": 2, - "installing": 3, - "introduced": 1, - "is": 2, - "libcusolver": 2, - "libcusparse": 2, - "libnvjitlink": 1, - "libraries": 1, - "limited": 1, - "loading": 1, - "n": 1, - "need": 1, - "needed": 1, - "newer": 1, - "no": 1, - "not": 1, - "nvidia": 1, - "object": 1, - "of": 2, - "on": 1, - "only": 1, - "open": 1, - "ops": 1, - "or": 3, - "order": 1, - "overview": 1, - "packages": 1, - "platform": 1, - "python": 1, - "rapids": 7, - "rapidsai": 1, - "release": 1, - "releases": 1, - "restrict": 1, - "result": 1, - "rsn": 1, - "runtime": 1, - "september": 1, - "shared": 2, - "should": 1, - "since": 1, - "so": 1, - "some": 1, - "status": 1, - "such": 2, - "support": 2, - "that": 1, - "the": 2, - "these": 2, - "this": 1, - "to": 5, - "topic": 1, - "updated": 1, - "upgraded": 1, - "users": 3, - "v22": 1, - "version": 1, - "versions": 1, - "when": 1, - "which": 1, - "while": 1, - "will": 3, - "workaround": 2 - } - }, - "/notices/rsn0027/": { - "headings": [ - "rsn 27 - deprecation announcement for cuda 11.4 and 11.5 containers", - "overview", - "impact" - ], - "words": { - "04": 2, - "06": 2, - "08": 1, - "11": 8, - "17": 1, - "2023": 2, - "27": 1, - "4": 4, - "5": 4, - "a": 1, - "and": 4, - "announcement": 1, - "at": 1, - "august": 1, - "author": 1, - "be": 1, - "change": 1, - "compatibility": 1, - "completed": 1, - "conda": 1, - "containers": 6, - "created": 1, - "cuda": 8, - "currently": 2, - "deprecating": 1, - "deprecation": 1, - "due": 1, - "effective": 1, - "enhanced": 1, - "eol": 2, - "for": 1, - "future": 1, - "impact": 1, - "in": 1, - "is": 1, - "its": 1, - "longer": 2, - "march": 1, - "no": 2, - "note": 1, - "once": 1, - "ops": 1, - "overview": 1, - "packages": 1, - "plan": 1, - "platform": 1, - "point": 1, - "publish": 1, - "published": 1, - "rapids": 5, - "reach": 1, - "release": 3, - "rsn": 1, - "status": 1, - "still": 1, - "support": 2, - "targeting": 2, - "that": 1, - "these": 3, - "to": 2, - "topic": 1, - "updated": 1, - "v23": 4, - "version": 1, - "which": 1, - "will": 4 - } - }, - "/notices/rsn0028/": { - "headings": [ - "rsn 28 - deprecation announcement for clx rapids repository", - "overview", - "impact" - ], - "words": { - "04": 4, - "05": 1, - "06": 1, - "13": 1, - "17": 1, - "2023": 3, - "28": 1, - "after": 1, - "announcement": 1, - "april": 1, - "archived": 1, - "author": 1, - "be": 3, - "change": 1, - "clx": 4, - "com": 1, - "completed": 1, - "created": 1, - "deprecated": 1, - "deprecation": 1, - "during": 1, - "february": 1, - "final": 1, - "for": 2, - "functionality": 1, - "github": 1, - "https": 1, - "impact": 1, - "in": 1, - "includes": 1, - "may": 1, - "migrate": 1, - "morpheus": 3, - "much": 1, - "nv": 1, - "of": 3, - "ops": 1, - "our": 1, - "overview": 1, - "platform": 1, - "rapids": 5, - "release": 4, - "repository": 3, - "rsn": 1, - "scheduled": 1, - "september": 1, - "status": 1, - "support": 1, - "the": 3, - "this": 1, - "to": 2, - "topic": 1, - "upcoming": 1, - "updated": 1, - "users": 1, - "v23": 5, - "version": 1, - "which": 1, - "will": 3, - "wish": 1 - } - }, - "/notices/rsn0029/": { - "headings": [ - "rsn 29 - dropping python v3.8 in v23.06", - "overview", - "impact" - ], - "words": { - "06": 4, - "10": 2, - "17": 1, - "20": 1, - "2023": 3, - "29": 1, - "3": 6, - "8": 2, - "9": 3, - "a": 1, - "added": 1, - "and": 2, - "april": 1, - "as": 2, - "at": 1, - "august": 1, - "author": 1, - "be": 2, - "change": 1, - "completed": 1, - "created": 1, - "dropped": 1, - "dropping": 1, - "for": 1, - "impact": 1, - "in": 2, - "june": 1, - "move": 1, - "of": 1, - "or": 1, - "overview": 1, - "plan": 1, - "platform": 1, - "possible": 1, - "python": 5, - "rapids": 2, - "release": 1, - "rsn": 1, - "same": 1, - "scheduled": 1, - "should": 1, - "so": 1, - "soon": 1, - "status": 1, - "support": 4, - "supported": 1, - "that": 1, - "the": 2, - "time": 1, - "to": 2, - "topic": 1, - "tpm": 1, - "upcoming": 1, - "updated": 1, - "users": 1, - "v23": 4, - "v3": 1, - "version": 2, - "will": 3 - } - }, - "/notices/rsn0030/": { - "headings": [ - "rsn 30 - docker image changes in release v23.08", - "overview", - "impact" - ], - "words": { - "08": 3, - "17": 1, - "20": 1, - "2023": 2, - "23": 1, - "30": 1, - "539": 1, - "above": 1, - "and": 1, - "april": 1, - "are": 1, - "as": 1, - "associated": 1, - "august": 1, - "author": 1, - "aware": 1, - "be": 2, - "breaking": 2, - "change": 1, - "changes": 5, - "com": 1, - "completed": 1, - "created": 1, - "docker": 3, - "end": 1, - "full": 1, - "functionality": 1, - "github": 1, - "has": 1, - "https": 1, - "image": 1, - "images": 1, - "impact": 1, - "improve": 1, - "in": 2, - "issue": 1, - "issues": 1, - "list": 1, - "made": 1, - "maintainability": 1, - "many": 1, - "noted": 1, - "of": 4, - "overview": 1, - "particularly": 1, - "performance": 1, - "platform": 1, - "rapids": 3, - "rapidsai": 1, - "release": 2, - "review": 1, - "rsn": 1, - "seamless": 1, - "should": 3, - "some": 1, - "status": 1, - "support": 1, - "the": 4, - "them": 1, - "these": 1, - "to": 3, - "topic": 1, - "tpm": 1, - "updated": 1, - "user": 1, - "users": 3, - "v23": 2, - "version": 1, - "while": 1 - } - }, - "/notices/rsn0031/": { - "headings": [ - "rsn 31 - cuda 12 pip wheels release in v23.06", - "overview", - "impact" - ], - "words": { - "06": 3, - "11": 1, - "12": 4, - "16": 1, - "17": 1, - "2023": 2, - "31": 1, - "a": 2, - "above": 1, - "are": 3, - "as": 1, - "august": 1, - "author": 1, - "aware": 1, - "be": 1, - "build": 1, - "building": 2, - "change": 1, - "completed": 1, - "created": 1, - "cu11": 1, - "cu12": 1, - "cuda": 5, - "cudf": 1, - "cugraph": 1, - "cuml": 1, - "cuopt": 1, - "distinguish": 1, - "from": 1, - "have": 1, - "impact": 1, - "in": 2, - "may": 1, - "named": 1, - "noted": 1, - "now": 2, - "overview": 1, - "packages": 2, - "pip": 4, - "plan": 1, - "platform": 1, - "py": 1, - "raft": 1, - "rapids": 3, - "release": 3, - "rmm": 1, - "rsn": 1, - "should": 1, - "status": 1, - "suffix": 2, - "support": 3, - "that": 1, - "them": 1, - "these": 1, - "to": 2, - "topic": 1, - "tpm": 1, - "ucx": 1, - "updated": 1, - "users": 1, - "v23": 3, - "version": 1, - "we": 2, - "wheels": 6, - "which": 1, - "with": 3 - } - }, - "/notices/rsn0032/": { - "headings": [ - "rsn 32 - deprecation announcement for cusignal", - "overview", - "impact" - ], - "words": { - "08": 3, - "10": 2, - "17": 1, - "2023": 3, - "26": 1, - "3": 1, - "32": 1, - "4": 1, - "after": 1, - "and": 1, - "announcement": 1, - "archived": 1, - "are": 1, - "as": 1, - "august": 2, - "author": 1, - "be": 2, - "change": 1, - "com": 1, - "completed": 1, - "created": 1, - "cupy": 4, - "cusignal": 4, - "cycle": 1, - "deprecated": 1, - "deprecation": 1, - "development": 1, - "during": 1, - "final": 1, - "for": 2, - "functionality": 1, - "github": 1, - "https": 1, - "impact": 1, - "in": 1, - "include": 1, - "integrating": 1, - "into": 1, - "is": 1, - "may": 1, - "migrate": 1, - "months": 1, - "of": 1, - "ops": 1, - "overview": 1, - "platform": 1, - "prepare": 1, - "rapids": 4, - "release": 3, - "repository": 3, - "rsn": 1, - "scheduled": 1, - "should": 1, - "status": 1, - "support": 1, - "targeting": 1, - "tentatively": 1, - "the": 6, - "this": 1, - "to": 3, - "topic": 1, - "updated": 1, - "users": 1, - "v23": 4, - "version": 1, - "we": 1, - "which": 1, - "will": 3 - } - }, - "/notices/rsn0033/": { - "headings": [ - "rsn 33 - dropping support for ubuntu 20.04 arm64 containers in release v23.06", - "overview", - "impact" - ], - "words": { - "04": 4, - "06": 2, - "14": 1, - "17": 1, - "1722181": 1, - "2": 1, - "20": 1, - "2023": 2, - "23": 1, - "31": 1, - "33": 1, - "551": 1, - "64": 1, - "a": 1, - "affected": 1, - "are": 2, - "arm64": 3, - "as": 2, - "august": 1, - "author": 1, - "be": 1, - "bug": 2, - "bugzilla": 1, - "cgi": 1, - "change": 1, - "com": 2, - "completed": 1, - "containers": 3, - "created": 1, - "current": 1, - "details": 1, - "docker": 1, - "dropping": 1, - "due": 1, - "effective": 1, - "for": 1, - "found": 1, - "github": 1, - "glibc": 1, - "https": 2, - "id": 1, - "impact": 1, - "in": 3, - "issue": 1, - "june": 1, - "may": 1, - "migrate": 1, - "more": 1, - "no": 1, - "not": 1, - "ops": 1, - "overview": 1, - "platform": 1, - "possible": 1, - "publish": 1, - "pull": 1, - "rapids": 3, - "rapidsai": 1, - "redhat": 1, - "release": 2, - "rsn": 1, - "should": 1, - "show": 1, - "soon": 1, - "status": 1, - "support": 2, - "the": 1, - "to": 3, - "topic": 1, - "tracking": 1, - "ubuntu": 1, - "ubuntu20": 1, - "ubuntu22": 1, - "unable": 1, - "updated": 1, - "users": 1, - "v23": 2, - "version": 1, - "we": 1, - "with": 1, - "workaround": 1, - "x86": 1 - } - }, - "/notices/rsn0034/": { - "headings": [ - "rsn 34 - deprecation announcement for pascal gpu support in release v23.12", - "overview", - "impact" - ], - "words": { - "0": 1, - "02": 2, - "04": 1, - "12": 5, - "13": 1, - "2023": 1, - "2024": 1, - "34": 1, - "7": 1, - "and": 1, - "announcement": 1, - "author": 1, - "be": 2, - "capability": 1, - "change": 1, - "completed": 1, - "compute": 1, - "created": 1, - "deprecate": 1, - "deprecation": 1, - "effective": 1, - "february": 1, - "for": 3, - "gpu": 1, - "gpus": 5, - "higher": 1, - "impact": 1, - "in": 3, - "is": 2, - "its": 2, - "last": 2, - "longer": 1, - "no": 1, - "october": 1, - "of": 1, - "ops": 1, - "or": 1, - "overview": 1, - "pascal": 5, - "planning": 1, - "platform": 1, - "rapids": 7, - "release": 5, - "remove": 1, - "required": 1, - "rsn": 1, - "status": 1, - "support": 7, - "team": 1, - "the": 2, - "to": 3, - "topic": 1, - "updated": 1, - "v23": 5, - "v24": 2, - "version": 2, - "will": 3, - "with": 2 - } - }, - "/notices/rsn0035/": { - "headings": [ - "rsn 35 - deprecation announcement dropping cuda 11.2 support in our docker images in release v23.12", - "overview", - "impact" - ], - "words": { - "0": 1, - "02": 2, - "05": 1, - "11": 8, - "12": 6, - "13": 1, - "2": 6, - "2023": 1, - "2024": 1, - "35": 1, - "8": 1, - "and": 2, - "announcement": 1, - "author": 1, - "be": 1, - "cease": 2, - "change": 1, - "completed": 1, - "conda": 1, - "containers": 5, - "continue": 2, - "created": 1, - "cuda": 8, - "deprecate": 1, - "deprecation": 1, - "distribute": 2, - "distribution": 1, - "docker": 5, - "dropping": 1, - "effective": 1, - "february": 1, - "for": 1, - "images": 1, - "impact": 1, - "in": 5, - "installation": 1, - "is": 1, - "its": 1, - "last": 1, - "may": 1, - "october": 1, - "of": 2, - "ops": 1, - "or": 2, - "other": 1, - "our": 1, - "overview": 1, - "planning": 1, - "platform": 1, - "publishing": 1, - "rapids": 8, - "release": 4, - "rsn": 1, - "series": 1, - "status": 1, - "still": 1, - "support": 3, - "the": 3, - "to": 6, - "topic": 1, - "updated": 1, - "use": 2, - "users": 1, - "v23": 4, - "v24": 2, - "version": 2, - "versions": 1, - "via": 1, - "who": 1, - "will": 3, - "wish": 1, - "x": 2 - } - }, - "/notices/rsn0036/": { - "headings": [ - "rsn 36 - support for pandas 2 in release v24.04", - "overview", - "impact" - ], - "words": { - "0": 2, - "02": 2, - "04": 4, - "06": 1, - "1": 1, - "11": 1, - "17": 1, - "2": 3, - "2023": 1, - "2024": 3, - "24": 1, - "36": 1, - "8": 1, - "and": 2, - "april": 1, - "author": 1, - "be": 2, - "change": 1, - "completed": 1, - "created": 1, - "december": 1, - "deprecated": 1, - "effective": 1, - "february": 1, - "for": 4, - "impact": 1, - "in": 3, - "later": 1, - "minimum": 1, - "move": 1, - "october": 1, - "of": 2, - "overview": 1, - "pandas": 5, - "plan": 1, - "platform": 1, - "rapids": 3, - "release": 2, - "removed": 1, - "rsn": 1, - "scheduled": 2, - "series": 1, - "should": 1, - "status": 1, - "support": 3, - "supported": 1, - "the": 2, - "to": 2, - "topic": 1, - "tpm": 1, - "upcoming": 1, - "updated": 1, - "users": 1, - "v24": 5, - "version": 2, - "will": 2, - "x": 1 - } - }, - "/notices/rsn0037/": { - "headings": [ - "rsn 37 - deprecation of centos 7 in v24.04", - "overview", - "impact" - ], - "words": { - "04": 6, - "06": 1, - "14": 1, - "17": 1, - "20": 1, - "2024": 3, - "22": 1, - "37": 1, - "7": 4, - "8": 1, - "and": 1, - "any": 3, - "author": 1, - "be": 1, - "becoming": 1, - "built": 1, - "centos": 4, - "change": 1, - "completed": 1, - "consider": 1, - "created": 1, - "deprecating": 1, - "deprecation": 1, - "due": 1, - "end": 1, - "february": 1, - "following": 2, - "for": 1, - "image": 1, - "images": 1, - "impact": 1, - "in": 4, - "is": 2, - "it": 1, - "june": 1, - "life": 1, - "longer": 1, - "means": 1, - "no": 1, - "october": 1, - "of": 3, - "on": 1, - "operating": 1, - "ops": 1, - "overview": 1, - "platform": 1, - "publish": 1, - "rapids": 5, - "rapidsai": 2, - "release": 3, - "removed": 1, - "rocky": 1, - "rsn": 1, - "should": 1, - "status": 1, - "support": 1, - "supported": 1, - "switching": 1, - "systems": 1, - "the": 2, - "this": 1, - "to": 2, - "topic": 1, - "ubuntu": 2, - "updated": 1, - "users": 1, - "v24": 5, - "version": 1, - "which": 1, - "will": 2 - } - }, - "/notices/rsn0038/": { - "headings": [ - "rsn 38 - moving libcumlprims, libcugraphops, pylibcugraphops to the rapidsai channel", - "overview", - "impact" - ], - "words": { - "03": 1, - "06": 3, - "08": 1, - "10": 1, - "17": 1, - "2024": 2, - "24": 4, - "38": 1, - "added": 1, - "all": 1, - "already": 1, - "and": 6, - "are": 4, - "as": 1, - "author": 1, - "available": 3, - "aware": 1, - "be": 6, - "both": 1, - "c": 3, - "change": 2, - "channel": 11, - "channels": 1, - "completed": 1, - "conda": 3, - "continue": 1, - "correct": 1, - "created": 1, - "currently": 1, - "ensure": 2, - "except": 1, - "experience": 1, - "for": 4, - "forge": 1, - "from": 2, - "impact": 1, - "in": 1, - "installations": 1, - "installed": 1, - "is": 2, - "june": 1, - "libcugraphops": 4, - "libcumlprims": 4, - "most": 2, - "moved": 1, - "moving": 1, - "new": 1, - "nvidia": 3, - "october": 1, - "of": 1, - "on": 2, - "only": 1, - "ops": 1, - "overview": 1, - "packages": 7, - "platform": 1, - "priority": 1, - "published": 2, - "pylibcugraphops": 4, - "rapids": 7, - "rapidsai": 8, - "release": 1, - "required": 1, - "rsn": 1, - "same": 1, - "should": 2, - "simplify": 1, - "starting": 1, - "status": 1, - "support": 1, - "that": 3, - "the": 15, - "these": 2, - "this": 1, - "to": 8, - "topic": 1, - "unaffected": 1, - "unchanged": 1, - "updated": 1, - "updating": 1, - "use": 1, - "user": 1, - "users": 2, - "v24": 1, - "version": 1, - "which": 1, - "will": 6 - } - }, - "/notices/rsn0039/": { - "headings": [ - "rsn 39 - deprecation announcement dropping cuda 12.2 support in our docker images in release v24.08", - "overview", - "impact" - ], - "words": { - "0": 2, - "08": 4, - "10": 1, - "11": 3, - "12": 11, - "17": 1, - "2": 6, - "2024": 2, - "23": 1, - "39": 1, - "5": 2, - "8": 2, - "and": 3, - "announcement": 1, - "are": 1, - "author": 1, - "be": 1, - "before": 1, - "by": 1, - "cease": 2, - "change": 1, - "completed": 1, - "conda": 1, - "containers": 7, - "continue": 2, - "continuing": 1, - "created": 1, - "cuda": 10, - "deprecate": 1, - "deprecation": 1, - "distribution": 1, - "docker": 4, - "dropping": 1, - "effective": 1, - "for": 1, - "images": 1, - "impact": 1, - "in": 4, - "is": 1, - "july": 1, - "may": 1, - "october": 1, - "of": 2, - "ops": 1, - "or": 3, - "other": 1, - "our": 1, - "overview": 1, - "pip": 1, - "planning": 1, - "platform": 1, - "publishing": 1, - "rapids": 7, - "release": 4, - "replaced": 1, - "rsn": 1, - "series": 1, - "status": 1, - "still": 1, - "support": 5, - "the": 3, - "to": 5, - "topic": 1, - "updated": 1, - "use": 2, - "users": 1, - "v24": 5, - "version": 1, - "versions": 1, - "via": 1, - "we": 1, - "who": 1, - "will": 3, - "wish": 1, - "x": 2 - } - }, - "/notices/rsn0040/": { - "headings": [ - "rsn 40 - dropping support for python v3.9 and adding python 3.12 support in v24.10", - "overview", - "impact" - ], - "words": { - "06": 1, - "10": 7, - "11": 2, - "12": 4, - "17": 1, - "2024": 3, - "3": 9, - "40": 1, - "9": 2, - "a": 1, - "added": 1, - "adding": 1, - "and": 2, - "as": 2, - "at": 1, - "august": 1, - "author": 1, - "be": 1, - "change": 1, - "completed": 1, - "created": 1, - "dropping": 2, - "for": 3, - "impact": 1, - "in": 2, - "is": 1, - "move": 1, - "october": 2, - "of": 1, - "or": 1, - "overview": 1, - "plan": 1, - "platform": 1, - "possible": 1, - "python": 8, - "rapids": 3, - "release": 1, - "rsn": 1, - "same": 1, - "scheduled": 1, - "should": 1, - "so": 1, - "soon": 1, - "status": 1, - "support": 6, - "supported": 1, - "that": 1, - "the": 2, - "time": 1, - "to": 2, - "topic": 1, - "tpm": 1, - "upcoming": 1, - "updated": 1, - "users": 1, - "v24": 4, - "v3": 1, - "version": 2, - "will": 2 - } - }, - "/notices/rsn0041/": { - "headings": [ - "rsn 41 - removing cugraph-ops from rapids", - "overview", - "impact" - ], - "words": { - "02": 2, - "10": 1, - "2025": 1, - "25": 1, - "41": 1, - "a": 3, - "aggregation": 1, - "and": 2, - "as": 1, - "at": 1, - "author": 1, - "available": 1, - "be": 3, - "been": 2, - "bionemo": 1, - "by": 1, - "change": 1, - "code": 1, - "completed": 1, - "convolutional": 1, - "created": 1, - "cuequivariance": 1, - "cugraph": 6, - "destination": 1, - "dgl": 1, - "directly": 1, - "end": 1, - "equivariant": 1, - "from": 1, - "front": 1, - "gnn": 2, - "graph": 1, - "has": 1, - "have": 1, - "impact": 1, - "in": 2, - "including": 1, - "integrated": 1, - "into": 1, - "january": 1, - "later": 1, - "layers": 1, - "libcugraphops": 1, - "migrated": 1, - "modules": 1, - "n": 1, - "network": 1, - "neural": 1, - "new": 1, - "nn": 2, - "now": 1, - "ops": 3, - "overview": 1, - "package": 1, - "packages": 1, - "platform": 1, - "previously": 1, - "primitives": 2, - "pyg": 1, - "pylibcugraphops": 1, - "rapids": 4, - "reintroduced": 1, - "releasing": 1, - "relocated": 1, - "removed": 1, - "removing": 1, - "rsn": 1, - "sampling": 1, - "soon": 1, - "status": 1, - "stop": 1, - "support": 1, - "temporarily": 1, - "the": 7, - "they": 1, - "time": 1, - "to": 2, - "topic": 1, - "updated": 1, - "used": 1, - "v25": 1, - "version": 1, - "will": 4, - "with": 1 - } - }, - "/notices/rsn0042/": { - "headings": [ - "rsn 42 - rapids 25.02 replaces cuda 12.5 with cuda 12.8 in our docker images", - "overview", - "impact" - ], - "words": { - "0": 2, - "02": 5, - "03": 1, - "11": 3, - "12": 12, - "2025": 1, - "25": 1, - "42": 1, - "5": 6, - "8": 5, - "a": 1, - "and": 3, - "are": 1, - "author": 1, - "be": 1, - "before": 1, - "by": 1, - "cease": 2, - "change": 1, - "completed": 1, - "conda": 1, - "containers": 7, - "continue": 1, - "continuing": 1, - "created": 1, - "cuda": 11, - "distribution": 1, - "docker": 5, - "effective": 1, - "february": 1, - "for": 2, - "images": 1, - "impact": 1, - "in": 3, - "is": 1, - "may": 1, - "n": 1, - "of": 1, - "ops": 1, - "or": 3, - "other": 1, - "our": 1, - "overview": 1, - "pip": 1, - "platform": 1, - "publishing": 1, - "rapids": 8, - "release": 3, - "removing": 1, - "replaced": 1, - "replaces": 1, - "rsn": 1, - "series": 1, - "status": 1, - "still": 1, - "support": 4, - "the": 3, - "to": 2, - "topic": 1, - "updated": 1, - "use": 2, - "users": 1, - "v25": 4, - "version": 1, - "versions": 1, - "via": 1, - "we": 1, - "who": 1, - "will": 4, - "wish": 1, - "with": 1, - "x": 2 - } - }, - "/notices/rsn0043/": { - "headings": [ - "rsn 43 - deprecation of cuml-cpu in favor of cuml.accel", - "overview", - "impact" - ], - "words": { - "04": 4, - "2025": 1, - "25": 3, - "31": 1, - "43": 1, - "a": 1, - "accel": 5, - "acceleration": 4, - "action": 1, - "ai": 1, - "and": 1, - "are": 2, - "as": 1, - "at": 1, - "author": 1, - "be": 3, - "begin": 1, - "being": 1, - "but": 1, - "change": 2, - "code": 1, - "completed": 1, - "cpu": 9, - "created": 1, - "cuml": 12, - "deprecated": 2, - "deprecation": 2, - "efficient": 1, - "effort": 1, - "encouraged": 2, - "explore": 1, - "favor": 2, - "final": 2, - "find": 1, - "for": 4, - "immediate": 1, - "impact": 1, - "in": 2, - "information": 1, - "is": 3, - "layer": 1, - "library": 1, - "maintainable": 1, - "march": 1, - "migrate": 1, - "migration": 1, - "more": 2, - "n": 1, - "new": 2, - "no": 1, - "of": 7, - "ongoing": 1, - "ops": 1, - "overview": 1, - "package": 2, - "part": 1, - "planning": 1, - "provide": 1, - "rapids": 5, - "release": 2, - "required": 1, - "rsn": 1, - "s": 1, - "should": 1, - "solution": 1, - "solutions": 1, - "starting": 1, - "status": 1, - "the": 4, - "their": 1, - "this": 1, - "to": 4, - "topic": 1, - "updated": 1, - "users": 3, - "v25": 1, - "version": 3, - "will": 3, - "with": 1, - "zero": 1 - } - }, - "/notices/rsn0044/": { - "headings": [ - "rsn 44 - moving older rapids conda packages to a legacy label", - "overview", - "impact" - ], - "words": { - "02": 5, - "04": 3, - "09": 1, - "10": 2, - "11": 4, - "17": 1, - "2025": 2, - "23": 4, - "3": 2, - "4": 2, - "44": 1, - "8": 2, - "a": 2, - "added": 1, - "adding": 1, - "all": 1, - "an": 1, - "and": 2, - "any": 1, - "april": 1, - "are": 1, - "author": 1, - "available": 1, - "be": 2, - "by": 2, - "c": 9, - "certain": 1, - "change": 2, - "channel": 3, - "command": 1, - "commands": 2, - "completed": 1, - "concurrently": 1, - "conda": 8, - "continue": 1, - "correctness": 1, - "create": 2, - "created": 1, - "creating": 1, - "cuda": 2, - "e": 1, - "environment": 2, - "environments": 3, - "fail": 1, - "for": 2, - "forge": 2, - "g": 1, - "guarantees": 1, - "if": 1, - "impact": 1, - "in": 1, - "install": 2, - "installation": 2, - "installed": 1, - "instead": 1, - "intervention": 1, - "is": 1, - "july": 1, - "label": 5, - "legacy": 5, - "like": 1, - "main": 1, - "mamba": 3, - "move": 1, - "moving": 2, - "n": 2, - "need": 1, - "new": 1, - "newer": 1, - "nvidia": 2, - "occur": 1, - "of": 3, - "older": 3, - "ops": 1, - "or": 1, - "out": 1, - "overview": 1, - "packages": 4, - "platform": 1, - "portion": 1, - "priority": 1, - "providing": 1, - "python": 2, - "rapids": 14, - "rapidsai": 6, - "release": 1, - "rsn": 1, - "run": 1, - "search": 1, - "solvable": 1, - "solve": 1, - "speeding": 1, - "status": 1, - "still": 1, - "strict": 1, - "stronger": 1, - "support": 1, - "than": 1, - "the": 5, - "these": 2, - "this": 1, - "times": 1, - "to": 6, - "topic": 1, - "under": 1, - "unless": 1, - "up": 1, - "updated": 1, - "user": 1, - "using": 1, - "v23": 3, - "v25": 1, - "version": 3, - "versions": 1, - "will": 7, - "with": 2, - "without": 1, - "work": 1, - "you": 2 - } - }, - "/notices/rsn0045/": { - "headings": [ - "rsn 45 - dropping of publishing cuspatial packages in rapids release v25.06", - "overview", - "impact" - ], - "words": { - "05": 1, - "06": 3, - "09": 1, - "17": 1, - "2025": 3, - "45": 1, - "and": 3, - "april": 1, - "author": 1, - "be": 5, - "change": 1, - "completed": 1, - "conda": 1, - "containers": 1, - "created": 1, - "cuspatial": 5, - "development": 2, - "docker": 1, - "dropped": 1, - "dropping": 1, - "for": 3, - "from": 1, - "impact": 1, - "in": 2, - "july": 1, - "june": 1, - "metapackage": 1, - "new": 2, - "no": 2, - "of": 1, - "overview": 1, - "packages": 4, - "paused": 2, - "platform": 1, - "published": 2, - "publishing": 2, - "rapids": 7, - "release": 2, - "repository": 2, - "rsn": 1, - "scheduled": 1, - "status": 1, - "stop": 1, - "support": 1, - "the": 3, - "topic": 1, - "tpm": 1, - "updated": 1, - "v25": 3, - "version": 1, - "will": 6 - } - }, - "/notices/rsn0046/": { - "headings": [ - "rsn 46 - dropping of publishing cugraph-dgl packages in rapids release v25.08", - "overview", - "impact" - ], - "words": { - "04": 1, - "06": 1, - "08": 4, - "2025": 2, - "25": 3, - "46": 1, - "all": 1, - "and": 2, - "april": 1, - "as": 1, - "author": 1, - "be": 4, - "change": 1, - "code": 1, - "completed": 1, - "created": 1, - "cugraph": 7, - "development": 1, - "dgl": 5, - "dropping": 1, - "for": 1, - "from": 1, - "github": 1, - "gnn": 1, - "impact": 1, - "in": 2, - "include": 1, - "june": 1, - "last": 1, - "library": 1, - "new": 1, - "no": 1, - "of": 3, - "overview": 1, - "packages": 3, - "part": 1, - "platform": 1, - "published": 1, - "publishing": 2, - "rapids": 6, - "release": 5, - "remaining": 1, - "removed": 1, - "repositories": 1, - "rsn": 1, - "status": 1, - "stop": 1, - "support": 1, - "terminated": 1, - "the": 4, - "to": 1, - "topic": 1, - "tpm": 1, - "updated": 1, - "v25": 3, - "version": 1, - "will": 5 - } - }, - "/notices/rsn0047/": { - "headings": [ - "rsn 47 - changes to rapids branching strategy in 25.12", - "overview", - "impact" - ], - "words": { - "00": 3, - "00a": 1, - "05": 1, - "10": 4, - "12": 7, - "2025": 2, - "25": 9, - "47": 1, - "a": 10, - "above": 1, - "admin": 2, - "after": 4, - "all": 2, - "always": 2, - "and": 6, - "any": 1, - "as": 2, - "aspect": 1, - "assuming": 2, - "author": 1, - "available": 1, - "be": 8, - "below": 1, - "bot": 1, - "branch": 27, - "branching": 5, - "bump": 1, - "burndown": 2, - "called": 3, - "can": 2, - "change": 1, - "changes": 1, - "cherry": 1, - "clone": 1, - "clones": 1, - "code": 2, - "commands": 1, - "commence": 1, - "commit": 1, - "comparing": 1, - "completed": 2, - "completing": 1, - "create": 3, - "created": 3, - "current": 4, - "custom": 1, - "cycle": 1, - "december": 1, - "default": 3, - "denote": 1, - "depend": 1, - "development": 2, - "different": 1, - "directly": 1, - "disable": 1, - "do": 1, - "during": 3, - "e": 3, - "each": 1, - "edit": 1, - "enable": 1, - "ensure": 1, - "existing": 1, - "external": 2, - "feature": 1, - "fetch": 1, - "fixes": 1, - "follow": 2, - "following": 1, - "for": 6, - "force": 1, - "fork": 2, - "forward": 3, - "freeze": 2, - "from": 5, - "g": 3, - "gh": 1, - "git": 7, - "github": 1, - "greatest": 1, - "has": 1, - "have": 1, - "head": 1, - "here": 1, - "hot": 1, - "hotfix": 1, - "hotfixes": 1, - "if": 3, - "impact": 1, - "in": 2, - "into": 1, - "is": 6, - "latest": 1, - "legacy": 4, - "leverage": 1, - "lived": 1, - "local": 2, - "long": 1, - "m": 2, - "main": 26, - "manually": 1, - "may": 3, - "merge": 2, - "merged": 1, - "mergers": 1, - "merges": 4, - "migrating": 1, - "minimal": 1, - "mm": 23, - "moving": 1, - "need": 2, - "needed": 1, - "new": 9, - "next": 6, - "no": 1, - "of": 1, - "on": 4, - "only": 2, - "onto": 1, - "open": 1, - "ops": 2, - "or": 1, - "origin": 3, - "original": 1, - "overview": 1, - "per": 1, - "pick": 1, - "points": 1, - "pre": 1, - "preparation": 2, - "process": 4, - "prs": 2, - "pull": 3, - "push": 2, - "rapids": 7, - "rapidsai": 1, - "re": 1, - "release": 29, - "releases": 2, - "remaining": 1, - "remote": 2, - "repo": 3, - "repositories": 3, - "repository": 2, - "requests": 3, - "retarget": 1, - "rsn": 1, - "scripts": 1, - "set": 1, - "shared": 1, - "should": 3, - "single": 1, - "smooth": 1, - "so": 1, - "specific": 1, - "standard": 1, - "status": 1, - "steps": 1, - "still": 1, - "strategies": 1, - "strategy": 6, - "switched": 2, - "table": 1, - "tag": 4, - "tagged": 1, - "tags": 1, - "target": 3, - "targeted": 1, - "team": 1, - "that": 3, - "the": 20, - "then": 1, - "this": 1, - "to": 17, - "tooling": 2, - "topic": 1, - "transition": 2, - "u": 1, - "update": 2, - "updated": 3, - "upstream": 4, - "use": 3, - "used": 1, - "username": 1, - "v": 1, - "v25": 1, - "version": 1, - "vyy": 2, - "want": 1, - "we": 1, - "which": 1, - "will": 7, - "with": 4, - "work": 1, - "workflows": 2, - "you": 4, - "your": 3, - "yy": 21 - } - }, - "/notices/rsn0048/": { - "headings": [ - "rsn 48 - deprecation announcement for cuda 11 in v25.08", - "overview", - "impact" - ], - "words": { - "0": 2, - "06": 2, - "08": 4, - "11": 6, - "12": 5, - "2025": 3, - "29": 1, - "48": 1, - "7": 1, - "9": 2, - "all": 3, - "and": 7, - "announcement": 1, - "any": 1, - "are": 1, - "artifacts": 1, - "august": 2, - "author": 1, - "be": 1, - "cease": 1, - "change": 1, - "compilation": 2, - "completed": 1, - "conda": 2, - "containers": 4, - "continuing": 1, - "created": 1, - "cuda": 8, - "deprecation": 1, - "distribution": 1, - "docker": 1, - "dropping": 1, - "effective": 1, - "for": 3, - "format": 1, - "from": 2, - "impact": 1, - "in": 3, - "including": 2, - "is": 1, - "last": 1, - "may": 2, - "not": 1, - "of": 1, - "ops": 1, - "our": 1, - "overview": 1, - "packages": 2, - "pin": 1, - "platform": 1, - "published": 2, - "rapids": 8, - "release": 4, - "rsn": 1, - "runtimes": 1, - "scheduled": 1, - "source": 2, - "status": 1, - "still": 1, - "support": 6, - "the": 1, - "to": 3, - "topic": 1, - "updated": 1, - "use": 1, - "users": 1, - "v25": 6, - "version": 1, - "we": 1, - "wheels": 2, - "who": 1, - "will": 4, - "wish": 1, - "with": 1 - } - }, - "/notices/rsn0049/": { - "headings": [ - "rsn 49 - important installation notice : rapids wheels are missing from pypi.nvidia.com", - "overview", - "impact" - ], - "words": { - "01": 2, - "06": 1, - "07": 1, - "2025": 4, - "27": 2, - "49": 1, - "ability": 1, - "all": 2, - "and": 1, - "any": 1, - "apologize": 1, - "are": 2, - "as": 2, - "author": 1, - "be": 1, - "been": 1, - "caused": 1, - "change": 1, - "channels": 1, - "com": 4, - "complete": 1, - "completed": 1, - "conda": 1, - "created": 1, - "docker": 1, - "down": 1, - "download": 1, - "for": 3, - "from": 1, - "have": 2, - "impact": 1, - "impacted": 1, - "impacting": 1, - "important": 1, - "inconvience": 1, - "install": 2, - "installation": 1, - "is": 3, - "july": 1, - "june": 1, - "may": 1, - "missing": 1, - "nightly": 1, - "not": 2, - "notice": 1, - "nvidia": 5, - "ops": 1, - "other": 1, - "overview": 1, - "pip": 3, - "platform": 1, - "possible": 1, - "pypi": 4, - "quickly": 1, - "rapids": 7, - "recovery": 1, - "release": 1, - "releases": 2, - "repo": 1, - "resolve": 1, - "restored": 1, - "rsn": 1, - "s": 1, - "stable": 1, - "status": 1, - "support": 1, - "team": 1, - "the": 2, - "this": 2, - "to": 4, - "topic": 1, - "unable": 1, - "updated": 1, - "users": 2, - "version": 1, - "versions": 1, - "via": 2, - "we": 1, - "wheels": 3, - "will": 1, - "working": 1 - } - }, - "/notices/rsn0050/": { - "headings": [ - "rsn 50 - dropping of ucx-py project in rapids release v25.10", - "overview", - "impact", - "continued accelerated communication support", - "dask-cuda", - "dask/distributed", - "python developers", - "c++" - ], - "words": { - "0": 1, - "08": 3, - "09": 1, - "10": 5, - "18": 1, - "2025": 3, - "45": 1, - "50": 1, - "a": 4, - "accelerated": 1, - "additional": 1, - "additionally": 1, - "advise": 1, - "advised": 2, - "after": 1, - "along": 1, - "also": 2, - "always": 1, - "and": 7, - "api": 1, - "archived": 1, - "are": 2, - "as": 1, - "author": 1, - "automatically": 2, - "be": 13, - "been": 1, - "beginning": 1, - "benefit": 2, - "but": 1, - "by": 1, - "c": 4, - "can": 2, - "cease": 1, - "change": 1, - "changes": 1, - "communication": 1, - "completed": 2, - "conda": 1, - "consult": 1, - "containers": 1, - "continue": 5, - "continued": 1, - "created": 1, - "cuda": 3, - "dask": 6, - "developers": 4, - "development": 2, - "directly": 1, - "distributed": 7, - "docker": 1, - "documentation": 1, - "dropped": 1, - "dropping": 1, - "emitted": 1, - "features": 1, - "for": 3, - "from": 3, - "have": 1, - "if": 2, - "impact": 1, - "import": 2, - "in": 5, - "installed": 4, - "installing": 1, - "instead": 1, - "interface": 3, - "introduction": 1, - "is": 4, - "its": 1, - "july": 1, - "last": 1, - "library": 2, - "libucxx": 1, - "may": 2, - "metapackage": 1, - "migrated": 1, - "migration": 1, - "minor": 1, - "new": 5, - "no": 2, - "not": 1, - "now": 2, - "october": 1, - "of": 3, - "old": 2, - "option": 1, - "overview": 1, - "package": 5, - "packages": 3, - "platform": 1, - "project": 3, - "proper": 1, - "protocol": 5, - "provided": 1, - "provides": 1, - "providing": 1, - "published": 2, - "publishing": 1, - "py": 10, - "python": 3, - "raii": 1, - "rapids": 11, - "release": 3, - "removed": 1, - "repository": 3, - "require": 1, - "requires": 1, - "rsn": 1, - "scheduled": 1, - "september": 1, - "setting": 4, - "status": 1, - "still": 2, - "stop": 2, - "support": 3, - "supported": 2, - "switch": 1, - "the": 15, - "there": 1, - "this": 2, - "through": 1, - "to": 12, - "topic": 1, - "tpm": 1, - "ucp": 1, - "ucx": 16, - "ucxx": 15, - "updated": 1, - "updating": 1, - "use": 3, - "used": 2, - "users": 5, - "uses": 1, - "v25": 7, - "version": 1, - "via": 3, - "warning": 1, - "well": 1, - "who": 1, - "will": 17, - "with": 5, - "work": 1 - } - }, - "/notices/rsn0051/": { - "headings": [ - "rsn 51 - rapids 25.08 replaces cuda 12.8 with cuda 12.9 in our docker images", - "overview", - "impact" - ], - "words": { - "0": 2, - "02": 1, - "08": 5, - "12": 12, - "2025": 1, - "25": 1, - "51": 1, - "8": 6, - "9": 3, - "a": 1, - "and": 2, - "are": 1, - "author": 1, - "be": 1, - "before": 1, - "by": 1, - "cease": 2, - "change": 1, - "completed": 1, - "conda": 1, - "containers": 7, - "continue": 1, - "continuing": 1, - "created": 1, - "cuda": 11, - "distribution": 1, - "docker": 5, - "effective": 1, - "for": 2, - "images": 1, - "impact": 1, - "in": 3, - "is": 1, - "july": 1, - "may": 1, - "n": 1, - "of": 1, - "ops": 1, - "or": 2, - "other": 1, - "our": 1, - "overview": 1, - "pip": 1, - "platform": 1, - "publishing": 1, - "rapids": 8, - "release": 3, - "removing": 1, - "replaced": 1, - "replaces": 1, - "rsn": 1, - "series": 1, - "status": 1, - "still": 1, - "support": 4, - "the": 3, - "to": 2, - "topic": 1, - "updated": 1, - "use": 2, - "users": 1, - "v25": 4, - "version": 1, - "versions": 1, - "via": 1, - "we": 1, - "who": 1, - "will": 4, - "wish": 1, - "with": 1, - "x": 1 - } - }, - "/notices/rsn0052/": { - "headings": [ - "rsn 52 - dropping of pynvjitlink in rapids release v25.10", - "overview", - "impact" - ], - "words": { - "0": 2, - "10": 3, - "16": 1, - "18": 1, - "2025": 1, - "52": 1, - "7": 1, - "a": 1, - "all": 1, - "and": 3, - "apis": 1, - "archived": 1, - "are": 4, - "august": 1, - "author": 1, - "automatically": 1, - "be": 1, - "been": 1, - "bindings": 3, - "by": 1, - "can": 1, - "changes": 1, - "code": 1, - "com": 1, - "completed": 1, - "configuration": 1, - "core": 4, - "created": 1, - "cuda": 13, - "depend": 1, - "deprecation": 1, - "detect": 1, - "discontinued": 1, - "docs": 1, - "documentation": 1, - "dropping": 1, - "eliminate": 1, - "enable": 1, - "experimental": 1, - "explicit": 1, - "favor": 1, - "final": 1, - "from": 1, - "functionality": 2, - "future": 1, - "github": 4, - "has": 1, - "https": 4, - "if": 1, - "impact": 1, - "import": 1, - "in": 3, - "indirectly": 1, - "io": 3, - "latest": 2, - "libraries": 2, - "library": 2, - "linker": 3, - "longer": 1, - "n": 1, - "needed": 1, - "no": 3, - "not": 1, - "now": 1, - "numba": 6, - "nvidia": 3, - "nvjitlink": 1, - "of": 6, - "on": 1, - "only": 1, - "ops": 1, - "other": 1, - "overview": 1, - "patch": 2, - "planned": 1, - "public": 1, - "pynvjitlink": 8, - "python": 2, - "rapids": 6, - "rapidsai": 1, - "release": 2, - "releases": 1, - "replaced": 1, - "required": 1, - "rsn": 1, - "starting": 1, - "status": 1, - "target": 1, - "the": 3, - "through": 1, - "topic": 1, - "updated": 1, - "users": 1, - "uses": 1, - "using": 1, - "v0": 1, - "v25": 3, - "version": 1, - "was": 1, - "when": 1, - "will": 2, - "with": 2, - "you": 1 - } - }, - "/notices/rsn0053/": { - "headings": [ - "rsn 53 - rapids 25.10 consolidates docker images to single tag per cuda major version", - "overview", - "changes", - "new tagging strategy", - "what this means", - "impact", - "compatibility", - "migration timeline", - "references" - ], - "words": { - "0": 1, - "08": 1, - "10": 6, - "12": 4, - "13": 3, - "2025": 2, - "24": 1, - "25": 3, - "525": 1, - "53": 1, - "781": 1, - "9": 2, - "a": 1, - "all": 1, - "always": 1, - "and": 7, - "application": 1, - "are": 2, - "at": 1, - "author": 1, - "available": 2, - "base": 3, - "be": 5, - "binary": 1, - "both": 1, - "can": 1, - "change": 4, - "changes": 1, - "com": 1, - "compatibility": 9, - "compatible": 1, - "completed": 1, - "conda": 1, - "consolidates": 1, - "consolidating": 1, - "constraint": 1, - "continue": 1, - "convention": 1, - "created": 2, - "cuda": 17, - "cuda12": 8, - "cuda13": 4, - "december": 1, - "designed": 1, - "details": 1, - "discussion": 1, - "docker": 6, - "driver": 3, - "drivers": 1, - "e": 4, - "each": 2, - "earlier": 1, - "ensures": 1, - "example": 1, - "exceed": 1, - "existing": 1, - "following": 1, - "for": 11, - "forward": 1, - "found": 1, - "from": 1, - "g": 4, - "get": 1, - "guide": 1, - "hardware": 1, - "historical": 1, - "https": 1, - "hub": 1, - "image": 1, - "images": 3, - "impact": 2, - "information": 1, - "installing": 1, - "instead": 2, - "is": 2, - "issue": 1, - "later": 1, - "latest": 3, - "main": 1, - "maintaining": 2, - "maintains": 1, - "maintenance": 1, - "major": 11, - "means": 1, - "meet": 1, - "migrate": 1, - "migration": 1, - "minimum": 1, - "minor": 7, - "must": 1, - "naming": 1, - "new": 3, - "newer": 1, - "no": 2, - "now": 1, - "nvidia": 2, - "of": 2, - "on": 1, - "only": 2, - "ops": 1, - "or": 3, - "overhead": 1, - "overview": 1, - "per": 2, - "pip": 1, - "platform": 1, - "point": 2, - "proposal": 1, - "publish": 1, - "published": 2, - "py": 1, - "py3": 2, - "python": 1, - "r": 1, - "rapids": 12, - "rapidsai": 4, - "reduces": 1, - "references": 1, - "release": 4, - "releases": 1, - "remains": 1, - "required": 1, - "requirements": 1, - "rolling": 1, - "rsn": 1, - "same": 1, - "see": 1, - "selected": 1, - "selection": 1, - "separate": 1, - "september": 1, - "series": 1, - "should": 1, - "simplifies": 1, - "single": 2, - "so": 1, - "starting": 1, - "status": 1, - "strategy": 1, - "support": 1, - "supported": 5, - "tag": 3, - "tagging": 1, - "tags": 10, - "that": 3, - "the": 13, - "this": 4, - "timeline": 1, - "to": 6, - "topic": 1, - "unaffected": 1, - "updated": 1, - "use": 1, - "users": 3, - "using": 1, - "v25": 5, - "version": 20, - "versions": 2, - "what": 1, - "which": 1, - "while": 1, - "will": 8, - "with": 3, - "within": 2, - "work": 1 - } - }, - "/notices/rsn0054/": { - "headings": [ - "rsn 54 - increasing cuda minimum requirement from 12.0 to 12.2 in v25.12", - "overview", - "impact" - ], - "words": { - "0": 5, - "1": 1, - "10": 2, - "11": 1, - "12": 17, - "13": 1, - "2": 4, - "2025": 3, - "29": 1, - "53": 1, - "54": 1, - "a": 1, - "all": 3, - "and": 7, - "any": 1, - "are": 1, - "author": 1, - "be": 1, - "change": 1, - "compilation": 2, - "completed": 1, - "conda": 2, - "containers": 3, - "continuing": 1, - "created": 1, - "cuda": 9, - "december": 2, - "effective": 1, - "entire": 1, - "for": 4, - "format": 1, - "from": 4, - "impact": 1, - "in": 3, - "including": 2, - "increasing": 1, - "information": 1, - "is": 1, - "last": 1, - "major": 1, - "may": 1, - "minimum": 3, - "more": 1, - "not": 1, - "of": 2, - "ops": 1, - "our": 1, - "overview": 1, - "packages": 2, - "pin": 1, - "platform": 1, - "published": 2, - "raising": 1, - "rapids": 8, - "release": 4, - "require": 2, - "required": 1, - "requirement": 1, - "rsn": 2, - "runtimes": 1, - "scheduled": 1, - "see": 1, - "september": 1, - "software": 1, - "source": 2, - "starting": 1, - "status": 1, - "still": 1, - "suite": 1, - "support": 4, - "tags": 1, - "the": 4, - "to": 5, - "topic": 1, - "updated": 1, - "use": 1, - "users": 1, - "v25": 7, - "version": 3, - "we": 1, - "wheels": 2, - "who": 1, - "will": 4, - "wish": 1, - "with": 3 - } - }, - "/notices/rsn0055/": { - "headings": [ - "rsn 55 - dropping of publishing cugraph-service packages in rapids release v25.12", - "overview", - "impact" - ], - "words": { - "10": 1, - "12": 4, - "17": 1, - "2025": 2, - "25": 3, - "55": 1, - "all": 1, - "and": 2, - "as": 1, - "author": 1, - "be": 4, - "change": 1, - "client": 1, - "code": 1, - "completed": 1, - "created": 1, - "cugraph": 8, - "development": 1, - "dropping": 1, - "for": 1, - "from": 1, - "github": 1, - "impact": 1, - "in": 2, - "include": 1, - "last": 1, - "libraries": 1, - "new": 1, - "no": 1, - "november": 1, - "october": 1, - "of": 3, - "overview": 1, - "packages": 3, - "part": 1, - "platform": 1, - "published": 1, - "publishing": 2, - "rapids": 6, - "release": 5, - "removed": 1, - "repositories": 1, - "rsn": 1, - "server": 1, - "service": 7, - "status": 1, - "stop": 1, - "support": 1, - "terminated": 1, - "the": 4, - "to": 1, - "topic": 1, - "tpm": 1, - "updated": 1, - "v25": 3, - "version": 1, - "will": 5 - } - }, - "/notices/rsn0056/": { - "headings": [ - "rsn 56 - moving cumlprims_mg into cuml in rapids release v26.02", - "overview", - "impact" - ], - "words": { - "02": 4, - "05": 1, - "12": 1, - "2026": 2, - "56": 1, - "7585": 1, - "all": 1, - "and": 1, - "archived": 1, - "are": 1, - "author": 1, - "be": 2, - "been": 1, - "code": 1, - "com": 2, - "completed": 1, - "conda": 1, - "created": 1, - "cuml": 3, - "cumlprims": 3, - "deprecation": 1, - "directly": 1, - "expected": 1, - "final": 1, - "from": 1, - "functionality": 1, - "github": 2, - "has": 1, - "https": 2, - "if": 1, - "impact": 2, - "in": 1, - "into": 2, - "is": 1, - "january": 2, - "libcumlprims": 3, - "library": 1, - "longer": 1, - "mg": 3, - "moved": 1, - "moving": 1, - "no": 2, - "not": 1, - "of": 2, - "ops": 1, - "or": 1, - "overview": 1, - "packages": 1, - "project": 1, - "published": 1, - "pull": 1, - "rapids": 4, - "rapidsai": 2, - "release": 2, - "rsn": 1, - "see": 1, - "source": 1, - "starting": 1, - "status": 1, - "that": 1, - "the": 3, - "topic": 1, - "updated": 1, - "using": 1, - "v25": 1, - "v26": 3, - "version": 1, - "was": 1, - "will": 2, - "with": 1, - "you": 1 - } - }, - "/notices/rsn0057/": { - "headings": [ - "rsn 57 - docker image deprecation: rapidsai/miniforge-cuda", - "overview", - "impact" - ], - "words": { - "0": 1, - "02": 2, - "04": 1, - "1": 1, - "13": 1, - "14": 1, - "20": 1, - "2026": 2, - "345": 1, - "57": 1, - "64": 2, - "a": 1, - "aarch64": 1, - "activate": 1, - "all": 1, - "api": 1, - "arch": 1, - "author": 1, - "base": 1, - "bash": 1, - "bashrc": 1, - "bin": 1, - "building": 1, - "c": 2, - "change": 1, - "ci": 3, - "com": 1, - "completed": 1, - "conda": 3, - "consider": 1, - "container": 1, - "created": 1, - "cuda": 5, - "curl": 1, - "deprecation": 2, - "details": 1, - "devel": 1, - "docker": 2, - "dockerhub": 2, - "does": 1, - "else": 1, - "en": 1, - "fi": 1, - "final": 1, - "for": 1, - "forge": 1, - "github": 1, - "gpus": 1, - "html": 1, - "https": 3, - "if": 3, - "image": 2, - "images": 2, - "imgs": 1, - "impact": 1, - "in": 1, - "init": 1, - "install": 1, - "installation": 2, - "io": 1, - "is": 1, - "issues": 1, - "it": 1, - "january": 2, - "latest": 2, - "library": 1, - "link": 2, - "linux": 2, - "ls": 1, - "mamba": 2, - "meet": 1, - "micro": 1, - "micromamba": 10, - "miniforge": 3, - "more": 1, - "needs": 1, - "not": 1, - "nvidia": 2, - "on": 1, - "ops": 1, - "overview": 1, - "own": 1, - "platform": 3, - "pm": 1, - "prebuilt": 1, - "preferred": 1, - "publish": 1, - "pulling": 1, - "rapids": 4, - "rapidsai": 7, - "re": 1, - "readthedocs": 1, - "release": 1, - "rm": 1, - "rsn": 1, - "run": 1, - "see": 1, - "shell": 1, - "situations": 1, - "source": 1, - "status": 1, - "switch": 1, - "tar": 1, - "the": 1, - "then": 1, - "this": 1, - "to": 3, - "together": 1, - "topic": 1, - "ubuntu24": 1, - "updated": 1, - "using": 2, - "v26": 2, - "version": 1, - "was": 1, - "where": 1, - "with": 1, - "x86": 1, - "xvj": 1, - "yes": 1, - "you": 1, - "your": 2 - } - }, - "/notices/rsn0058/": { - "headings": [ - "rsn 58 - dropping support for python v3.10 and adding support for python v3.14 in v26.04", - "overview", - "impact" - ], - "words": { - "01": 1, - "04": 4, - "10": 2, - "11": 2, - "12": 2, - "13": 2, - "14": 4, - "2026": 3, - "26": 1, - "3": 10, - "58": 1, - "8": 1, - "a": 1, - "adding": 2, - "and": 3, - "april": 2, - "as": 2, - "author": 1, - "change": 1, - "completed": 1, - "created": 1, - "dropping": 2, - "for": 5, - "impact": 1, - "in": 2, - "is": 1, - "january": 1, - "move": 1, - "of": 1, - "or": 1, - "overview": 1, - "plan": 1, - "platform": 1, - "possible": 1, - "python": 6, - "rapids": 3, - "release": 1, - "rsn": 1, - "scheduled": 1, - "should": 1, - "soon": 1, - "status": 1, - "support": 6, - "supported": 1, - "the": 1, - "to": 2, - "topic": 1, - "tpm": 1, - "upcoming": 1, - "updated": 1, - "users": 1, - "v26": 4, - "v3": 2, - "version": 2, - "will": 1 - } - }, - "/notices/rsn0059/": { - "headings": [ - "rsn 59 - rapids 26.08 release, cudf will transition to pandas 3.0+", - "overview", - "impact" - ], - "words": { - "0": 3, - "08": 4, - "19": 1, - "2": 1, - "2026": 2, - "26": 1, - "3": 3, - "59": 1, - "6": 1, - "a": 1, - "and": 2, - "august": 1, - "author": 1, - "change": 1, - "created": 1, - "cudf": 2, - "drop": 1, - "for": 3, - "impact": 1, - "in": 2, - "later": 1, - "may": 1, - "move": 1, - "n": 1, - "overview": 1, - "pandas": 4, - "plan": 1, - "platform": 1, - "progress": 1, - "rapids": 5, - "release": 2, - "require": 1, - "rsn": 1, - "scheduled": 1, - "should": 1, - "starting": 1, - "status": 1, - "support": 2, - "to": 3, - "topic": 1, - "tpm": 1, - "transition": 1, - "updated": 1, - "users": 1, - "v26": 3, - "version": 1, - "will": 3 - } - }, - "/notices/rsn0060/": { - "headings": [ - "rsn 60 - sunsetting cuxfilter after rapids release v26.06", - "overview", - "impact", - "migration guidance", - "mapping common cuxfilter concepts", - "continued gpu visual analytics support" - ], - "words": { - "06": 8, - "2026": 1, - "22": 1, - "60": 1, - "a": 9, - "accelerated": 4, - "after": 4, - "aggregation": 2, - "analytics": 4, - "and": 19, - "another": 1, - "api": 2, - "applicable": 1, - "application": 1, - "archived": 1, - "as": 4, - "at": 1, - "author": 1, - "backed": 1, - "based": 1, - "be": 7, - "beginning": 1, - "bokeh": 2, - "boundaries": 1, - "bug": 1, - "build": 1, - "building": 1, - "by": 2, - "callback": 1, - "cannot": 1, - "capture": 1, - "cease": 1, - "change": 1, - "charts": 1, - "common": 1, - "compatibility": 1, - "compatible": 1, - "compose": 1, - "concept": 1, - "concepts": 1, - "conda": 1, - "connecting": 1, - "container": 1, - "continue": 1, - "continued": 1, - "continues": 1, - "controls": 1, - "convert": 1, - "cpu": 2, - "created": 1, - "cross": 1, - "cuda": 1, - "cudf": 4, - "cugraph": 1, - "cuxfilter": 15, - "dash": 2, - "dashboard": 4, - "dashboards": 1, - "data": 4, - "dataframe": 4, - "datasets": 2, - "datashader": 3, - "deck": 1, - "desired": 1, - "development": 2, - "direct": 2, - "directly": 2, - "documentation": 1, - "entry": 1, - "examples": 2, - "existing": 2, - "explicit": 1, - "exploration": 2, - "fallback": 1, - "fast": 1, - "filtered": 1, - "filters": 1, - "final": 2, - "first": 3, - "fixes": 1, - "for": 10, - "forward": 1, - "framework": 3, - "from": 1, - "future": 1, - "generate": 1, - "gl": 1, - "gpu": 7, - "guidance": 2, - "help": 1, - "helped": 1, - "holoviews": 3, - "hvplot": 2, - "immediately": 1, - "impact": 1, - "implements": 1, - "importing": 1, - "in": 1, - "include": 1, - "including": 1, - "install": 1, - "intended": 2, - "is": 4, - "it": 1, - "joins": 1, - "knowledge": 1, - "large": 2, - "layout": 1, - "layouts": 1, - "libraries": 4, - "library": 3, - "link": 1, - "linked": 3, - "load": 1, - "loading": 1, - "local": 1, - "maintained": 2, - "manifests": 1, - "mapping": 1, - "may": 2, - "metapackage": 1, - "migrate": 1, - "migration": 2, - "n": 1, - "native": 1, - "new": 4, - "no": 1, - "not": 3, - "notebook": 3, - "of": 2, - "only": 2, - "or": 8, - "output": 1, - "over": 1, - "overview": 1, - "package": 3, - "packages": 2, - "pandas": 1, - "panel": 3, - "path": 2, - "pattern": 1, - "patterns": 3, - "pinning": 1, - "pip": 1, - "platform": 1, - "plotly": 1, - "point": 2, - "points": 1, - "polars": 1, - "preparation": 1, - "preserve": 1, - "preset": 1, - "previous": 1, - "progress": 1, - "projects": 1, - "provide": 2, - "published": 1, - "publishing": 1, - "pydeck": 1, - "python": 3, - "rapids": 12, - "rather": 1, - "re": 1, - "recommended": 1, - "references": 2, - "related": 1, - "release": 6, - "releases": 2, - "relevant": 1, - "remain": 1, - "removed": 1, - "replacement": 5, - "repository": 2, - "requires": 1, - "rsn": 1, - "selections": 3, - "should": 3, - "skill": 5, - "specific": 1, - "standalone": 1, - "starting": 1, - "state": 1, - "status": 1, - "stop": 1, - "streamlit": 2, - "successor": 2, - "such": 2, - "sunsetting": 1, - "support": 4, - "supported": 1, - "surfaces": 1, - "templates": 1, - "than": 1, - "that": 3, - "the": 18, - "there": 1, - "this": 1, - "those": 1, - "through": 1, - "to": 6, - "topic": 1, - "tpm": 1, - "transform": 1, - "transformation": 1, - "unavailable": 1, - "updated": 1, - "updates": 2, - "use": 8, - "used": 1, - "useful": 1, - "users": 4, - "v26": 8, - "version": 2, - "versions": 1, - "view": 1, - "visual": 5, - "visualization": 4, - "when": 3, - "where": 1, - "widgets": 1, - "will": 11, - "with": 6, - "without": 1, - "work": 1, - "workflow": 2, - "workflows": 1, - "workloads": 1 - } - }, - "/notices/rsn0061/": { - "headings": [ - "rsn 61 - rapids 26.08 will require cupy 14 and numpy 2", - "overview", - "impact" - ], - "words": { - "0": 1, - "08": 4, - "1": 1, - "14": 6, - "2": 3, - "2026": 1, - "26": 3, - "30": 1, - "61": 1, - "a": 3, - "and": 3, - "as": 2, - "author": 1, - "be": 3, - "because": 1, - "blog": 1, - "can": 2, - "change": 1, - "compatible": 1, - "components": 1, - "consequence": 1, - "created": 1, - "cuda": 3, - "cupy": 6, - "driver": 1, - "environments": 1, - "for": 2, - "impact": 1, - "in": 2, - "information": 1, - "installation": 1, - "installed": 1, - "installing": 1, - "it": 1, - "june": 1, - "later": 1, - "more": 1, - "n": 1, - "need": 1, - "needs": 1, - "newer": 1, - "now": 1, - "numpy": 3, - "on": 1, - "only": 1, - "or": 1, - "overview": 1, - "platform": 1, - "pre": 1, - "progress": 1, - "provided": 1, - "pypi": 1, - "rapids": 7, - "release": 2, - "rely": 1, - "require": 3, - "requires": 1, - "rsn": 1, - "see": 1, - "simplifies": 1, - "status": 1, - "support": 1, - "system": 1, - "the": 3, - "this": 1, - "to": 2, - "toolkit": 1, - "topic": 1, - "tpm": 1, - "updated": 1, - "used": 1, - "user": 1, - "users": 1, - "v26": 1, - "version": 2, - "via": 1, - "wide": 1, - "will": 4, - "with": 1, - "without": 1 - } - }, - "/platform-support/": { - "headings": [ - "rapids platform support", - "rapids 26.08 (nightly)", - "operating systems", - "python", - "cuda", - "source builds", - "rapids 26.06", - "operating systems", - "python", - "cuda", - "source builds", - "rapids 26.04", - "operating systems", - "python", - "cuda", - "source builds", - "rapids 26.02", - "operating systems", - "python", - "cuda", - "source builds", - "rapids 25.12", - "operating systems", - "python", - "cuda", - "source builds", - "rapids 25.10", - "operating systems", - "python", - "cuda", - "source builds", - "rapids 25.08", - "operating systems", - "python", - "cuda", - "source builds", - "rapids 25.06", - "operating systems", - "python", - "cuda", - "source builds" - ], - "words": { - "0": 26, - "01": 1, - "02": 2, - "04": 20, - "06": 4, - "08": 4, - "1": 5, - "10": 7, - "100": 14, - "11": 14, - "12": 34, - "120": 14, - "13": 36, - "14": 3, - "2": 22, - "20": 1, - "21": 2, - "22": 8, - "24": 8, - "25": 8, - "26": 9, - "28": 8, - "3": 49, - "4": 6, - "42": 1, - "470": 1, - "5": 6, - "525": 3, - "535": 5, - "580": 6, - "6": 2, - "60": 3, - "64": 8, - "70": 9, - "75": 15, - "8": 10, - "80": 15, - "86": 15, - "89": 15, - "9": 8, - "90": 15, - "a": 11, - "aarch64": 8, - "ada": 15, - "against": 1, - "ampere": 15, - "and": 4, - "architecture": 2, - "are": 2, - "below": 1, - "blackwell": 14, - "builds": 8, - "built": 2, - "capabilities": 1, - "capability": 9, - "cccl": 8, - "compatibility": 1, - "compatible": 9, - "compute": 10, - "contains": 1, - "cuda": 26, - "dependencies": 1, - "dependency": 8, - "depends": 1, - "developer": 1, - "distribution": 8, - "documentation": 1, - "driver": 9, - "each": 3, - "for": 5, - "forward": 1, - "gcc": 8, - "glibc": 8, - "gpu": 1, - "gpus": 1, - "guide": 1, - "hopper": 15, - "installation": 2, - "instructions": 2, - "is": 1, - "latest": 1, - "libraries": 1, - "linux": 24, - "list": 1, - "newer": 16, - "nightly": 2, - "note": 1, - "nvcomp": 8, - "nvidia": 1, - "of": 5, - "on": 10, - "operating": 8, - "or": 15, - "platform": 1, - "platforms": 1, - "ptx": 1, - "python": 9, - "range": 1, - "rapids": 12, - "reference": 1, - "release": 2, - "releases": 1, - "rocky": 8, - "see": 1, - "set": 1, - "source": 8, - "specific": 2, - "support": 2, - "supported": 11, - "systems": 8, - "tested": 9, - "that": 1, - "the": 4, - "these": 1, - "to": 1, - "toolkit": 9, - "turing": 15, - "ubuntu": 18, - "uses": 1, - "version": 8, - "versions": 2, - "via": 9, - "virtual": 1, - "volta": 9, - "windows": 8, - "with": 8, - "wsl": 8, - "x86": 8 - } - }, - "/releases/": { - "headings": [ - "releases" - ], - "words": { - "and": 1, - "are": 1, - "below": 1, - "outlined": 1, - "planned": 1, - "processes": 1, - "releases": 2, - "schedules": 1, - "the": 1, - "using": 1 - } - }, - "/releases/hotfix/": { - "headings": [ - "hotfix process", - "overview", - "intended audience", - "see also", - "hotfixes", - "criteria", - "process" - ], - "words": { - "0": 1, - "00": 1, - "1": 2, - "2": 1, - "a": 18, - "acceptable": 1, - "address": 1, - "affect": 2, - "affects": 1, - "after": 3, - "also": 3, - "amount": 1, - "and": 12, - "approval": 2, - "approve": 1, - "are": 5, - "as": 3, - "assign": 1, - "assigned": 1, - "audience": 1, - "automated": 1, - "automatically": 1, - "average": 3, - "be": 3, - "before": 1, - "begin": 1, - "being": 1, - "below": 2, - "branch": 1, - "bug": 6, - "by": 1, - "can": 2, - "case": 1, - "causes": 1, - "change": 1, - "changes": 1, - "check": 1, - "cherry": 1, - "code": 2, - "commit": 1, - "common": 2, - "communicated": 1, - "community": 1, - "compile": 1, - "complete": 1, - "completed": 1, - "conda": 1, - "consider": 3, - "containers": 1, - "continue": 1, - "correct": 1, - "correctness": 2, - "create": 2, - "created": 1, - "criteria": 3, - "critical": 1, - "current": 2, - "date": 1, - "days": 1, - "deliverables": 1, - "depth": 1, - "determine": 1, - "developer": 2, - "developers": 2, - "do": 1, - "documentation": 2, - "does": 5, - "done": 1, - "during": 1, - "edge": 1, - "effectively": 1, - "encounter": 1, - "ensure": 3, - "errors": 1, - "even": 1, - "examples": 1, - "few": 1, - "fix": 2, - "fixed": 1, - "following": 1, - "for": 5, - "forward": 1, - "freeze": 1, - "from": 5, - "function": 1, - "functionality": 2, - "guideline": 1, - "has": 1, - "help": 1, - "hotfix": 15, - "hotfixes": 3, - "how": 1, - "identify": 1, - "if": 1, - "implement": 2, - "in": 2, - "including": 1, - "incorrect": 2, - "input": 2, - "instead": 1, - "instructions": 1, - "intended": 1, - "is": 16, - "issue": 2, - "issues": 2, - "it": 4, - "its": 1, - "lead": 2, - "leads": 2, - "longer": 1, - "ma": 13, - "made": 1, - "main": 4, - "major": 2, - "majority": 2, - "many": 1, - "mb": 2, - "merge": 4, - "merger": 1, - "merging": 1, - "met": 1, - "minimal": 1, - "mm": 3, - "monitor": 1, - "more": 1, - "new": 1, - "next": 4, - "no": 2, - "normal": 1, - "not": 2, - "note": 2, - "notified": 2, - "notify": 5, - "numbers": 1, - "of": 7, - "on": 1, - "once": 3, - "open": 1, - "operations": 6, - "or": 5, - "overview": 1, - "patch": 2, - "pick": 1, - "potential": 2, - "pr": 2, - "preplanned": 1, - "process": 5, - "processes": 1, - "produces": 1, - "progress": 1, - "project": 4, - "pull": 5, - "px": 8, - "py": 2, - "questions": 1, - "quick": 1, - "rapids": 1, - "ready": 1, - "reasonable": 2, - "related": 1, - "release": 13, - "releases": 3, - "request": 5, - "required": 1, - "results": 1, - "review": 3, - "runtime": 1, - "s": 2, - "scheduled": 1, - "see": 1, - "set": 1, - "significant": 2, - "so": 1, - "solution": 1, - "spot": 1, - "steps": 1, - "succinctly": 1, - "summary": 1, - "tag": 1, - "take": 1, - "targeting": 3, - "testing": 1, - "tests": 1, - "that": 6, - "the": 38, - "there": 5, - "these": 2, - "this": 2, - "timing": 1, - "to": 9, - "tools": 1, - "track": 1, - "understand": 1, - "unit": 1, - "update": 1, - "updating": 1, - "usage": 1, - "use": 1, - "user": 2, - "users": 2, - "valid": 1, - "version": 1, - "versioning": 1, - "vyy": 1, - "waiting": 1, - "what": 1, - "when": 2, - "where": 2, - "which": 1, - "will": 4, - "with": 2, - "within": 1, - "work": 1, - "workaround": 7, - "worked": 1, - "you": 1, - "yy": 13 - } - }, - "/releases/process/": { - "headings": [ - "release process", - "overview", - "intended audience", - "see also", - "git branching model", - "release dates", - "hotfixes", - "burn down", - "timing", - "process", - "code freeze", - "timing", - "process", - "releasing", - "timing", - "process" - ], - "words": { - "00am": 3, - "10": 1, - "10th": 1, - "11": 2, - "12": 2, - "2": 7, - "3": 3, - "3rd": 1, - "4": 1, - "59": 1, - "59pm": 1, - "9th": 2, - "a": 10, - "accepted": 1, - "accepting": 1, - "active": 1, - "adapted": 1, - "additionally": 1, - "advance": 1, - "after": 1, - "aim": 1, - "all": 5, - "also": 3, - "always": 1, - "an": 1, - "and": 14, - "announce": 3, - "anticipated": 2, - "any": 5, - "approval": 1, - "approve": 1, - "are": 7, - "around": 1, - "artifacts": 1, - "assist": 1, - "at": 6, - "audience": 1, - "automated": 1, - "backlog": 2, - "be": 10, - "before": 6, - "begin": 1, - "beginning": 5, - "begins": 3, - "below": 3, - "board": 4, - "branch": 4, - "branching": 2, - "bugs": 2, - "burn": 16, - "burndown": 1, - "business": 2, - "can": 3, - "check": 1, - "checking": 1, - "choose": 3, - "close": 2, - "code": 16, - "communicate": 3, - "complete": 2, - "conda": 1, - "confirmation": 1, - "consult": 2, - "containers": 2, - "continue": 1, - "correct": 1, - "correctness": 2, - "create": 2, - "critical": 1, - "current": 3, - "custom": 1, - "date": 26, - "dates": 2, - "day": 3, - "days": 4, - "deadline": 3, - "decided": 3, - "deliverables": 2, - "described": 1, - "developers": 1, - "development": 11, - "documentation": 2, - "down": 17, - "driven": 1, - "ends": 3, - "enlist": 1, - "enough": 1, - "ensure": 8, - "example": 1, - "examples": 3, - "exception": 1, - "existing": 1, - "features": 2, - "feb": 4, - "few": 1, - "final": 1, - "finish": 1, - "first": 1, - "focus": 1, - "followed": 3, - "following": 1, - "for": 16, - "found": 1, - "freeze": 16, - "from": 6, - "functionality": 1, - "future": 3, - "general": 3, - "generally": 1, - "git": 2, - "github": 1, - "guide": 1, - "guidelines": 3, - "handle": 1, - "have": 1, - "help": 1, - "here": 1, - "hotfix": 1, - "hotfixes": 2, - "if": 2, - "immediately": 4, - "in": 6, - "inform": 1, - "instead": 1, - "instructions": 1, - "intended": 1, - "into": 1, - "is": 7, - "issue": 1, - "issues": 9, - "key": 3, - "known": 1, - "later": 1, - "leads": 8, - "least": 3, - "leverage": 1, - "locking": 1, - "longer": 2, - "ma": 6, - "made": 1, - "main": 4, - "make": 2, - "may": 1, - "mb": 20, - "mc": 8, - "meet": 3, - "merge": 1, - "merged": 2, - "model": 2, - "monitor": 1, - "move": 2, - "moved": 1, - "moving": 1, - "need": 1, - "new": 2, - "next": 4, - "no": 3, - "not": 1, - "note": 3, - "notebooks": 1, - "notify": 2, - "numbers": 1, - "occurs": 1, - "of": 25, - "on": 5, - "oneflow": 1, - "open": 1, - "operations": 9, - "or": 3, - "outstanding": 2, - "overview": 1, - "own": 1, - "packages": 1, - "part": 1, - "pending": 1, - "pm": 1, - "post": 1, - "pr": 2, - "previous": 1, - "prior": 1, - "process": 13, - "processes": 3, - "project": 13, - "promptly": 1, - "provides": 1, - "prs": 2, - "pt": 5, - "pull": 6, - "rapids": 2, - "release": 45, - "releases": 1, - "releasing": 1, - "remain": 2, - "remind": 1, - "remove": 1, - "requests": 6, - "respond": 1, - "review": 2, - "reviewed": 1, - "reviewers": 1, - "runs": 1, - "see": 2, - "selection": 3, - "several": 2, - "should": 5, - "slated": 1, - "spot": 2, - "stop": 1, - "summary": 1, - "switch": 1, - "target": 1, - "targeting": 2, - "team": 8, - "testing": 3, - "than": 1, - "that": 2, - "the": 68, - "their": 1, - "then": 1, - "there": 2, - "they": 4, - "this": 2, - "thorough": 1, - "time": 1, - "timing": 3, - "to": 27, - "tools": 2, - "tracking": 1, - "tuesday": 1, - "turn": 1, - "undergoes": 1, - "unknown": 1, - "unless": 1, - "until": 1, - "use": 3, - "uses": 1, - "verifying": 1, - "version": 1, - "versioning": 1, - "wait": 1, - "wednesday": 1, - "weeks": 2, - "well": 1, - "wheels": 1, - "when": 1, - "where": 3, - "which": 1, - "will": 5, - "with": 5, - "work": 3, - "yy": 22 - } - }, - "/releases/schedule/": { - "headings": [ - "intended audience" - ], - "words": { - "audience": 1, - "community": 1, - "developers": 1, - "intended": 1, - "operations": 1 - } - }, - "/resources/": { - "headings": [ - "resources" - ], - "words": { - "and": 1, - "detailed": 1, - "documentation": 1, - "in": 1, - "information": 1, - "of": 1, - "other": 1, - "referenced": 1, - "resources": 2, - "sections": 1, - "this": 1 - } - }, - "/resources/auto-merger/": { - "headings": [ - "auto-merger", - "overview", - "intended audience", - "summary", - "merge criteria" - ], - "words": { - "8638": 1, - "a": 4, - "active": 1, - "adds": 1, - "admin": 2, - "aj": 1, - "ajschmidt8": 1, - "all": 3, - "allows": 1, - "an": 1, - "and": 3, - "any": 3, - "applied": 1, - "approvers": 1, - "are": 4, - "as": 1, - "audience": 1, - "authors": 1, - "auto": 5, - "automated": 1, - "automatically": 1, - "back": 1, - "base": 1, - "be": 8, - "become": 1, - "been": 3, - "below": 3, - "besides": 1, - "brackets": 1, - "branch": 3, - "breaks": 1, - "case": 2, - "changes": 1, - "checker": 2, - "checks": 1, - "ci": 1, - "com": 3, - "comment": 6, - "commit": 4, - "commits": 1, - "community": 1, - "conflicts": 2, - "consistent": 1, - "correct": 1, - "criteria": 5, - "cudf": 1, - "developers": 1, - "development": 1, - "do": 1, - "douglass": 1, - "ensures": 3, - "example": 1, - "extra": 1, - "facilitate": 1, - "for": 1, - "formatted": 2, - "from": 2, - "github": 3, - "given": 1, - "has": 1, - "have": 7, - "https": 3, - "if": 3, - "immediately": 1, - "implemented": 1, - "in": 2, - "includes": 1, - "intended": 1, - "into": 1, - "is": 3, - "label": 1, - "labels": 1, - "left": 3, - "like": 2, - "line": 1, - "main": 1, - "merge": 15, - "merged": 3, - "merger": 5, - "merges": 1, - "message": 1, - "messages": 2, - "must": 3, - "need": 1, - "no": 1, - "nosquash": 2, - "not": 5, - "note": 1, - "number": 1, - "occur": 1, - "of": 1, - "on": 4, - "optional": 1, - "or": 3, - "order": 1, - "other": 1, - "overview": 1, - "owner": 1, - "passing": 1, - "permissions": 1, - "pr": 3, - "privileges": 1, - "process": 1, - "prs": 1, - "pull": 11, - "purposes": 1, - "rapids": 1, - "rapidsai": 1, - "ray": 1, - "raydouglass": 1, - "release": 1, - "removed": 1, - "repo": 1, - "repositories": 1, - "request": 7, - "requested": 1, - "requests": 4, - "required": 1, - "resolved": 1, - "run": 1, - "satisfied": 4, - "scheduled": 1, - "schmidt": 1, - "secondary": 1, - "serves": 1, - "simply": 1, - "some": 2, - "sometimes": 1, - "square": 1, - "squash": 1, - "squashed": 1, - "summary": 2, - "text": 1, - "that": 1, - "the": 25, - "there": 1, - "these": 1, - "this": 2, - "title": 3, - "to": 8, - "two": 1, - "type": 1, - "under": 1, - "url": 1, - "use": 4, - "used": 2, - "useful": 1, - "user": 1, - "users": 1, - "want": 1, - "was": 1, - "we": 1, - "when": 5, - "who": 2, - "will": 7, - "write": 2 - } - }, - "/resources/burn-down-guide/": { - "headings": [ - "burn down guide", - "overview", - "intended audience", - "tasks", - "branches", - "create", - "update", - "push", - "project boards", - "gpuci jobs", - "forward-mergers", - "announce" - ], - "words": { - "0": 15, - "0a": 2, - "1": 1, - "10": 5, - "13": 1, - "15": 1, - "16": 1, - "2": 1, - "20": 1, - "20forward": 1, - "3": 1, - "4": 1, - "5": 2, - "6": 1, - "7": 1, - "8": 1, - "9": 8, - "a": 6, - "add": 1, - "adding": 1, - "ai": 2, - "all": 2, - "am": 1, - "and": 6, - "announce": 3, - "announcement": 1, - "any": 2, - "are": 1, - "arrow": 2, - "as": 2, - "at": 1, - "audience": 1, - "august": 1, - "available": 1, - "b": 16, - "badges": 1, - "base": 1, - "before": 1, - "begun": 1, - "board": 3, - "boards": 5, - "branch": 12, - "branches": 2, - "build": 1, - "burn": 9, - "but": 1, - "by": 1, - "changelog": 1, - "changes": 1, - "channel": 1, - "check": 1, - "checkout": 1, - "ci": 1, - "close": 1, - "com": 13, - "commit": 2, - "concentrate": 1, - "configuration": 1, - "copy": 1, - "correct": 1, - "create": 5, - "critical": 1, - "cuda": 5, - "cudf": 5, - "cugraph": 5, - "cuml": 5, - "current": 2, - "custrings": 5, - "dask": 5, - "deemed": 1, - "default": 1, - "description": 1, - "details": 1, - "dev": 1, - "development": 2, - "doc": 1, - "docs": 2, - "documentation": 2, - "down": 11, - "downstream": 1, - "each": 3, - "efforts": 1, - "end": 1, - "ends": 1, - "ensure": 1, - "fetch": 1, - "file": 1, - "files": 2, - "fire": 2, - "follow": 1, - "following": 2, - "for": 7, - "forward": 3, - "from": 2, - "full": 1, - "generate": 1, - "gh": 2, - "git": 6, - "github": 12, - "given": 1, - "gpuci": 5, - "gpuopenanalytics": 1, - "guide": 2, - "has": 1, - "have": 1, - "head": 2, - "https": 15, - "in": 5, - "include": 1, - "including": 1, - "instructions": 1, - "intended": 1, - "is": 4, - "issues": 3, - "it": 2, - "job": 4, - "jobs": 3, - "keep": 1, - "maintainers": 1, - "make": 1, - "md": 2, - "merge": 2, - "mergers": 4, - "merging": 1, - "mind": 1, - "more": 1, - "move": 1, - "moved": 1, - "name": 1, - "navigate": 1, - "new": 5, - "next": 1, - "not": 1, - "numbers": 1, - "of": 3, - "on": 3, - "open": 2, - "operations": 1, - "or": 1, - "origin": 4, - "other": 1, - "overview": 1, - "parameters": 1, - "perform": 1, - "pics": 1, - "place": 1, - "please": 1, - "process": 2, - "project": 4, - "projects": 12, - "prs": 4, - "push": 4, - "rapids": 6, - "rapidsai": 12, - "readme": 1, - "release": 2, - "releases": 1, - "required": 1, - "rmm": 5, - "run": 1, - "schedule": 1, - "scm": 1, - "section": 1, - "see": 2, - "seed": 1, - "sh": 1, - "stage": 1, - "start": 1, - "steps": 1, - "stop": 1, - "such": 1, - "suggested": 1, - "sure": 1, - "tag": 2, - "target": 1, - "tasks": 1, - "template": 1, - "that": 1, - "the": 22, - "then": 2, - "these": 1, - "they": 1, - "this": 2, - "to": 15, - "tuesday": 1, - "unless": 1, - "update": 7, - "updates": 1, - "v0": 16, - "version": 4, - "view": 1, - "warning": 1, - "when": 1, - "where": 1, - "will": 1, - "yet": 1 - } - }, - "/resources/changelog/": { - "headings": [ - "changelog format", - "overview", - "intended audience", - "process", - "body", - "pull request labels", - "category label (choose one):", - "breaking label (choose one):" - ], - "words": { - "a": 6, - "applied": 1, - "at": 1, - "audience": 1, - "automatically": 1, - "be": 4, - "body": 3, - "breaking": 6, - "bug": 2, - "by": 1, - "can": 1, - "categorize": 1, - "categorized": 1, - "categorizes": 1, - "category": 1, - "change": 2, - "changelog": 3, - "changes": 1, - "choose": 2, - "com": 1, - "community": 1, - "consult": 1, - "contains": 1, - "contents": 1, - "copied": 1, - "correctly": 1, - "cudf": 1, - "cycle": 1, - "determines": 1, - "determining": 1, - "developers": 2, - "development": 1, - "directory": 1, - "doc": 1, - "documentation": 1, - "during": 1, - "e": 1, - "each": 4, - "feature": 1, - "features": 1, - "file": 1, - "fixes": 1, - "following": 2, - "for": 2, - "format": 1, - "found": 2, - "functionality": 1, - "github": 3, - "guidelines": 1, - "https": 1, - "i": 1, - "if": 1, - "improvement": 1, - "improvements": 1, - "in": 5, - "intended": 1, - "into": 2, - "is": 1, - "label": 2, - "labels": 2, - "leads": 1, - "list": 1, - "md": 1, - "merged": 1, - "must": 1, - "new": 1, - "non": 1, - "note": 1, - "of": 6, - "on": 1, - "one": 2, - "order": 1, - "overview": 1, - "pics": 1, - "pr": 1, - "pre": 5, - "process": 2, - "project": 1, - "projects": 1, - "pull": 4, - "rapids": 2, - "rapidsai": 1, - "recorded": 1, - "release": 7, - "releases": 2, - "repo": 1, - "repository": 2, - "request": 2, - "requests": 3, - "root": 1, - "s": 3, - "section": 1, - "sections": 1, - "set": 1, - "should": 1, - "specific": 1, - "summary": 1, - "the": 11, - "their": 1, - "there": 1, - "time": 1, - "to": 3, - "used": 1, - "user": 1, - "will": 2, - "with": 1 - } - }, - "/resources/conduct/": { - "headings": [ - "contributor covenant code of conduct", - "overview", - "intended audience", - "our pledge", - "our standards", - "our responsibilities", - "scope", - "enforcement", - "attribution" - ], - "words": { - "1": 2, - "4": 2, - "a": 7, - "about": 1, - "abusive": 1, - "acceptable": 1, - "accepting": 1, - "account": 1, - "acting": 1, - "action": 1, - "adapted": 1, - "address": 2, - "advances": 1, - "age": 1, - "ai": 1, - "aligned": 1, - "all": 2, - "an": 7, - "and": 19, - "answers": 1, - "any": 2, - "appearance": 1, - "applies": 1, - "appointed": 1, - "appropriate": 2, - "are": 3, - "as": 4, - "at": 3, - "attacks": 1, - "attention": 1, - "attribution": 1, - "audience": 1, - "available": 1, - "ban": 1, - "be": 5, - "behavior": 5, - "behaviors": 1, - "being": 1, - "best": 1, - "body": 1, - "both": 1, - "by": 4, - "characteristics": 1, - "circumstances": 1, - "clarified": 1, - "clarifying": 1, - "code": 9, - "comments": 2, - "commits": 1, - "common": 1, - "community": 6, - "complaints": 1, - "conduct": 10, - "confidentiality": 1, - "considered": 1, - "constructive": 1, - "contacting": 1, - "contributes": 1, - "contributions": 1, - "contributor": 5, - "contributors": 1, - "corrective": 1, - "could": 1, - "covenant": 4, - "creating": 1, - "criticism": 1, - "deem": 1, - "deemed": 1, - "define": 1, - "defined": 1, - "derogatory": 1, - "details": 1, - "determined": 1, - "developers": 1, - "differing": 1, - "disability": 1, - "do": 1, - "e": 1, - "economic": 1, - "edit": 1, - "edits": 1, - "education": 1, - "electronic": 1, - "empathy": 1, - "enforce": 1, - "enforced": 1, - "enforcement": 2, - "environment": 2, - "ethnicity": 1, - "event": 1, - "everyone": 1, - "examples": 3, - "expected": 1, - "experience": 2, - "experiences": 1, - "explicit": 1, - "expression": 1, - "face": 1, - "fair": 1, - "faith": 1, - "faq": 1, - "focusing": 1, - "follow": 1, - "followed": 1, - "for": 6, - "fostering": 1, - "free": 1, - "from": 1, - "further": 2, - "gender": 1, - "good": 1, - "gracefully": 1, - "harassing": 1, - "harassment": 2, - "harmful": 1, - "have": 1, - "html": 1, - "https": 2, - "identity": 2, - "imagery": 1, - "in": 7, - "inappropriate": 2, - "incident": 1, - "include": 3, - "inclusive": 1, - "individual": 1, - "information": 1, - "instances": 2, - "insulting": 1, - "intended": 1, - "interest": 1, - "investigated": 1, - "is": 5, - "issues": 1, - "its": 1, - "language": 2, - "leadership": 1, - "leads": 1, - "level": 1, - "mail": 1, - "maintain": 1, - "maintainers": 5, - "making": 1, - "may": 4, - "media": 1, - "members": 2, - "nationality": 1, - "necessary": 1, - "not": 2, - "obligated": 1, - "of": 23, - "offensive": 1, - "official": 2, - "offline": 1, - "on": 1, - "online": 1, - "open": 1, - "or": 17, - "org": 2, - "orientation": 1, - "other": 5, - "others": 1, - "otherwise": 1, - "our": 5, - "overview": 1, - "participants": 1, - "participation": 1, - "permanent": 1, - "permanently": 1, - "permission": 1, - "personal": 2, - "physical": 1, - "pledge": 2, - "policies": 1, - "political": 1, - "positive": 1, - "posted": 1, - "posting": 1, - "private": 2, - "professional": 1, - "project": 14, - "projects": 1, - "public": 2, - "publishing": 1, - "questions": 1, - "race": 1, - "rapids": 2, - "reasonably": 1, - "regard": 1, - "regardless": 1, - "reject": 1, - "religion": 1, - "remove": 1, - "repercussions": 1, - "reported": 1, - "reporter": 1, - "representation": 1, - "representative": 1, - "representing": 2, - "respectful": 1, - "response": 2, - "responsibilities": 1, - "responsibility": 1, - "responsible": 1, - "result": 1, - "reviewed": 1, - "right": 1, - "s": 1, - "scope": 1, - "see": 1, - "separately": 1, - "setting": 1, - "sex": 1, - "sexual": 2, - "sexualized": 1, - "showing": 1, - "size": 1, - "social": 1, - "socio": 1, - "spaces": 2, - "specific": 1, - "standards": 2, - "status": 1, - "such": 1, - "take": 1, - "team": 2, - "temporarily": 1, - "temporary": 1, - "that": 4, - "the": 14, - "they": 1, - "this": 4, - "threatening": 1, - "to": 11, - "towards": 1, - "trolling": 1, - "unacceptable": 3, - "unwelcome": 1, - "use": 1, - "using": 2, - "version": 2, - "via": 1, - "viewpoints": 1, - "we": 1, - "welcoming": 2, - "what": 1, - "when": 1, - "which": 1, - "who": 1, - "wiki": 1, - "will": 2, - "with": 1, - "within": 1, - "without": 1, - "www": 2 - } - }, - "/resources/github-actions/": { - "headings": [ - "github actions", - "overview", - "intended audience" - ], - "words": { - "actions": 3, - "audience": 1, - "be": 1, - "can": 1, - "cd": 1, - "ci": 1, - "developers": 1, - "documentation": 1, - "for": 2, - "github": 3, - "here": 1, - "intended": 1, - "official": 1, - "operations": 1, - "overview": 1, - "rapids": 1, - "team": 1, - "the": 2, - "uses": 1, - "viewed": 1 - } - }, - "/resources/label-checker/": { - "headings": [ - "label checker", - "overview", - "intended audience", - "summary", - "label checker statuses" - ], - "words": { - "00": 1, - "06": 1, - "a": 2, - "above": 1, - "action": 1, - "actions": 1, - "add": 3, - "additionally": 1, - "all": 1, - "and": 1, - "any": 1, - "applied": 2, - "audience": 1, - "automated": 1, - "be": 1, - "below": 1, - "breaking": 4, - "breaks": 1, - "bug": 1, - "by": 1, - "can": 1, - "case": 1, - "categories": 1, - "categorized": 1, - "categorizes": 1, - "category": 2, - "changelogs": 1, - "check": 4, - "checker": 8, - "community": 1, - "contains": 1, - "correctly": 2, - "corresponding": 1, - "cudf": 1, - "determines": 1, - "developers": 1, - "do": 2, - "doc": 1, - "e": 1, - "each": 5, - "end": 1, - "ensure": 2, - "fail": 1, - "feature": 1, - "following": 1, - "for": 4, - "from": 5, - "functionality": 1, - "get": 1, - "github": 2, - "have": 1, - "helps": 1, - "i": 1, - "improvement": 1, - "in": 2, - "include": 1, - "includes": 1, - "insensitive": 1, - "intended": 1, - "is": 2, - "label": 17, - "labels": 1, - "leads": 1, - "list": 4, - "merge": 2, - "must": 1, - "non": 1, - "none": 1, - "not": 3, - "of": 3, - "on": 1, - "one": 5, - "only": 1, - "operations": 1, - "or": 2, - "order": 1, - "our": 1, - "overview": 1, - "pass": 1, - "possible": 1, - "project": 1, - "projects": 1, - "published": 1, - "pull": 6, - "rapids": 2, - "release": 1, - "remove": 1, - "repositories": 1, - "request": 5, - "requests": 2, - "required": 2, - "some": 2, - "status": 1, - "statuses": 2, - "string": 1, - "summary": 2, - "table": 1, - "that": 2, - "the": 11, - "their": 1, - "to": 1, - "used": 1, - "users": 1, - "v21": 1, - "when": 1, - "whether": 1, - "which": 1, - "will": 1 - } - }, - "/resources/merge-barriers/": { - "headings": [ - "merge barriers check", - "overview", - "intended audience", - "summary" - ], - "words": { - "a": 9, - "action": 1, - "adding": 1, - "after": 1, - "any": 1, - "are": 1, - "as": 3, - "audience": 1, - "barrier": 5, - "barriers": 5, - "be": 7, - "before": 1, - "bot": 2, - "branch": 1, - "broad": 1, - "by": 2, - "can": 4, - "cannot": 1, - "cause": 1, - "check": 4, - "checks": 1, - "commit": 2, - "commits": 1, - "community": 1, - "configurable": 1, - "conflicts": 1, - "date": 2, - "description": 1, - "developers": 1, - "disables": 1, - "due": 1, - "easiest": 1, - "editing": 1, - "enables": 1, - "explicitly": 1, - "file": 1, - "fix": 1, - "following": 2, - "for": 2, - "from": 2, - "generic": 1, - "github": 2, - "have": 1, - "highly": 1, - "if": 2, - "implications": 1, - "in": 3, - "intended": 1, - "into": 1, - "is": 5, - "it": 2, - "keep": 1, - "latest": 1, - "leads": 1, - "likely": 1, - "line": 2, - "linting": 1, - "logical": 1, - "many": 1, - "marked": 2, - "merge": 13, - "merged": 5, - "missing": 1, - "more": 1, - "no": 1, - "operations": 1, - "ops": 2, - "or": 1, - "origin": 1, - "other": 1, - "overview": 1, - "project": 1, - "pull": 10, - "reaching": 1, - "reasonably": 1, - "recently": 1, - "reformatting": 1, - "repository": 1, - "request": 6, - "requests": 4, - "required": 1, - "requirements": 1, - "see": 1, - "simply": 1, - "source": 1, - "such": 1, - "summary": 1, - "target": 1, - "that": 2, - "the": 14, - "they": 1, - "this": 2, - "to": 9, - "true": 2, - "unless": 1, - "up": 2, - "updated": 1, - "used": 1, - "value": 1, - "whether": 1, - "which": 1, - "wide": 1, - "with": 4, - "yaml": 1 - } - }, - "/resources/recently-updated/": { - "headings": [ - "recently updated check", - "overview", - "intended audience", - "summary" - ], - "words": { - "5": 2, - "a": 8, - "action": 1, - "actions": 1, - "additional": 1, - "amount": 1, - "are": 4, - "aren": 1, - "as": 1, - "assurances": 1, - "audience": 1, - "barriers": 1, - "be": 5, - "been": 3, - "before": 1, - "behind": 1, - "bot": 1, - "branch": 2, - "breaking": 2, - "but": 2, - "by": 1, - "changes": 4, - "check": 4, - "checks": 1, - "ci": 1, - "comes": 1, - "commit": 3, - "commits": 4, - "community": 1, - "compromise": 1, - "confidence": 1, - "configurable": 1, - "configured": 1, - "control": 1, - "corresponding": 1, - "could": 1, - "cudf": 1, - "current": 1, - "date": 5, - "defaults": 1, - "developers": 1, - "development": 1, - "disables": 1, - "does": 2, - "doesn": 1, - "dramatically": 1, - "e": 1, - "each": 1, - "editing": 1, - "effectively": 1, - "enables": 1, - "ensure": 2, - "entirely": 1, - "even": 1, - "failure": 1, - "file": 1, - "following": 1, - "for": 4, - "from": 2, - "g": 1, - "get": 1, - "github": 4, - "guarantee": 1, - "has": 2, - "have": 1, - "head": 2, - "help": 1, - "high": 1, - "how": 3, - "if": 3, - "in": 2, - "increase": 1, - "intended": 1, - "into": 3, - "introduced": 3, - "is": 4, - "it": 2, - "last": 1, - "latest": 2, - "leads": 1, - "like": 1, - "many": 2, - "means": 1, - "merge": 4, - "merged": 2, - "merging": 2, - "method": 1, - "more": 1, - "must": 1, - "need": 1, - "nightly": 1, - "not": 4, - "note": 1, - "of": 5, - "on": 1, - "operations": 1, - "ops": 1, - "out": 1, - "over": 1, - "overview": 1, - "passing": 1, - "possibility": 1, - "project": 1, - "provide": 2, - "pull": 14, - "rapids": 2, - "reasonably": 1, - "recently": 7, - "repositories": 1, - "repository": 4, - "request": 7, - "requests": 7, - "result": 1, - "run": 1, - "s": 1, - "see": 1, - "set": 1, - "sets": 1, - "significantly": 1, - "similar": 1, - "since": 2, - "some": 1, - "source": 4, - "specific": 1, - "squash": 1, - "summary": 1, - "t": 2, - "takes": 1, - "target": 1, - "testing": 3, - "tests": 3, - "that": 7, - "the": 23, - "there": 1, - "therefore": 1, - "this": 2, - "threshold": 3, - "time": 1, - "to": 12, - "trigger": 1, - "true": 1, - "up": 4, - "updated": 8, - "uses": 1, - "value": 1, - "values": 1, - "volume": 1, - "way": 1, - "whether": 1, - "which": 3, - "will": 1, - "with": 3, - "work": 1, - "would": 2, - "yaml": 1 - } - }, - "/resources/reproducing-ci/": { - "headings": [ - "reproducing ci locally", - "overview", - "intended audience" - ], - "words": { - "about": 1, - "and": 2, - "applies": 1, - "at": 1, - "audience": 1, - "builds": 2, - "ci": 2, - "conda": 1, - "developers": 1, - "helpful": 1, - "information": 2, - "intended": 1, - "locally": 2, - "only": 1, - "operations": 1, - "outlines": 1, - "overview": 1, - "page": 1, - "related": 1, - "reproducing": 2, - "some": 1, - "tests": 2, - "this": 3, - "time": 1, - "to": 1 - } - }, - "/resources/telemetry/": { - "headings": [ - "telemetry", - "overview", - "intended audience" - ], - "words": { - "and": 2, - "are": 1, - "audience": 1, - "be": 1, - "build": 1, - "ci": 1, - "collects": 1, - "data": 1, - "from": 1, - "impacts": 1, - "insights": 1, - "intended": 1, - "into": 1, - "jobs": 1, - "might": 1, - "operations": 1, - "optimizations": 1, - "our": 1, - "overview": 1, - "potential": 1, - "provide": 1, - "rapids": 1, - "speed": 1, - "team": 1, - "telemetry": 2, - "test": 1, - "that": 1, - "the": 1, - "these": 1, - "time": 2, - "to": 1, - "used": 1, - "worthwhile": 1 - } - }, - "/resources/versions/": { - "headings": [ - "versions and tags", - "overview", - "intended audience", - "versioning method", - "release types and tagging", - "hotfix/patch", - "cleaning up accidental publications on anaconda.org", - "remove all files for a given package name with a specific version", - "copy files from one channel to another" - ], - "words": { - "0": 3, - "04": 2, - "1": 3, - "13": 3, - "2": 3, - "2021": 1, - "26": 2, - "27": 1, - "3": 1, - "a": 8, - "abi": 1, - "about": 1, - "accident": 1, - "accidental": 1, - "accidentally": 1, - "accompanied": 1, - "added": 1, - "all": 3, - "alpha": 1, - "an": 1, - "anaconda": 7, - "and": 10, - "another": 1, - "api": 2, - "are": 3, - "as": 1, - "at": 1, - "audience": 1, - "aware": 1, - "be": 3, - "both": 2, - "bug": 1, - "by": 4, - "c": 2, - "calver": 2, - "careful": 1, - "cause": 2, - "change": 1, - "changes": 1, - "channel": 9, - "channels": 3, - "cleaning": 1, - "command": 2, - "commands": 1, - "community": 1, - "compatibility": 1, - "conda": 2, - "constraint": 1, - "contain": 1, - "copy": 4, - "could": 1, - "create": 1, - "critical": 1, - "cuda": 1, - "current": 2, - "destination": 1, - "developers": 1, - "documentation": 1, - "doesn": 1, - "each": 2, - "easily": 1, - "established": 1, - "example": 2, - "features": 1, - "files": 2, - "fix": 1, - "fixes": 1, - "for": 8, - "forge": 1, - "formatting": 1, - "from": 1, - "generally": 1, - "git": 1, - "given": 1, - "governed": 1, - "group": 1, - "groups": 1, - "guaranteed": 1, - "has": 1, - "have": 1, - "hotfix": 5, - "how": 1, - "if": 2, - "impacts": 1, - "in": 7, - "incrementing": 1, - "indicates": 3, - "information": 1, - "install": 2, - "intended": 1, - "introduced": 1, - "involved": 1, - "is": 9, - "issues": 1, - "it": 1, - "june": 1, - "just": 2, - "leading": 1, - "leads": 1, - "limit": 1, - "list": 1, - "logged": 1, - "logger": 3, - "login": 1, - "make": 1, - "manage": 1, - "may": 1, - "method": 2, - "methodology": 1, - "mm": 3, - "month": 1, - "more": 1, - "n": 1, - "name": 1, - "need": 2, - "new": 1, - "nightlies": 1, - "nightly": 5, - "no": 1, - "not": 5, - "notation": 1, - "number": 1, - "occurs": 1, - "of": 5, - "older": 1, - "on": 4, - "one": 3, - "only": 1, - "or": 3, - "org": 1, - "organizations": 1, - "other": 1, - "our": 1, - "overview": 1, - "owner": 3, - "package": 4, - "packages": 4, - "padded": 3, - "patch": 5, - "pick": 1, - "pp": 2, - "priority": 1, - "problems": 1, - "procedures": 1, - "project": 1, - "projects": 3, - "public": 1, - "publications": 1, - "published": 2, - "python": 1, - "rapids": 9, - "rapidsai": 9, - "real": 2, - "recommended": 1, - "release": 9, - "releases": 5, - "remove": 4, - "removing": 1, - "repo": 1, - "require": 1, - "resulted": 1, - "s": 2, - "same": 1, - "see": 1, - "sense": 1, - "should": 1, - "so": 1, - "solution": 1, - "some": 1, - "source": 1, - "specific": 1, - "starting": 1, - "strict": 1, - "summary": 1, - "t": 1, - "tag": 1, - "tagging": 1, - "tags": 2, - "team": 1, - "that": 4, - "the": 24, - "there": 1, - "these": 2, - "they": 1, - "this": 3, - "time": 2, - "to": 12, - "types": 1, - "typically": 1, - "up": 2, - "uploaded": 1, - "use": 2, - "used": 1, - "user": 1, - "users": 1, - "using": 1, - "v": 1, - "version": 8, - "versioning": 4, - "versions": 1, - "very": 1, - "way": 1, - "we": 2, - "well": 1, - "were": 1, - "when": 1, - "where": 1, - "which": 1, - "will": 1, - "with": 4, - "within": 1, - "would": 2, - "writing": 1, - "year": 1, - "yy": 3, - "zero": 3 - } - }, - "/user-guide/": { - "headings": [ - "rapids featured user guides" - ], - "words": { - "10": 3, - "a": 10, - "accelerated": 6, - "accelerator": 1, - "after": 1, - "algorithms": 2, - "also": 3, - "an": 2, - "analytics": 4, - "and": 23, - "apache": 1, - "api": 1, - "are": 2, - "as": 1, - "available": 1, - "aws": 2, - "azure": 2, - "backend": 1, - "bandwidth": 1, - "basic": 1, - "below": 1, - "broader": 1, - "but": 1, - "c": 1, - "capabilities": 1, - "change": 1, - "cloud": 2, - "code": 2, - "collection": 2, - "community": 1, - "completely": 1, - "computer": 1, - "computing": 1, - "concepts": 1, - "create": 1, - "cross": 1, - "cucim": 1, - "cuda": 1, - "cudf": 5, - "cugraph": 3, - "cuml": 3, - "cuspatial": 2, - "cuxfilter": 2, - "dashboard": 1, - "dask": 2, - "data": 3, - "databricks": 1, - "dataframe": 1, - "deployment": 2, - "designed": 1, - "dl": 1, - "docs": 1, - "documentation": 1, - "each": 1, - "easy": 1, - "end": 2, - "estimator": 1, - "etl": 2, - "evaluating": 1, - "example": 1, - "examples": 5, - "extensive": 1, - "familiar": 1, - "featured": 1, - "features": 1, - "feel": 1, - "filtered": 1, - "for": 12, - "framework": 1, - "from": 1, - "gcp": 1, - "geared": 1, - "general": 1, - "generally": 1, - "get": 2, - "getting": 2, - "good": 2, - "google": 1, - "gpu": 4, - "graph": 2, - "guide": 5, - "guides": 5, - "have": 1, - "help": 2, - "helpful": 2, - "high": 1, - "hood": 1, - "how": 1, - "hpc": 1, - "hpo": 1, - "hyperparameter": 1, - "ibm": 1, - "in": 4, - "includes": 1, - "including": 1, - "individual": 1, - "integrate": 1, - "integration": 1, - "interaction": 1, - "intro": 3, - "introduce": 1, - "introduction": 3, - "is": 8, - "key": 1, - "kubernetes": 1, - "learning": 5, - "libraries": 2, - "links": 2, - "look": 1, - "machine": 5, - "mainly": 1, - "memory": 1, - "minutes": 3, - "ml": 2, - "modeled": 1, - "models": 1, - "more": 3, - "networkx": 2, - "new": 2, - "notebook": 1, - "notebooks": 2, - "nvidia": 1, - "nx": 1, - "objects": 1, - "of": 6, - "on": 2, - "optimization": 1, - "optimized": 1, - "or": 1, - "overview": 3, - "pandas": 1, - "path": 1, - "pipelines": 1, - "primitives": 2, - "processing": 1, - "project": 1, - "python": 2, - "quick": 1, - "quickly": 1, - "raft": 1, - "rapids": 11, - "related": 1, - "repository": 2, - "resources": 1, - "running": 2, - "sagemaker": 1, - "samples": 1, - "science": 3, - "scientific": 1, - "services": 2, - "short": 1, - "showcasing": 1, - "simple": 1, - "some": 1, - "spark": 3, - "spatial": 2, - "start": 9, - "started": 2, - "structure": 1, - "that": 1, - "the": 21, - "their": 1, - "there": 2, - "this": 1, - "to": 18, - "tools": 1, - "training": 1, - "tutorials": 1, - "under": 1, - "up": 1, - "use": 3, - "used": 1, - "user": 5, - "users": 2, - "using": 1, - "utilities": 1, - "utilizes": 1, - "very": 1, - "vision": 1, - "visualization": 2, - "welcome": 1, - "well": 1, - "with": 22, - "working": 1, - "you": 2, - "zero": 1 - } - }, - "/visualization/": { - "headings": [ - "rapids visualization guide", - "featured libraries", - "other notable libraries", - "gpu accelerated interaction", - "note: web hosted vs local hosted chart interaction", - "featured libraries", - "other notable libraries" - ], - "words": { - "1": 1, - "2020": 1, - "330": 1, - "5s": 1, - "a": 18, - "able": 1, - "about": 15, - "above": 1, - "accelerated": 4, - "acceleration": 1, - "active": 1, - "ai": 1, - "all": 1, - "also": 1, - "alternative": 2, - "although": 1, - "an": 11, - "analysis": 1, - "analytics": 2, - "and": 33, - "api": 3, - "apis": 1, - "app": 1, - "applications": 2, - "apps": 2, - "architecture": 1, - "are": 2, - "as": 2, - "ash": 1, - "at": 10, - "available": 1, - "base": 1, - "based": 4, - "be": 2, - "below": 8, - "best": 1, - "bindings": 3, - "bokeh": 5, - "brings": 1, - "browser": 2, - "brushing": 1, - "building": 3, - "but": 1, - "by": 2, - "can": 6, - "cases": 1, - "catalog": 1, - "census": 1, - "chart": 2, - "charting": 5, - "charts": 3, - "class": 1, - "code": 7, - "com": 4, - "combined": 1, - "common": 1, - "comparison": 6, - "compatibility": 4, - "complex": 4, - "component": 1, - "compute": 1, - "computed": 1, - "connecting": 1, - "convey": 1, - "core": 1, - "cpu": 6, - "create": 4, - "creating": 1, - "cross": 2, - "crossfiltering": 1, - "cudf": 6, - "cuspatial": 1, - "custom": 2, - "cuxfilter": 9, - "dash": 4, - "dashboarding": 2, - "dashboards": 3, - "dask": 1, - "data": 4, - "datapoints": 1, - "datasets": 3, - "datashader": 7, - "deck": 4, - "declarative": 1, - "defined": 1, - "demo": 5, - "designed": 1, - "developed": 2, - "diagram": 1, - "direct": 1, - "directly": 4, - "do": 1, - "docs": 2, - "documentation": 6, - "drawing": 1, - "easily": 1, - "easy": 1, - "ecosystem": 4, - "enables": 1, - "end": 1, - "environment": 2, - "example": 7, - "examples": 6, - "excellent": 1, - "explore": 11, - "express": 1, - "extends": 1, - "extension": 1, - "featured": 3, - "few": 2, - "filtering": 2, - "fit": 1, - "flexibly": 1, - "focus": 1, - "for": 14, - "found": 1, - "from": 2, - "front": 1, - "further": 6, - "gallery": 10, - "geospatial": 1, - "github": 5, - "gl": 5, - "gpu": 11, - "graph": 1, - "graphics": 1, - "graphing": 1, - "guide": 3, - "handle": 1, - "high": 4, - "holoviews": 11, - "holoviz": 4, - "host": 1, - "hosted": 2, - "html": 3, - "huge": 1, - "hvplot": 8, - "if": 1, - "images": 1, - "in": 7, - "index": 2, - "individual": 1, - "instance": 1, - "integrate": 1, - "integrates": 1, - "integration": 1, - "interacting": 1, - "interaction": 2, - "interactions": 1, - "interactive": 16, - "interactively": 1, - "interface": 1, - "is": 11, - "it": 4, - "its": 10, - "js": 2, - "jupyter": 3, - "just": 4, - "keep": 1, - "large": 2, - "learn": 1, - "lets": 1, - "letting": 1, - "level": 3, - "libraries": 12, - "library": 11, - "like": 2, - "line": 1, - "lines": 2, - "linked": 1, - "local": 1, - "main": 1, - "make": 1, - "makes": 1, - "making": 1, - "many": 1, - "matplotlib": 2, - "meaningful": 1, - "mechanism": 1, - "memory": 1, - "million": 1, - "modules": 1, - "more": 2, - "native": 1, - "neatly": 1, - "node": 6, - "nodejs": 2, - "noderapids": 1, - "not": 2, - "notable": 2, - "note": 1, - "notebooks": 2, - "npm": 1, - "objects": 1, - "of": 10, - "offer": 1, - "offered": 1, - "on": 6, - "open": 1, - "optimized": 2, - "or": 10, - "org": 11, - "other": 5, - "our": 1, - "overview": 1, - "page": 3, - "pages": 1, - "pandas": 2, - "panel": 7, - "part": 1, - "performance": 1, - "performant": 1, - "pipeline": 1, - "plot": 3, - "plotly": 8, - "plots": 5, - "plotting": 3, - "popular": 1, - "portal": 1, - "powered": 1, - "powerful": 1, - "powers": 1, - "pre": 1, - "process": 1, - "processes": 1, - "provided": 1, - "provides": 4, - "published": 1, - "pydata": 2, - "pydeck": 5, - "python": 12, - "quickly": 4, - "rapids": 17, - "rapidsai": 3, - "rasterizing": 1, - "read": 14, - "reference": 2, - "render": 1, - "rendered": 1, - "rendering": 1, - "replace": 2, - "representations": 1, - "return": 1, - "run": 7, - "s": 1, - "scatter": 1, - "seaborn": 5, - "seamless": 1, - "see": 1, - "set": 1, - "simple": 2, - "single": 1, - "solution": 1, - "source": 1, - "spatial": 2, - "specialized": 1, - "specifications": 1, - "stable": 1, - "standalone": 1, - "static": 4, - "statically": 1, - "statistics": 1, - "structures": 1, - "support": 2, - "supports": 1, - "system": 1, - "tables": 1, - "text": 1, - "that": 5, - "the": 16, - "this": 4, - "through": 2, - "to": 11, - "tool": 1, - "tools": 3, - "tree": 1, - "true": 1, - "trying": 1, - "types": 1, - "typescript": 2, - "under": 1, - "usage": 1, - "use": 3, - "used": 1, - "user": 4, - "uses": 2, - "using": 4, - "usually": 1, - "variety": 1, - "version": 1, - "very": 1, - "via": 1, - "visualization": 7, - "visualizations": 3, - "vs": 1, - "want": 1, - "web": 3, - "webgl": 2, - "website": 1, - "well": 1, - "what": 3, - "when": 2, - "which": 1, - "while": 1, - "widgets": 2, - "with": 15, - "within": 1, - "workflows": 1, - "works": 1, - "xarray": 1, - "you": 5 - } - } - }, - "source_commit": "b6afa0cbf4ddfc4c0a21f7c79b18631f214fd759" -} diff --git a/tests/test_rendering.py b/tests/test_rendering.py index bc62d890acf..a0353cedccc 100644 --- a/tests/test_rendering.py +++ b/tests/test_rendering.py @@ -7,7 +7,7 @@ from extensions import rapids_docs ROOT = Path(__file__).resolve().parents[1] -APP = SimpleNamespace(srcdir=str(ROOT / "source")) +APP = SimpleNamespace(srcdir=str(ROOT)) def test_data_driven_content() -> None: @@ -45,7 +45,7 @@ def test_data_driven_content() -> None: def test_standard_jinja_syntax_and_raw_blocks() -> None: - app = SimpleNamespace(srcdir=str(ROOT / "source")) + app = SimpleNamespace(srcdir=str(ROOT)) app.rapids_portal_data = rapids_docs._load_data(app) template = rapids_docs._jinja_environment(app).from_string( "{{ releases.stable.version }}\n{% raw %}${{ matrix.PY_VER }}{% endraw %}\n" @@ -59,7 +59,7 @@ def test_standard_jinja_syntax_and_raw_blocks() -> None: def test_notice_metadata_and_indexes() -> None: data = rapids_docs._load_data(APP) - source_notices = list((ROOT / "source" / "notices").glob("r[dgs]n[0-9][0-9][0-9][0-9].md")) + source_notices = list((ROOT / "notices").glob("r[dgs]n[0-9][0-9][0-9][0-9].md")) assert len(data["notices"]) == len(source_notices) support_notices = rapids_docs._notice_table(data, "rsn") @@ -70,3 +70,10 @@ def test_notice_metadata_and_indexes() -> None: pinned = rapids_docs._notice_table(data, pinned=True) pinned_notice = next(notice for notice in data["notices"] if notice.get("notice_pin")) assert f"{pinned_notice['notice_type'].upper()} {pinned_notice['notice_id']}" in pinned + + +def test_github_alert_conversion() -> None: + source = "> [!WARNING]\n> Do not report security vulnerabilities publicly!\n" + converted = rapids_docs._convert_github_alerts(source) + + assert converted == ("```{warning}\nDo not report security vulnerabilities publicly!\n```\n") diff --git a/source/user-guide/index.md b/user-guide/index.md similarity index 100% rename from source/user-guide/index.md rename to user-guide/index.md diff --git a/source/visualization/index.md b/visualization/index.md similarity index 100% rename from source/visualization/index.md rename to visualization/index.md