1 #ifndef _CUDA_COMMON_H_ 2 #define _CUDA_COMMON_H_ 3 4 #include <stdio.h> 5 6 struct cuda_info { 7 FILE *host_c; 8 FILE *kernel_c; 9 FILE *kernel_h; 10 }; 11 12 void cuda_open_files(struct cuda_info *info, const char *input); 13 void cuda_close_files(struct cuda_info *info); 14 15 #endif 16