forked from rapidsai/cugraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes to Cores, components and layout notebooks (rapidsai#2448)
Authors: - Don Acosta (https://github.com/acostadon) Approvers: - Brad Rees (https://github.com/BradReesWork) URL: rapidsai#2448
- Loading branch information
Showing
11 changed files
with
203 additions
and
426 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
# cuGraph Components Algorithms | ||
|
||
<img src="../../img/zachary_black_lines.png" width="35%"/> | ||
|
||
cuGraph Components notebooks contain Jupyter Notebooks that demonstrate algorithms to identify the connected subgraphs within a graph. | ||
|
||
Manipulation of the data before or after the graph analytic is not covered here. Extended, more problem focused, notebooks are being created and available https://github.com/rapidsai/notebooks-extended | ||
|
||
## Summary | ||
|
||
|Algorithm |Notebooks Containing |Description | | ||
| --------------- | ------------------------------------------------------------ | ------------------------------------------------------------ | | ||
|Weakly Connected Components | [ConnectedComponents](ConnectedComponents.ipynb) |Find the largest connected components in a graph. Considering directed paths or non-directed paths | | ||
|Strongly Connected Components | [ConnectedComponents](ConnectedComponents.ipynb) |Find the connected components in a graph considering directed paths only| | ||
|
||
[System Requirements](../../README.md#requirements) | ||
|
||
| Author Credit | Date | Update | cuGraph Version | Test Hardware | | ||
| --------------|------------|------------------|-----------------|----------------| | ||
| Brad Rees | 04/19/2021 | created | 0.19 | GV100, CUDA 11.0 | ||
| Don Acosta | 07/21/2022 | tested / updated | 22.08 nightly | DGX Tesla V100 CUDA 11.5 | ||
|
||
## Copyright | ||
|
||
Copyright (c) 2019-2022, NVIDIA CORPORATION. All rights reserved. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. | ||
|
||
![RAPIDS](../../img/rapids_logo.png) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
# cuGraph Core Algorithms | ||
|
||
<img src="../../img/zachary_black_lines.png" width="35%"/> | ||
|
||
cuGraph Cores notebooks contain Jupyter Notebooks that demonstrate algorithms to find maximally connected subgraphs within a graph. Either identifying the maximum k-core at the vertex (core-number) or graph level (K-Cores). | ||
|
||
Manipulation of the data before or after the graph analytic is not covered here. Extended, more problem focused, notebooks are being created and available https://github.com/rapidsai/notebooks-extended | ||
|
||
## Summary | ||
|
||
|Algorithm |Notebooks Containing |Description | | ||
| --------------- | ------------------------------------------------------------ | ------------------------------------------------------------ | | ||
|Core Number | [core-number](core-number.ipynb) | Computes the core number for every vertex of a graph G. The core number of a vertex is a maximal subgraph that contains only that vertex and others of degree k or more. | | ||
|K-Cores | [kcore](kcore.ipynb) |Find the k-core of a graph which is a maximal subgraph that contains nodes of degree k or more.| | ||
|
||
[System Requirements](../../README.md#requirements) | ||
|
||
| Author Credit | Date | Update | cuGraph Version | Test Hardware | | ||
| --------------|------------|------------------|-----------------|----------------| | ||
| Brad Rees | 04/19/2021 | created | 0.19 | GV100, CUDA 11.0 | ||
| Don Acosta | 07/21/2022 | tested / updated | 22.08 nightly | DGX Tesla V100 CUDA 11.5 | ||
|
||
## Copyright | ||
|
||
Copyright (c) 2019-2022, NVIDIA CORPORATION. All rights reserved. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. | ||
|
||
![RAPIDS](../../img/rapids_logo.png) |
Oops, something went wrong.