cuda_common.h 261 B

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