Loading...
Searching...
No Matches
19#include <cuda_runtime.h>
28#if !defined(NDEBUG) && defined(__CUDA_ARCH__) && (defined(__clang__) || defined(__GNUC__))
29#define __ASSERT_STR_HELPER(x) #x
30#define cuspatial_assert(e) \
31 ((e) ? static_cast<void>(0) \
32 : __assert_fail(__ASSERT_STR_HELPER(e), __FILE__, __LINE__, __PRETTY_FUNCTION__))
34#define cuspatial_assert(e) (static_cast<void>(0))