2025-06-12 09:58:01 -05:00
|
|
|
/* Copyright © Advanced Micro Devices, Inc., or its affiliates. */
|
|
|
|
|
|
2025-06-10 12:12:36 -05:00
|
|
|
#ifndef RCCL_MOCK_FUNCS_HPP
|
|
|
|
|
#define RCCL_MOCK_FUNCS_HPP
|
|
|
|
|
|
2025-04-19 00:21:27 -04:00
|
|
|
#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;
|
|
|
|
|
}
|
2025-06-10 12:12:36 -05:00
|
|
|
|
|
|
|
|
#endif // RCCL_MOCK_FUNCS_HPP
|