You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.4 KiB
33 lines
1.4 KiB
8 years ago
|
#pragma once
|
||
|
|
||
|
#define STRINGIFY(x) #x
|
||
|
#define TOSTRING(x) STRINGIFY(x)
|
||
|
|
||
|
#if defined(__APPLE__) && defined(__CUDA_ARCH__) && !defined(NDEBUG)
|
||
|
#include <stdio.h>
|
||
|
#define MAJEL_ASSERT(e) \
|
||
|
do { \
|
||
|
if (!(e)) { \
|
||
|
printf( \
|
||
|
"%s:%d Assertion `%s` failed.\n", __FILE__, __LINE__, TOSTRING(e)); \
|
||
|
asm("trap;"); \
|
||
|
} \
|
||
|
} while (0)
|
||
|
|
||
|
#define MAJEL_ASSERT_MSG(e, m) \
|
||
|
do { \
|
||
|
if (!(e)) { \
|
||
|
printf("%s:%d Assertion `%s` failed (%s).\n", \
|
||
|
__FILE__, \
|
||
|
__LINE__, \
|
||
|
TOSTRING(e), \
|
||
|
m); \
|
||
|
asm("trap;"); \
|
||
|
} \
|
||
|
} while (0)
|
||
|
#else
|
||
|
#include <assert.h>
|
||
|
#define MAJEL_ASSERT(e) assert(e)
|
||
|
#define MAJEL_ASSERT_MSG(e, m) assert((e) && (m))
|
||
|
#endif
|