Add example apps to compliment docs
Co-authored-by: Nick Curtis <nicholas.curtis@amd.com> Signed-off-by: colramos-amd <colramos@amd.com>
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#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)
|
||||
Reference in New Issue
Block a user