diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-22 13:09:29 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-01-22 13:09:29 +0100 |
| commit | da973be545d6da3b2d42023f96bcfd79f751eba9 (patch) | |
| tree | b1b86be33ff9e65e6979a0a3a04a391338311f5b /tests/test.cuh | |
| parent | c4923c47ffc2309fc3844be80ee0d8392e2fad2b (diff) | |
| download | crep-da973be545d6da3b2d42023f96bcfd79f751eba9.tar.gz | |
Add CUDA grammar
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 @@ +#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 |
