Add simple device-side assert macro

Currently swallows asserts but will compile.
This commit is contained in:
Ben Sander
2017-03-17 10:25:56 -05:00
parent 76820409a8
commit ecd8179a71
2 changed files with 13 additions and 0 deletions
@@ -59,6 +59,8 @@ __device__ void integer_intrinsics()
__umulhi((unsigned int)1, (unsigned int)2);
__urhadd((unsigned int)1, (unsigned int)2);
__usad((unsigned int)1, (unsigned int)2, 0);
assert(1);
}
__global__ void compileIntegerIntrinsics(hipLaunchParm lp, int ignored)