From 1beecfbd4c7aa150d299611bc654c6ed4a8747ab Mon Sep 17 00:00:00 2001 From: Brad Rees <34135411+BradReesWork@users.noreply.github.com> Date: Fri, 8 May 2020 12:24:56 -0400 Subject: [PATCH 1/4] Update CONTRIBUTING.md Co-authored-by: Seunghwa Kang <45857425+seunghwak@users.noreply.github.com> --- CONTRIBUTING.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3cd596737b4..1bb8fbb0d2c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -10,7 +10,7 @@ If you are ready to contribute, jump right to the [Contribute Code](#code) secti __Style Formating Tools:__ * `clang-format` version 8.01+ -* `flake8` version 3.5.0 +* `flake8` version 3.5.0+ @@ -159,4 +159,3 @@ All code must have associate test cases. Code without test will not be accepted - From edc9a72677a98ed0ab0adcacdd092342b3aee8ac Mon Sep 17 00:00:00 2001 From: Brad Rees <34135411+BradReesWork@users.noreply.github.com> Date: Fri, 8 May 2020 12:25:24 -0400 Subject: [PATCH 2/4] Update README.md Co-authored-by: Seunghwa Kang <45857425+seunghwak@users.noreply.github.com> --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7b81a994536..321000eb7c7 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,8 @@ cuGraph provides an auto-renumbering feature, enabled by default, during Graph c cuGraph is constantly being updatred and improved. Please see the [Transition Guide](TRANSITIONGUIDE.md) if errors are encountered with newer versions ## Graph Sizes and GPU Memory Size -The amount of memory required is dependent on the graph structure and the analytic being executed. As a simple rule of thumb, the amount of GPU memory should be about twice the size of the data size. That gives overhead for the CSV reader and other transform functions. There are ways around the rule but using smaller data chunks. +The amount of memory required is dependent on the graph structure and the analytics being executed. As a simple rule of thumb, the amount of GPU memory should be about twice the size of the data size. That gives overhead for the CSV reader and other transform functions. There are ways around the rule but using smaller data chunks. + | Size | Recomended GPU Memory | |-------------------|-----------------------| From 8ded6df634c2717fc20de3304c18bea9a15d03c7 Mon Sep 17 00:00:00 2001 From: Brad Rees <34135411+BradReesWork@users.noreply.github.com> Date: Fri, 8 May 2020 12:25:36 -0400 Subject: [PATCH 3/4] Update SOURCEBUILD.md Co-authored-by: Seunghwa Kang <45857425+seunghwak@users.noreply.github.com> --- SOURCEBUILD.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SOURCEBUILD.md b/SOURCEBUILD.md index e80ebffd63a..8f0c0603f0c 100644 --- a/SOURCEBUILD.md +++ b/SOURCEBUILD.md @@ -9,7 +9,7 @@ The cuGraph package include both a C/C++ CUDA portion and a python portion. Bot __Compiler__: * `gcc` version 5.4+ * `nvcc` version 10.0+ -* `cmake` version 3.12 +* `cmake` version 3.12+ __CUDA:__ * CUDA 10.0+ @@ -260,4 +260,4 @@ cmake .. -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DCMAKE_CXX11_ABI=OFF ``` ## Attribution -Portions adopted from https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md \ No newline at end of file +Portions adopted from https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md From 95186afb0f3cfc09bad0831eefe0452913638e25 Mon Sep 17 00:00:00 2001 From: Brad Rees <34135411+BradReesWork@users.noreply.github.com> Date: Fri, 8 May 2020 12:25:50 -0400 Subject: [PATCH 4/4] Update SOURCEBUILD.md Co-authored-by: Seunghwa Kang <45857425+seunghwak@users.noreply.github.com> --- SOURCEBUILD.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SOURCEBUILD.md b/SOURCEBUILD.md index 8f0c0603f0c..430e8700bfa 100644 --- a/SOURCEBUILD.md +++ b/SOURCEBUILD.md @@ -112,7 +112,7 @@ $ ./build.sh libcugraph -v # compile and install libcugraph with $ ./build.sh libcugraph -g # compile and install libcugraph for debug $ ./build.sh libcugraph -n # compile libcugraph but do not install -# make parallelism options can also be defined: Example build jobs to 4 (make -j4) +# make parallelism options can also be defined: Example build jobs using 4 threads (make -j4) $ PARALLEL_LEVEL=4 ./build.sh libcugraph Note that the libraries will be installed to the location set in `$PREFIX` if set (i.e. `export PREFIX=/install/path`), otherwise to `$CONDA_PREFIX`.