파일
rocm-systems/sample/common.h
T
colramos-amd 54f0fa8c81 Add example apps to compliment docs
Co-authored-by: Nick Curtis <nicholas.curtis@amd.com>
Signed-off-by: colramos-amd <colramos@amd.com>
2024-02-06 16:19:40 -06:00

18 라인
969 B
C++

#pragma once
#include <hip/hip_runtime.h>
#include <iostream>
#define hipCheck(stmt) \
do { \
hipError_t err = stmt; \
if (err != hipSuccess) { \
char msg[256]; \
sprintf(msg, "%s in file %s, function %s, line %d\n", #stmt, __FILE__, \
__FUNCTION__, __LINE__); \
std::string errstring = hipGetErrorString(err); \
std::cerr << msg << "\t" << errstring << std::endl; \
throw std::runtime_error(msg); \
} \
} while (0)