Makefile.am: add gitversion.h to BUILT_SOURCES
[ppcg.git] / cuda_common.h
blob2a7db952cdf79e7a5d2322004c19a897a10a758d
1 #ifndef _CUDA_COMMON_H_
2 #define _CUDA_COMMON_H_
4 #include <stdio.h>
6 struct cuda_info {
7 FILE *host_c;
8 FILE *kernel_c;
9 FILE *kernel_h;
12 void cuda_open_files(struct cuda_info *info, const char *input);
13 void cuda_close_files(struct cuda_info *info);
15 #endif