dfad51e3c9
* Support gfx950 in topo_expl * Fix dependencies and fetch fmt from sources * Remove third_party folder in make clean * Add empty target when fmt is found * Add MI350 example * Update README.md --------- Co-authored-by: isaki001 <ioannissakiotis@gmail.com>
19 行
655 B
C++
19 行
655 B
C++
/* Copyright © Advanced Micro Devices, Inc., or its affiliates. */
|
|
|
|
#ifndef DEVICE_TABLE_COMPATIBILITY
|
|
#define DEVICE_TABLE_COMPATIBILITY
|
|
|
|
struct rcclKernelItem {
|
|
void* funcPtr;
|
|
int unroll;
|
|
};
|
|
static struct rcclKernelItem rcclKernelTable[] = { };
|
|
|
|
template <int unroll>
|
|
__forceinline__ __device__ void NCCL_CALL_FUNCTIONS(unsigned short funcIndex) noexcept { }
|
|
__forceinline__ __device__ void NCCL_CALL_FUNCTIONS_1(unsigned short funcIndex) noexcept { }
|
|
__forceinline__ __device__ void NCCL_CALL_FUNCTIONS_2(unsigned short funcIndex) noexcept { }
|
|
__forceinline__ __device__ void NCCL_CALL_FUNCTIONS_4(unsigned short funcIndex) noexcept { }
|
|
|
|
#endif
|