Skip to content

Commit

Permalink
Merge branch 'branch-0.14-docs' of https://github.com/BradReesWork/cu…
Browse files Browse the repository at this point in the history
…graph into branch-0.14-docs
  • Loading branch information
BradReesWork committed May 8, 2020
2 parents 4bd939e + 95186af commit 441fd48
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
3 changes: 1 addition & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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+


<a name="issue"></a>
Expand Down Expand Up @@ -160,4 +160,3 @@ All code must have associate test cases. Code without test will not be accepted




3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
|-------------------|-----------------------|
Expand Down
6 changes: 3 additions & 3 deletions SOURCEBUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -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+
Expand Down Expand Up @@ -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`.
Expand Down Expand Up @@ -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
Portions adopted from https://github.com/pytorch/pytorch/blob/master/CONTRIBUTING.md

0 comments on commit 441fd48

Please sign in to comment.