Browse Source

Remove cuda headers from *.c files

Roman Shkarin 9 years ago
parent
commit
c5598eb111
2 changed files with 3 additions and 4 deletions
  1. 0 4
      cuda_fft.c
  2. 3 0
      cuda_fft.h

+ 0 - 4
cuda_fft.c

@@ -1,7 +1,3 @@
-#include <cuda.h>
-#include <cuda_runtime.h>
-#include <cuda_runtime_api.h>
-
 #include "cuda_fft.h"
 
 void loop_data_cuda (const char *vendor,

+ 3 - 0
cuda_fft.h

@@ -1,6 +1,9 @@
 #ifndef CUDA_FFT_H
 #define CUDA_FFT_H
 
+#include <cuda.h>
+#include <cuda_runtime.h>
+#include <cuda_runtime_api.h>
 #include <cufft.h>
 
 #include "utilities.h"