summaryrefslogtreecommitdiff
path: root/tests/test.cuh
blob: 895f18305f24b87f202568b9917dcea51bbce2d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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