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.
- Loading branch information
1 parent
6d1804b
commit 029c463
Showing
38 changed files
with
2,827 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
|
||
# cuGraph 0.6.0 (Date TBD) | ||
|
||
## New Features | ||
|
||
- PR #41 jaccard grmat graph bindings | ||
- PR #43 Louvain binings | ||
- PR #44 SSSP bindings | ||
|
||
## Improvements | ||
|
||
- PR #50 Reorganize directory structure to match cuDF | ||
|
||
## Bug Fixes | ||
|
||
- PR #48 ABI Fixes | ||
|
||
|
||
# cuGraph 0.5.0 (28 Jan 2019) | ||
|
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,2 @@ | ||
include python/versioneer.py | ||
include python/cugraph/_version.py |
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,19 @@ | ||
name: builddocs | ||
channels: | ||
- rapidsai | ||
- pytorch | ||
- conda-forge | ||
- numba | ||
- defaults | ||
dependencies: | ||
- python=3.6* | ||
- cugraph=0.5* | ||
- cudatoolkit=9.2 | ||
- cudf=0.5* | ||
- pyarrow=0.11.1.* | ||
- cython=0.29* | ||
- pip: | ||
- numpydoc | ||
- sphinx | ||
- sphinx-rtd-theme | ||
- sphinxcontrib-websupport |
Empty file.
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,33 @@ | ||
# cuGraph Python Package | ||
|
||
To use cuGraph, it must be cloned and built in an environment that already has the dependencies, including [cuGraph](https://github.com/rapidsai/cugraph) and its dependencies. | ||
|
||
List of dependencies: | ||
|
||
1. zlib | ||
2. cmake (>= 3.8, version 3.11.4 is recommended and there are issues with version 3.12) | ||
3. CUDA SDK (>= 9.2) | ||
4. Cython (>= 0.28) | ||
5. gcc (>=5.4.0) | ||
6. nvcc | ||
7. [cuGraph](https://github.com/rapidsai/cugraph) | ||
|
||
### Setup steps | ||
|
||
To clone: | ||
|
||
``` | ||
git clone --recurse-submodules [email protected]:rapidsai/cugraph.git | ||
``` | ||
|
||
To build the python package, in the repository root folder: | ||
|
||
``` | ||
cd python | ||
python setup.py install | ||
``` | ||
|
||
### Python Tests | ||
|
||
Additional python tests can be found in the pythontests folder, along some useful scripts. Py.test based unit testing is still being worked on. | ||
|
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,7 @@ | ||
# Copyright (c) 2018, NVIDIA CORPORATION. | ||
# Versioneer | ||
import cugraph | ||
|
||
from ._version import get_versions | ||
__version__ = get_versions()['version'] | ||
del get_versions |
Oops, something went wrong.