aboutsummaryrefslogtreecommitdiff
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 @@
1#ifndef TEST_CUH
2#define TEST_CUH
3
4struct Point {
5 float x;
6 float y;
7 float z;
8};
9
10class Dim3 {
11public:
12 int x;
13 int y;
14 int z;
15};
16
17__device__ void device_func() {}
18
19#endif