7f7f1cede3
* Added missing copyright message.
* addressed comments.
[ROCm/rccl commit: 6c37ae9470]
14 linhas
366 B
C++
14 linhas
366 B
C++
/* Copyright © Advanced Micro Devices, Inc., or its affiliates. */
|
|
|
|
#ifndef RCCL_MOCK_FUNCS_HPP
|
|
#define RCCL_MOCK_FUNCS_HPP
|
|
|
|
#include "info.h"
|
|
|
|
void ncclDebugLog(ncclDebugLogLevel, unsigned long, char const*, int, char const*, ...) {};
|
|
ncclResult_t getHostName(char* hostname, int maxlen, const char delim) {
|
|
return ncclSuccess;
|
|
}
|
|
|
|
#endif // RCCL_MOCK_FUNCS_HPP
|