summaryrefslogtreecommitdiff
path: root/tests/test.cuh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test.cuh')
-rw-r--r--tests/test.cuh19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/test.cuh b/tests/test.cuh
new file mode 100644
index 0000000..895f183
--- /dev/null
+++ b/tests/test.cuh
@@ -0,0 +1,19 @@
+#ifndef TEST_CUH
+#define TEST_CUH
+
+struct Point {
+ float x;
+ float y;
+ float z;
+};
+
+class Dim3 {
+public:
+ int x;
+ int y;
+ int z;
+};
+
+__device__ void device_func() {}
+
+#endif