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:
colramos-amd
2024-01-31 16:17:43 -06:00
committed by Cole Ramos
parent 4b8f519e9b
commit 54f0fa8c81
9 changed files with 926 additions and 0 deletions
+17
View File
@@ -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)