10#include <hip/hip_runtime_api.h>
13#define VECMEM_HIP_ERROR_CHECK(EXP) \
15 hipError_t errorCode = EXP; \
16 if (errorCode != hipSuccess) { \
17 vecmem::hip::details::throw_error(errorCode, #EXP, __FILE__, \
24#define VECMEM_HIP_ERROR_IGNORE(EXP) \
void throw_error(hipError_t errorCode, const char *expression, const char *file, int line)
Function used to print and throw a user-readable error if something breaks.
Definition hip_error_handling.cpp:20
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35