Files
rocm-systems/test/common/StandaloneUtils.hpp
T
corey-derochie-amd 170acf3bda Switched to using the hip_fp8 header instead of rccl_float8, resolving compatibility issues. (#1546)
* Revert "Revert "replacing rccl_float8 with hip_fp8 and address compatibility …"

This reverts commit 824b81c034.

* [UT] Modify max stack size to 496

* adding a check for OCP type and replacing ROCM_VERSION with HIP_VERSION

* addressing the ci failure

* Adding the device tag

---------

Co-authored-by: Marzieh Berenjkoub <mberenjk@amd.com>
2025-05-14 15:33:03 -05:00

56 wiersze
2.0 KiB
C++

#ifndef STANDALONE_UTILS_H
#define STANDALONE_UTILS_H
#include <cstdio>
#include <vector>
#include <string>
#include <rccl/rccl.h>
#define HIPCALL(cmd) \
do { \
hipError_t error = (cmd); \
if (error != hipSuccess) \
{ \
printf("Encountered HIP error (%s) at line %d in file %s\n", \
hipGetErrorString(error), __LINE__, __FILE__); \
exit(-1); \
} \
} while (0)
#define NCCLCHECK(cmd) do { \
ncclResult_t res = cmd; \
if (res != ncclSuccess) { \
printf("NCCL failure %s:%d '%s'\n", \
__FILE__,__LINE__,ncclGetErrorString(res)); \
} \
} while(0)
// should be 112, temp fix to make CI pass
#define MAX_STACK_SIZE 496
#ifdef ENABLE_LL128
#define MAX_STACK_SIZE_gfx90a 360
#else
#define MAX_STACK_SIZE_gfx90a MAX_STACK_SIZE
#endif
namespace RcclUnitTesting
{
struct KernelInfo {
std::string name;
int privateSegmentFixedSize = 0;
};
struct ArchInfo {
std::string archName;
std::vector<KernelInfo> kernels;
};
std::string executeCommand(const char* cmd);
std::vector<std::string> splitString(const std::string& str, char delimiter);
ArchInfo parseMetadata(const std::vector<std::string>& list);
}
#endif