From 076dfe22cece8e54539de98b0ff668c528c0c1b8 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Thu, 9 Jan 2025 13:58:28 -0600 Subject: [PATCH] remove references to cugraph-ops (#72) Fixes #55 RAPIDS will stop shipping `cugraph-ops` in 25.02 (ref: https://github.com/rapidsai/cugraph-gnn/pull/99) This proposes removing all references to it in docs here. ## Notes for Reviewers In addition to auto-assigned CODEOWNERS, let's please not merge this until @alexbarghi-nv approves. ### How I found these references ```shell git grep -i cugraphops git grep -i -E 'cugraph.*ops' git grep -i ops ``` Authors: - James Lamb (https://github.com/jameslamb) Approvers: - Don Acosta (https://github.com/acostadon) - Bradley Dice (https://github.com/bdice) - Alex Barghi (https://github.com/alexbarghi-nv) URL: https://github.com/rapidsai/cugraph-docs/pull/72 --- build.sh | 4 +- ci/build_docs.sh | 2 +- ci/release/update-version.sh | 2 - .../all_cuda-125_arch-x86_64.yaml | 1 - dependencies.yaml | 1 - .../api_docs/cugraph-ops/c_cpp/index.old | 2 - .../api_docs/cugraph-ops/c_cpp/index.rst | 2 - .../source/api_docs/cugraph-ops/index.old | 11 --- .../source/api_docs/cugraph-ops/index.rst | 11 --- .../api_docs/cugraph-ops/python/dimenet.old | 24 ----- .../api_docs/cugraph-ops/python/dimenet.rst | 24 ----- .../cugraph-ops/python/graph_types.old | 34 ------- .../cugraph-ops/python/graph_types.rst | 34 ------- .../api_docs/cugraph-ops/python/index.old | 13 --- .../api_docs/cugraph-ops/python/index.rst | 13 --- .../api_docs/cugraph-ops/python/operators.old | 93 ------------------- .../api_docs/cugraph-ops/python/operators.rst | 93 ------------------- .../api_docs/cugraph-ops/python/pytorch.old | 36 ------- .../api_docs/cugraph-ops/python/pytorch.rst | 36 ------- docs/cugraph-docs/source/conf.py | 1 - .../graph_support/cugraphops_support.rst | 10 -- .../source/graph_support/gnn_support.rst | 1 - .../source/references/licenses.md | 1 - .../wholegraph/basics/wholegraph_intro.md | 2 +- 24 files changed, 4 insertions(+), 447 deletions(-) delete mode 100644 docs/cugraph-docs/source/api_docs/cugraph-ops/c_cpp/index.old delete mode 100644 docs/cugraph-docs/source/api_docs/cugraph-ops/c_cpp/index.rst delete mode 100644 docs/cugraph-docs/source/api_docs/cugraph-ops/index.old delete mode 100644 docs/cugraph-docs/source/api_docs/cugraph-ops/index.rst delete mode 100644 docs/cugraph-docs/source/api_docs/cugraph-ops/python/dimenet.old delete mode 100644 docs/cugraph-docs/source/api_docs/cugraph-ops/python/dimenet.rst delete mode 100644 docs/cugraph-docs/source/api_docs/cugraph-ops/python/graph_types.old delete mode 100644 docs/cugraph-docs/source/api_docs/cugraph-ops/python/graph_types.rst delete mode 100644 docs/cugraph-docs/source/api_docs/cugraph-ops/python/index.old delete mode 100644 docs/cugraph-docs/source/api_docs/cugraph-ops/python/index.rst delete mode 100644 docs/cugraph-docs/source/api_docs/cugraph-ops/python/operators.old delete mode 100644 docs/cugraph-docs/source/api_docs/cugraph-ops/python/operators.rst delete mode 100644 docs/cugraph-docs/source/api_docs/cugraph-ops/python/pytorch.old delete mode 100644 docs/cugraph-docs/source/api_docs/cugraph-ops/python/pytorch.rst delete mode 100644 docs/cugraph-docs/source/graph_support/cugraphops_support.rst diff --git a/build.sh b/build.sh index cc9bf60..09c2ccb 100755 --- a/build.sh +++ b/build.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) 2019-2024, NVIDIA CORPORATION. +# Copyright (c) 2019-2025, NVIDIA CORPORATION. # cugraph build script @@ -94,7 +94,7 @@ fi # Build the docs # C/C++?CUDA libraries if hasArg docs || buildDefault; then - PROJ_LIST=("libcugraph libcugraphops libwholegraph") + PROJ_LIST=("libcugraph libwholegraph") for PROJECT in ${PROJ_LIST}; do echo "PROJECT IS ${PROJECT}" XML_DIR="${REPODIR}/docs/cugraph-docs/${PROJECT}" diff --git a/ci/build_docs.sh b/ci/build_docs.sh index 9015c1b..944fec5 100755 --- a/ci/build_docs.sh +++ b/ci/build_docs.sh @@ -20,7 +20,7 @@ export RAPIDS_DOCS_DIR="$(mktemp -d)" rapids-print-env -PROJ_LIST=("libcugraph libcugraphops libwholegraph") +PROJ_LIST=("libcugraph libwholegraph") for PROJECT in ${PROJ_LIST}; do rapids-logger "Download ${PROJECT} xml_tar" diff --git a/ci/release/update-version.sh b/ci/release/update-version.sh index 91bd9c2..1c618d1 100755 --- a/ci/release/update-version.sh +++ b/ci/release/update-version.sh @@ -52,10 +52,8 @@ DEPENDENCIES=( cugraph-pyg libcugraph libcugraph_etl - libcugraphops nx-cugraph pylibcugraph - pylibcugraphops pylibwholegraph ) for DEP in "${DEPENDENCIES[@]}"; do diff --git a/conda/environments/all_cuda-125_arch-x86_64.yaml b/conda/environments/all_cuda-125_arch-x86_64.yaml index 5452411..bf7fb60 100644 --- a/conda/environments/all_cuda-125_arch-x86_64.yaml +++ b/conda/environments/all_cuda-125_arch-x86_64.yaml @@ -24,7 +24,6 @@ dependencies: - pre-commit - pydata-sphinx-theme - pylibcugraph==25.2.*,>=0.0.0a0 -- pylibcugraphops==25.2.*,>=0.0.0a0 - pylibwholegraph==25.2.*,>=0.0.0a0 - recommonmark - sphinx-copybutton diff --git a/dependencies.yaml b/dependencies.yaml index 5f480e8..34d78f2 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -82,5 +82,4 @@ dependencies: - libcugraph==25.2.*,>=0.0.0a0 - libcugraph_etl==25.2.*,>=0.0.0a0 - pylibcugraph==25.2.*,>=0.0.0a0 - - pylibcugraphops==25.2.*,>=0.0.0a0 - pylibwholegraph==25.2.*,>=0.0.0a0 diff --git a/docs/cugraph-docs/source/api_docs/cugraph-ops/c_cpp/index.old b/docs/cugraph-docs/source/api_docs/cugraph-ops/c_cpp/index.old deleted file mode 100644 index 39dae95..0000000 --- a/docs/cugraph-docs/source/api_docs/cugraph-ops/c_cpp/index.old +++ /dev/null @@ -1,2 +0,0 @@ -cugraph-ops C++ API Reference -============================= diff --git a/docs/cugraph-docs/source/api_docs/cugraph-ops/c_cpp/index.rst b/docs/cugraph-docs/source/api_docs/cugraph-ops/c_cpp/index.rst deleted file mode 100644 index 39dae95..0000000 --- a/docs/cugraph-docs/source/api_docs/cugraph-ops/c_cpp/index.rst +++ /dev/null @@ -1,2 +0,0 @@ -cugraph-ops C++ API Reference -============================= diff --git a/docs/cugraph-docs/source/api_docs/cugraph-ops/index.old b/docs/cugraph-docs/source/api_docs/cugraph-ops/index.old deleted file mode 100644 index 0f6a6c9..0000000 --- a/docs/cugraph-docs/source/api_docs/cugraph-ops/index.old +++ /dev/null @@ -1,11 +0,0 @@ -cugraph-ops API reference -========================= - -This page provides a list of all publicly accessible modules, methods and classes through `pylibcugraphops.*` namespace. - -.. toctree:: - :maxdepth: 2 - :caption: API Documentation - - python/index - c_cpp/index diff --git a/docs/cugraph-docs/source/api_docs/cugraph-ops/index.rst b/docs/cugraph-docs/source/api_docs/cugraph-ops/index.rst deleted file mode 100644 index 0f6a6c9..0000000 --- a/docs/cugraph-docs/source/api_docs/cugraph-ops/index.rst +++ /dev/null @@ -1,11 +0,0 @@ -cugraph-ops API reference -========================= - -This page provides a list of all publicly accessible modules, methods and classes through `pylibcugraphops.*` namespace. - -.. toctree:: - :maxdepth: 2 - :caption: API Documentation - - python/index - c_cpp/index diff --git a/docs/cugraph-docs/source/api_docs/cugraph-ops/python/dimenet.old b/docs/cugraph-docs/source/api_docs/cugraph-ops/python/dimenet.old deleted file mode 100644 index 6fadcc5..0000000 --- a/docs/cugraph-docs/source/api_docs/cugraph-ops/python/dimenet.old +++ /dev/null @@ -1,24 +0,0 @@ -================= -Dimenet operators -================= - -.. currentmodule:: pylibcugraphops - -Radial Basis Functions ----------------------- -.. autosummary:: - :toctree: ../../api/ops - - dimenet.radial_basis_fwd - dimenet.radial_basis_bwd - dimenet.radial_basis_bwd_bwd - -Edge-to-Edge Aggregation -------------------------- -.. autosummary:: - :toctree: ../../api/ops - - dimenet.agg_edge_to_edge_fwd - dimenet.agg_edge_to_edge_bwd - dimenet.agg_edge_to_edge_bwd2_grad - dimenet.agg_edge_to_edge_bwd2_main diff --git a/docs/cugraph-docs/source/api_docs/cugraph-ops/python/dimenet.rst b/docs/cugraph-docs/source/api_docs/cugraph-ops/python/dimenet.rst deleted file mode 100644 index 6fadcc5..0000000 --- a/docs/cugraph-docs/source/api_docs/cugraph-ops/python/dimenet.rst +++ /dev/null @@ -1,24 +0,0 @@ -================= -Dimenet operators -================= - -.. currentmodule:: pylibcugraphops - -Radial Basis Functions ----------------------- -.. autosummary:: - :toctree: ../../api/ops - - dimenet.radial_basis_fwd - dimenet.radial_basis_bwd - dimenet.radial_basis_bwd_bwd - -Edge-to-Edge Aggregation -------------------------- -.. autosummary:: - :toctree: ../../api/ops - - dimenet.agg_edge_to_edge_fwd - dimenet.agg_edge_to_edge_bwd - dimenet.agg_edge_to_edge_bwd2_grad - dimenet.agg_edge_to_edge_bwd2_main diff --git a/docs/cugraph-docs/source/api_docs/cugraph-ops/python/graph_types.old b/docs/cugraph-docs/source/api_docs/cugraph-ops/python/graph_types.old deleted file mode 100644 index 141d403..0000000 --- a/docs/cugraph-docs/source/api_docs/cugraph-ops/python/graph_types.old +++ /dev/null @@ -1,34 +0,0 @@ -=========== -Graph types -=========== - -.. currentmodule:: pylibcugraphops - - -CSC Graph ------------------ -.. autosummary:: - :toctree: ../../api/ops - - make_csc - -Heterogenous CSC Graph ----------------------- -.. autosummary:: - :toctree: ../../api/ops - - make_csc_hg - -Bipartite Graph ------------------ -.. autosummary:: - :toctree: ../../api/ops - - make_bipartite_csc - -Heterogenous Bipartite Graph ----------------------------- -.. autosummary:: - :toctree: ../../api/ops - - make_bipartite_csc_hg diff --git a/docs/cugraph-docs/source/api_docs/cugraph-ops/python/graph_types.rst b/docs/cugraph-docs/source/api_docs/cugraph-ops/python/graph_types.rst deleted file mode 100644 index 141d403..0000000 --- a/docs/cugraph-docs/source/api_docs/cugraph-ops/python/graph_types.rst +++ /dev/null @@ -1,34 +0,0 @@ -=========== -Graph types -=========== - -.. currentmodule:: pylibcugraphops - - -CSC Graph ------------------ -.. autosummary:: - :toctree: ../../api/ops - - make_csc - -Heterogenous CSC Graph ----------------------- -.. autosummary:: - :toctree: ../../api/ops - - make_csc_hg - -Bipartite Graph ------------------ -.. autosummary:: - :toctree: ../../api/ops - - make_bipartite_csc - -Heterogenous Bipartite Graph ----------------------------- -.. autosummary:: - :toctree: ../../api/ops - - make_bipartite_csc_hg diff --git a/docs/cugraph-docs/source/api_docs/cugraph-ops/python/index.old b/docs/cugraph-docs/source/api_docs/cugraph-ops/python/index.old deleted file mode 100644 index fb25f2f..0000000 --- a/docs/cugraph-docs/source/api_docs/cugraph-ops/python/index.old +++ /dev/null @@ -1,13 +0,0 @@ -cugraph-ops Python API reference -================================ - -This page provides a list of all publicly accessible modules, methods and classes through `pylibcugraphops.*` namespace. - -.. toctree:: - :maxdepth: 2 - :caption: API Documentation - - graph_types - operators - dimenet - pytorch diff --git a/docs/cugraph-docs/source/api_docs/cugraph-ops/python/index.rst b/docs/cugraph-docs/source/api_docs/cugraph-ops/python/index.rst deleted file mode 100644 index fb25f2f..0000000 --- a/docs/cugraph-docs/source/api_docs/cugraph-ops/python/index.rst +++ /dev/null @@ -1,13 +0,0 @@ -cugraph-ops Python API reference -================================ - -This page provides a list of all publicly accessible modules, methods and classes through `pylibcugraphops.*` namespace. - -.. toctree:: - :maxdepth: 2 - :caption: API Documentation - - graph_types - operators - dimenet - pytorch diff --git a/docs/cugraph-docs/source/api_docs/cugraph-ops/python/operators.old b/docs/cugraph-docs/source/api_docs/cugraph-ops/python/operators.old deleted file mode 100644 index 3e6664b..0000000 --- a/docs/cugraph-docs/source/api_docs/cugraph-ops/python/operators.old +++ /dev/null @@ -1,93 +0,0 @@ -============================= -Operators for Message-Passing -============================= - -.. currentmodule:: pylibcugraphops - -Simple Neighborhood Aggregator (SAGEConv) ------------------------------------------ -.. autosummary:: - :toctree: ../../api/ops - - operators.agg_simple_n2n_fwd - operators.agg_simple_n2n_bwd - operators.agg_simple_e2n_fwd - operators.agg_simple_e2n_bwd - operators.agg_simple_n2n_e2n_fwd - operators.agg_simple_n2n_e2n_bwd - - operators.agg_concat_n2n_fwd - operators.agg_concat_n2n_bwd - operators.agg_concat_e2n_fwd - operators.agg_concat_e2n_bwd - operators.agg_concat_n2n_e2n_fwd - operators.agg_concat_n2n_e2n_bwd - - -Weighted Neighborhood Aggregation ---------------------------------- -.. autosummary:: - :toctree: ../../api/ops - - operators.agg_weighted_n2n_fwd - operators.agg_weighted_n2n_bwd - operators.agg_concat_weighted_n2n_fwd - operators.agg_concat_weighted_n2n_bwd - -Heterogenous Aggregator using Basis Decomposition (RGCNConv) ------------------------------------------------------------- -.. autosummary:: - :toctree: ../../api/ops - - operators.agg_hg_basis_n2n_post_fwd - operators.agg_hg_basis_n2n_post_bwd - -Graph Attention (GATConv/GATv2Conv) ------------------------------------ -.. autosummary:: - :toctree: ../../api/ops - - operators.mha_gat_n2n_fwd - operators.mha_gat_n2n_bwd - operators.mha_gat_n2n_efeat_fwd - operators.mha_gat_n2n_efeat_bwd - - operators.mha_gat_v2_n2n_fwd - operators.mha_gat_v2_n2n_bwd - operators.mha_gat_v2_n2n_efeat_fwd - operators.mha_gat_v2_n2n_efeat_bwd - -Transformer-like Graph Attention (TransformerConv) --------------------------------------------------- -.. autosummary:: - :toctree: ../../api/ops - - operators.mha_gat_v2_n2n_fwd - operators.mha_gat_v2_n2n_bwd - operators.mha_gat_v2_n2n_efeat_fwd - operators.mha_gat_v2_n2n_efeat_bwd - -Directional Message-Passing (DMPNN) ------------------------------------ -.. autosummary:: - :toctree: ../../api/ops - - operators.agg_dmpnn_e2e_fwd - operators.agg_dmpnn_e2e_bwd - -Update Edges: Concatenation or Sum of Edge and Node Features ------------------------------------------------------------- -.. autosummary:: - :toctree: ../../api/ops - - operators.update_efeat_e2e_concat_fwd - operators.update_efeat_e2e_concat_bwd - - operators.update_efeat_e2e_sum_fwd - operators.update_efeat_e2e_sum_bwd - - operators.update_efeat_e2e_concat_fwd - operators.update_efeat_e2e_concat_bwd - - operators.update_efeat_e2e_sum_fwd - operators.update_efeat_e2e_sum_bwd diff --git a/docs/cugraph-docs/source/api_docs/cugraph-ops/python/operators.rst b/docs/cugraph-docs/source/api_docs/cugraph-ops/python/operators.rst deleted file mode 100644 index 3e6664b..0000000 --- a/docs/cugraph-docs/source/api_docs/cugraph-ops/python/operators.rst +++ /dev/null @@ -1,93 +0,0 @@ -============================= -Operators for Message-Passing -============================= - -.. currentmodule:: pylibcugraphops - -Simple Neighborhood Aggregator (SAGEConv) ------------------------------------------ -.. autosummary:: - :toctree: ../../api/ops - - operators.agg_simple_n2n_fwd - operators.agg_simple_n2n_bwd - operators.agg_simple_e2n_fwd - operators.agg_simple_e2n_bwd - operators.agg_simple_n2n_e2n_fwd - operators.agg_simple_n2n_e2n_bwd - - operators.agg_concat_n2n_fwd - operators.agg_concat_n2n_bwd - operators.agg_concat_e2n_fwd - operators.agg_concat_e2n_bwd - operators.agg_concat_n2n_e2n_fwd - operators.agg_concat_n2n_e2n_bwd - - -Weighted Neighborhood Aggregation ---------------------------------- -.. autosummary:: - :toctree: ../../api/ops - - operators.agg_weighted_n2n_fwd - operators.agg_weighted_n2n_bwd - operators.agg_concat_weighted_n2n_fwd - operators.agg_concat_weighted_n2n_bwd - -Heterogenous Aggregator using Basis Decomposition (RGCNConv) ------------------------------------------------------------- -.. autosummary:: - :toctree: ../../api/ops - - operators.agg_hg_basis_n2n_post_fwd - operators.agg_hg_basis_n2n_post_bwd - -Graph Attention (GATConv/GATv2Conv) ------------------------------------ -.. autosummary:: - :toctree: ../../api/ops - - operators.mha_gat_n2n_fwd - operators.mha_gat_n2n_bwd - operators.mha_gat_n2n_efeat_fwd - operators.mha_gat_n2n_efeat_bwd - - operators.mha_gat_v2_n2n_fwd - operators.mha_gat_v2_n2n_bwd - operators.mha_gat_v2_n2n_efeat_fwd - operators.mha_gat_v2_n2n_efeat_bwd - -Transformer-like Graph Attention (TransformerConv) --------------------------------------------------- -.. autosummary:: - :toctree: ../../api/ops - - operators.mha_gat_v2_n2n_fwd - operators.mha_gat_v2_n2n_bwd - operators.mha_gat_v2_n2n_efeat_fwd - operators.mha_gat_v2_n2n_efeat_bwd - -Directional Message-Passing (DMPNN) ------------------------------------ -.. autosummary:: - :toctree: ../../api/ops - - operators.agg_dmpnn_e2e_fwd - operators.agg_dmpnn_e2e_bwd - -Update Edges: Concatenation or Sum of Edge and Node Features ------------------------------------------------------------- -.. autosummary:: - :toctree: ../../api/ops - - operators.update_efeat_e2e_concat_fwd - operators.update_efeat_e2e_concat_bwd - - operators.update_efeat_e2e_sum_fwd - operators.update_efeat_e2e_sum_bwd - - operators.update_efeat_e2e_concat_fwd - operators.update_efeat_e2e_concat_bwd - - operators.update_efeat_e2e_sum_fwd - operators.update_efeat_e2e_sum_bwd diff --git a/docs/cugraph-docs/source/api_docs/cugraph-ops/python/pytorch.old b/docs/cugraph-docs/source/api_docs/cugraph-ops/python/pytorch.old deleted file mode 100644 index d2074df..0000000 --- a/docs/cugraph-docs/source/api_docs/cugraph-ops/python/pytorch.old +++ /dev/null @@ -1,36 +0,0 @@ -========================== -PyTorch Autograd Wrappers -========================== - -.. currentmodule:: pylibcugraphops.pytorch - -Simple Neighborhood Aggregator (SAGEConv) ------------------------------------------ -.. autosummary:: - :toctree: ../../api/ops - - operators.agg_concat_n2n - -Graph Attention (GATConv/GATv2Conv) ------------------------------------ -.. autosummary:: - :toctree: ../../api/ops - - operators.mha_gat_n2n - operators.mha_gat_v2_n2n - -Heterogenous Aggregator using Basis Decomposition (RGCNConv) ------------------------------------------------------------- -.. autosummary:: - :toctree: ../../api/ops - - operators.agg_hg_basis_n2n_post - - -Update Edges: Concatenation or Sum of Edge and Node Features ------------------------------------------------------------- -.. autosummary:: - :toctree: ../../api/ops - - operators.update_efeat_e2e - operators.update_efeat_e2e diff --git a/docs/cugraph-docs/source/api_docs/cugraph-ops/python/pytorch.rst b/docs/cugraph-docs/source/api_docs/cugraph-ops/python/pytorch.rst deleted file mode 100644 index d2074df..0000000 --- a/docs/cugraph-docs/source/api_docs/cugraph-ops/python/pytorch.rst +++ /dev/null @@ -1,36 +0,0 @@ -========================== -PyTorch Autograd Wrappers -========================== - -.. currentmodule:: pylibcugraphops.pytorch - -Simple Neighborhood Aggregator (SAGEConv) ------------------------------------------ -.. autosummary:: - :toctree: ../../api/ops - - operators.agg_concat_n2n - -Graph Attention (GATConv/GATv2Conv) ------------------------------------ -.. autosummary:: - :toctree: ../../api/ops - - operators.mha_gat_n2n - operators.mha_gat_v2_n2n - -Heterogenous Aggregator using Basis Decomposition (RGCNConv) ------------------------------------------------------------- -.. autosummary:: - :toctree: ../../api/ops - - operators.agg_hg_basis_n2n_post - - -Update Edges: Concatenation or Sum of Edge and Node Features ------------------------------------------------------------- -.. autosummary:: - :toctree: ../../api/ops - - operators.update_efeat_e2e - operators.update_efeat_e2e diff --git a/docs/cugraph-docs/source/conf.py b/docs/cugraph-docs/source/conf.py index 84bbb5c..86f2ea1 100644 --- a/docs/cugraph-docs/source/conf.py +++ b/docs/cugraph-docs/source/conf.py @@ -217,7 +217,6 @@ def setup(app): breathe_projects = { 'libcugraph': os.environ['XML_DIR_LIBCUGRAPH'], - 'libcugraphops': os.environ['XML_DIR_LIBCUGRAPHOPS'], 'libwholegraph': os.environ['XML_DIR_LIBWHOLEGRAPH'] } diff --git a/docs/cugraph-docs/source/graph_support/cugraphops_support.rst b/docs/cugraph-docs/source/graph_support/cugraphops_support.rst deleted file mode 100644 index fd79564..0000000 --- a/docs/cugraph-docs/source/graph_support/cugraphops_support.rst +++ /dev/null @@ -1,10 +0,0 @@ -================== -cugraphops Support -================== - -cugraph-ops aims to be a low-level, framework agnostic library providing commonly used computational primitives for GNNs and other graph operations. - -.. toctree:: - :maxdepth: 3 - - https://github.com/rapidsai/cugraph-ops/blob/branch-23.04/README.md diff --git a/docs/cugraph-docs/source/graph_support/gnn_support.rst b/docs/cugraph-docs/source/graph_support/gnn_support.rst index 639b657..7158662 100644 --- a/docs/cugraph-docs/source/graph_support/gnn_support.rst +++ b/docs/cugraph-docs/source/graph_support/gnn_support.rst @@ -8,5 +8,4 @@ Graph Neural Network Support PyG_support.md DGL_support.md - cugraphops_support.rst wholegraph_support.md diff --git a/docs/cugraph-docs/source/references/licenses.md b/docs/cugraph-docs/source/references/licenses.md index b95905d..4664724 100644 --- a/docs/cugraph-docs/source/references/licenses.md +++ b/docs/cugraph-docs/source/references/licenses.md @@ -1,7 +1,6 @@ # License Most of the Graph code is open-sourced and developed under the Apache 2.0 licnese. -The cugraph-ops code is closed sourced and developed under a NVIDIA copyright diff --git a/docs/cugraph-docs/source/wholegraph/basics/wholegraph_intro.md b/docs/cugraph-docs/source/wholegraph/basics/wholegraph_intro.md index 360f8e0..82143f4 100644 --- a/docs/cugraph-docs/source/wholegraph/basics/wholegraph_intro.md +++ b/docs/cugraph-docs/source/wholegraph/basics/wholegraph_intro.md @@ -3,7 +3,7 @@ WholeGraph helps train large-scale Graph Neural Networks(GNN). WholeGraph provides underlying storage structure called WholeMemory. WholeMemory is a Tensor like storage and provides multi-GPU support. It is optimized for NVLink systems like DGX A100 servers. -By working together with cuGraph, cuGraph-Ops, cuGraph-DGL, cuGraph-PyG, and upstream DGL and PyG, +By working together with cuGraph, cuGraph-DGL, cuGraph-PyG, and upstream DGL and PyG, it will be easy to build GNN applications. ## WholeMemory