gpu.c: set_last_shared: also initialize group->last_shared in absence of tile
[ppcg.git] / cuda_common.h
blobdcff632c0104ecdbeedfef958518f92b9b1b8014
1 #ifndef _CUDA_COMMON_H_
2 #define _CUDA_COMMON_H_
4 #include <stdio.h>
6 struct cuda_info {
7 FILE *input;
8 FILE *host_c;
9 FILE *kernel_c;
10 FILE *kernel_h;
13 void cuda_open_files(struct cuda_info *info, const char *input);
14 void cuda_close_files(struct cuda_info *info);
16 #endif