summaryrefslogtreecommitdiffstats
path: root/Tests/CudaOnly/CompileFlags/main.cu
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CudaOnly/CompileFlags/main.cu')
-rw-r--r--Tests/CudaOnly/CompileFlags/main.cu16
1 files changed, 16 insertions, 0 deletions
diff --git a/Tests/CudaOnly/CompileFlags/main.cu b/Tests/CudaOnly/CompileFlags/main.cu
new file mode 100644
index 0000000..573d230
--- /dev/null
+++ b/Tests/CudaOnly/CompileFlags/main.cu
@@ -0,0 +1,16 @@
+#ifdef __CUDA_ARCH__
+# if __CUDA_ARCH__ != 500
+# error "Passed architecture 50, but got something else."
+# endif
+#endif
+
+// Check HOST_DEFINE only for nvcc
+#ifndef __CUDA__
+# ifndef HOST_DEFINE
+# error "HOST_DEFINE not defined!"
+# endif
+#endif
+
+int main()
+{
+}