42d84317cf
git-subtree-dir: projects/rccl git-subtree-mainline:3fd8a0d393git-subtree-split:1f2f9f33ba
14 lines
366 B
C++
14 lines
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
|