f93fe9bfd9
Add support for inter-node communication using sockets and InfiniBand/RoCE. Improve latency. Add support for aggregation. Improve LL/regular tuning. Remove tests as those are now at github.com/nvidia/nccl-tests .
15 satır
439 B
C
15 satır
439 B
C
/*************************************************************************
|
|
* Copyright (c) 2015-2017, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* See LICENSE.txt for license information
|
|
************************************************************************/
|
|
|
|
#ifndef NCCL_RING_H_
|
|
#define NCCL_RING_H_
|
|
#include "core.h"
|
|
|
|
ncclResult_t initRing(struct ncclComm* comm, int ringid);
|
|
ncclResult_t freeRing(struct ncclRing* ring);
|
|
|
|
#endif
|