-
Notifications
You must be signed in to change notification settings - Fork 314
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[REVIEW] DOC Adding Nx transition doc and preping for more (#1217)
* Added new Medium entry * updated to match cuML * copied to match cuML * updated list of MG algorithms * converted to Markdown * updated reference to new markdown file * removed rst file * should really be a HTML file (next release) * copy pdf files over * updates * removed ref to cuml * changelog * addressing review issues * migrated to RST Co-authored-by: BradReesWork <[email protected]>
- Loading branch information
1 parent
d9457af
commit 715e374
Showing
15 changed files
with
534 additions
and
38 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/* This contains code with copyright by the scikit-learn project, subject to | ||
the license in /thirdparty/LICENSES/LICENSE.scikit_learn */ | ||
|
||
/* copybutton */ | ||
/* Adds "Show/Hide Output" button to Examples */ | ||
|
||
.copybutton { | ||
cursor: pointer; | ||
position: absolute; | ||
top: 0px; | ||
right: 0px; | ||
border: 1px solid rgb(221, 221, 221); | ||
color: rgb(221, 221, 221); | ||
font-family: monospace; | ||
padding-left: 0.2rem; | ||
padding-right: 0.2rem; | ||
} | ||
|
||
div.highlight:hover span.copybutton::after { | ||
background: #3F556B; | ||
border-radius: 0.25rem; | ||
color: white; | ||
content: attr(title); | ||
padding: 0.25rem; | ||
position: absolute; | ||
z-index: 98; | ||
width: 100px; | ||
font-size: 0.7rem; | ||
top: 0; | ||
right: 0; | ||
} | ||
|
||
/* copy buttonn */ | ||
div.highlight:hover span.copybutton { | ||
background-color: #3F556B; | ||
color: white; | ||
} | ||
|
||
div.highlight:hover span.copybutton:hover { | ||
background-color: #20252B; | ||
} | ||
|
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,61 @@ | ||
// This contains code with copyright by the scikit-learn project, subject to | ||
// the license in /thirdparty/LICENSES/LICENSE.scikit_learn | ||
|
||
$(document).ready(function () { | ||
/* Add a [>>>] button on the top-right corner of code samples to hide | ||
* the >>> and ... prompts and the output and thus make the code | ||
* copyable. */ | ||
var div = $('.highlight-python .highlight,' + | ||
'.highlight-python3 .highlight,' + | ||
'.highlight-pycon .highlight,' + | ||
'.highlight-default .highlight') | ||
var pre = div.find('pre'); | ||
|
||
// get the styles from the current theme | ||
pre.parent().parent().css('position', 'relative'); | ||
var hide_text = 'Hide prompts and outputs'; | ||
var show_text = 'Show prompts and outputs'; | ||
|
||
// create and add the button to all the code blocks that contain >>> | ||
div.each(function (index) { | ||
var jthis = $(this); | ||
if (jthis.find('.gp').length > 0) { | ||
var button = $('<span class="copybutton">>>></span>'); | ||
button.attr('title', hide_text); | ||
button.data('hidden', 'false'); | ||
jthis.prepend(button); | ||
} | ||
// tracebacks (.gt) contain bare text elements that need to be | ||
// wrapped in a span to work with .nextUntil() (see later) | ||
jthis.find('pre:has(.gt)').contents().filter(function () { | ||
return ((this.nodeType == 3) && (this.data.trim().length > 0)); | ||
}).wrap('<span>'); | ||
}); | ||
|
||
// define the behavior of the button when it's clicked | ||
$('.copybutton').click(function (e) { | ||
e.preventDefault(); | ||
var button = $(this); | ||
if (button.data('hidden') === 'false') { | ||
// hide the code output | ||
button.parent().find('.go, .gp, .gt').hide(); | ||
button.next('pre') | ||
.find('.gt') | ||
.nextUntil('.gp, .go') | ||
.css('visibility', 'hidden'); | ||
button.css('text-decoration', 'line-through'); | ||
button.attr('title', show_text); | ||
button.data('hidden', 'true'); | ||
} else { | ||
// show the code output | ||
button.parent().find('.go, .gp, .gt').show(); | ||
button.next('pre') | ||
.find('.gt') | ||
.nextUntil('.gp, .go') | ||
.css('visibility', 'visible'); | ||
button.css('text-decoration', 'none'); | ||
button.attr('title', hide_text); | ||
button.data('hidden', 'false'); | ||
} | ||
}); | ||
}); |
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,23 @@ | ||
|
||
/* Fix references to not look like parameters */ | ||
dl.citation > dt.label { | ||
display: unset !important; | ||
float: left !important; | ||
border: unset !important; | ||
background: unset !important; | ||
padding: unset !important; | ||
margin: unset !important; | ||
font-size: unset !important; | ||
line-height: unset !important; | ||
padding-right: 0.5rem !important; | ||
} | ||
|
||
/* Add opening bracket */ | ||
dl.citation > dt.label > span::before { | ||
content: "["; | ||
} | ||
|
||
/* Add closing bracket */ | ||
dl.citation > dt.label > span::after { | ||
content: "]"; | ||
} |
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,22 @@ | ||
|
||
# cuGraph Introduction | ||
|
||
|
||
## Terminology | ||
|
||
cuGraph is a collection of GPU accelerated graph algorithms and graph utility | ||
functions. The application of graph analysis covers a lot of areas. | ||
For Example: | ||
* [Network Science](https://en.wikipedia.org/wiki/Network_science) | ||
* [Complex Network](https://en.wikipedia.org/wiki/Complex_network) | ||
* [Graph Theory](https://en.wikipedia.org/wiki/Graph_theory) | ||
* [Social Network Analysis](https://en.wikipedia.org/wiki/Social_network_analysis) | ||
|
||
cuGraph does not favor one field over another. Our developers span the | ||
breadth of fields with the focus being to produce the best graph library | ||
possible. However, each field has its own argot (jargon) for describing the | ||
graph (or network). In our documentation, we try to be consistent. In Python | ||
documentation we will mostly use the terms __Node__ and __Edge__ to better | ||
match NetworkX preferred term use, as well as other Python-based tools. At | ||
the CUDA/C layer, we favor the mathematical terms of __Vertex__ and __Edge__. | ||
|
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.