ファイル
rocm-systems/src/include/proxy.h
T

129 行
3.9 KiB
C++
Raw 通常表示 履歴

2020-05-12 14:40:18 -07:00
/*************************************************************************
2021-04-12 16:00:11 -07:00
* Copyright (c) 2016-2021, NVIDIA CORPORATION. All rights reserved.
2020-05-12 14:40:18 -07:00
*
* See LICENSE.txt for license information
************************************************************************/
#ifndef NCCL_PROXY_H_
#define NCCL_PROXY_H_
#include <pthread.h>
enum ncclProxyOpState { ncclProxyOpNone, ncclProxyOpReady, ncclProxyOpProgress };
struct ncclProxyArgs;
typedef ncclResult_t (*proxyProgressFunc_t)(struct ncclProxyArgs*);
2021-04-12 16:00:11 -07:00
#define NCCL_PROXY_MAX_SUBS MAXCHANNELS
static_assert(NCCL_MAX_WORK_ELEMENTS <= MAXCHANNELS, "Not enough sub space for max work elements");
struct ncclProxySubArgs {
2020-05-12 14:40:18 -07:00
struct ncclChannel* channel;
struct ncclConnector* connector;
int nsteps;
2021-04-12 16:00:11 -07:00
ssize_t sendbytes;
ssize_t recvbytes;
int sendChunkSize;
int recvChunkSize;
int delta;
2020-05-12 14:40:18 -07:00
// Internal state
2021-04-12 16:00:11 -07:00
uint64_t base;
2020-09-04 14:35:05 -07:00
uint64_t posted;
2021-04-12 16:00:11 -07:00
uint64_t received;
uint64_t flushed;
2020-09-04 14:35:05 -07:00
uint64_t transmitted;
uint64_t done;
2020-05-12 14:40:18 -07:00
uint64_t end;
void* requests[NCCL_STEPS];
2021-04-12 16:00:11 -07:00
};
struct ncclProxyArgs {
proxyProgressFunc_t progress;
struct ncclProxySubArgs subs[NCCL_PROXY_MAX_SUBS];
int nsubs;
int done;
int sliceSteps;
int chunkSteps;
int chunkSize;
uint64_t opCount;
uint64_t commOpCount;
int protocol;
ncclDataType_t dtype;
ncclRedOp_t redOp;
ncclPattern_t pattern;
int root;
int state;
char* sharedBuff[NCCL_STEPS];
int sharedSize[NCCL_STEPS];
2020-05-12 14:40:18 -07:00
int idle;
// Element linking
pthread_mutex_t mutex;
struct ncclProxyArgs* next;
struct ncclProxyArgs* nextPeer;
2020-09-04 14:35:05 -07:00
struct ncclProxyArgs** proxyAppendPtr;
};
struct ncclProxySharedBuffers {
2021-04-12 16:00:11 -07:00
int size;
char* cudaBuff;
char* hostBuff;
2020-09-04 14:35:05 -07:00
struct ncclProxyArgs* proxyAppend[2*MAXCHANNELS]; // Separate send and recv
2021-04-12 16:00:11 -07:00
// Collnet sharing is technically per device, but for now MAXDEVICES == MAXCHANNELS.
struct ncclProxyArgs* proxyAppendCollNet[2*MAXCHANNELS];
void* collNetResources;
2020-05-12 14:40:18 -07:00
};
struct ncclProxyPool;
struct ncclProxyState {
pthread_cond_t cond;
2020-09-04 14:35:05 -07:00
pthread_mutex_t opsMutex;
pthread_mutex_t poolMutex;
2020-05-12 14:40:18 -07:00
bool stop;
2021-04-12 16:00:11 -07:00
struct ncclProxySharedBuffers sharedBuffs;
struct ncclProxyArgs* ops; // Running operations, used by proxy thread
struct ncclProxyArgs* postedOps; // Posted operations, shared between proxy and main thread, locked with opsMutex
struct ncclProxyArgs* postedOpsEnd;
struct ncclProxyArgs* nextOps; // Pending operations, used by main thread (could still be cancelled)
2020-09-04 14:35:05 -07:00
struct ncclProxyArgs* nextOpsEnd;
2021-04-12 16:00:11 -07:00
struct ncclProxyArgs* pool; // Free operations for main thread
struct ncclProxyArgs* poolFreed; // Freed operations by the progress thread
struct ncclProxyArgs* poolReturned; // Shared between main and progress thread, lock with poolMutex
2020-05-12 14:40:18 -07:00
struct ncclProxyPool* pools;
};
typedef ncclResult_t (*threadFunc_t)(struct ncclProxyArgs*);
enum proxyMode {
proxyRing = 0,
proxyFrom = 1,
proxyTo = 2
};
2021-04-12 16:00:11 -07:00
ncclResult_t ncclProxySaveColl(struct ncclProxyArgs* args, int nranks);
ncclResult_t ncclProxyComputeP2p(struct ncclInfo* info, struct ncclProxyArgs* args);
ncclResult_t ncclProxySaveP2p(struct ncclComm* comm, struct ncclProxyArgs* args);
2020-05-12 14:40:18 -07:00
ncclResult_t ncclProxyStart(struct ncclComm* comm);
ncclResult_t ncclProxyCreate(struct ncclComm* comm);
ncclResult_t ncclProxyDestroy(struct ncclComm* comm);
2020-09-04 14:35:05 -07:00
ncclResult_t ncclProxySharedBuffersInit(struct ncclComm* comm, int cuda, int* size, char** ptr);
2021-04-12 16:00:11 -07:00
ncclResult_t ncclProxySharedBuffersGetP2p(struct ncclComm* comm, int cuda, int type, int channel, int slot, int index, char** ptr);
ncclResult_t ncclProxySharedBuffersGetCollNet(struct ncclComm* comm, int cuda, int type, int slot, int channel, char** ptr);
2020-09-04 14:35:05 -07:00
ncclResult_t ncclProxySharedBuffersDestroy(struct ncclComm* comm);
2020-05-12 14:40:18 -07:00
#include <unistd.h>
// Spin wait until func evaluates to true
template<typename FUNC>
inline void transportProxyWait(const FUNC& func) {
while (!func()) {
sched_yield();
}
}
#endif