diff options
Diffstat (limited to 'tests/test.cuh')
| -rw-r--r-- | tests/test.cuh | 19 |
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 | |||
| 4 | struct Point { | ||
| 5 | float x; | ||
| 6 | float y; | ||
| 7 | float z; | ||
| 8 | }; | ||
| 9 | |||
| 10 | class Dim3 { | ||
| 11 | public: | ||
| 12 | int x; | ||
| 13 | int y; | ||
| 14 | int z; | ||
| 15 | }; | ||
| 16 | |||
| 17 | __device__ void device_func() {} | ||
| 18 | |||
| 19 | #endif | ||
