26#ifndef GPUCOMMONHELPERS_H
27#define GPUCOMMONHELPERS_H
30#define GPUChkErr(x) GPUChkErrA(x, __FILE__, __LINE__, true)
31#define GPUChkErrI(x) GPUChkErrA(x, __FILE__, __LINE__, false)
32#define GPUChkErrS(x) o2::gpu::internal::GPUReconstructionChkErr(x, __FILE__, __LINE__, true)
33#define GPUChkErrSI(x) o2::gpu::internal::GPUReconstructionChkErr(x, __FILE__, __LINE__, false)
43#define GPUCOMMON_INTERNAL_CAT_A(a, b, c) a##b##c
44#define GPUCOMMON_INTERNAL_CAT(...) GPUCOMMON_INTERNAL_CAT_A(__VA_ARGS__)
49 LOGF(error,
"GPUCommon Error Code %ld (%s:%d)", (
long)error,
file,
line);
53static inline int32_t GPUReconstructionChkErr(
const int64_t error,
const char*
file, int32_t
line,
bool failOnError)
56 if (
retVal && failOnError) {
57 throw std::runtime_error(
"GPU API Call Failure");
61#undef GPUCOMMON_INTERNAL_CAT_A
62#undef GPUCOMMON_INTERNAL_CAT
67class GPUReconstruction;
78 std::function<
char*(size_t)> mAlloc;
#define GPUCOMMON_INTERNAL_CAT(...)
char * allocate(std::ptrdiff_t n)
void deallocate(char *ptr, size_t)
int32_t const char * file
int32_t const char int32_t line
int32_t GPUReconstructionCPUChkErr(const int64_t error, const char *file, int32_t line)