GitXplorerGitXplorer
1

nccl-examples

public
14 stars
8 forks
0 issues

Commits

List of commits on branch master.
Verified
390db5863ae56f9206437cf0c879d2e06c4915f3

Update README.md

11duo committed 7 years ago
Unverified
a5dd56d115f104ec1c2ae40a4ce8a9bc2cb77fe0

Add CMakeList.txt

11duo committed 7 years ago
Unverified
398baa3da21fa6b0762715ce98e86c73e79709a4

Add examples

11duo committed 7 years ago
Unverified
21df10221e3b83fa5a90cb404443cf9b06c56d8d

Add examples

11duo committed 7 years ago
Verified
91f07a73572c41c0c390e5c15403ebd5a2bc4458

Initial commit

11duo committed 7 years ago

README

The README file for this repository.

NCCL Examples

NCCL examples from Official NVIDIA NCCL Developer Guide for faster benchmark and deployment.

Requirement

Tested on Linux CentOS 7.4 with CUDA 9.1, OpenMPI 3.10.0, and NCCL 2.1.15.

Build

mkdir build
cd build
cmake ..
make

If NCCL was not installed in standard location:

cmake -DNCCL_LIBRARY=/opt/nccl_2.1.15-1+cuda9.1_x86_64/lib/libnccl.so
      -DNCCL_INCLUDE_DIR=/opt/nccl_2.1.15-1+cuda9.1_x86_64/include/ ..