├── .gitignore ├── LICENSE ├── README.md ├── common ├── helper_cuda.h ├── helper_cuda_drvapi.h ├── helper_cuda_gl.h ├── helper_functions.h ├── helper_image.h ├── helper_math.h ├── helper_string.h └── helper_timer.h ├── compile.m ├── cuda_compile.m ├── demoCudaConvolutionFFT.m └── src ├── convolutionFFTkernel.cu ├── cudaConvFFTData.cu ├── cudaConvFFTData.cuh ├── cudaConvFFTData.h ├── cudaConvFFTDataStreams.cu ├── cudaConvolutionFFT.cu ├── cudaFFTData.cu └── cutil.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.*~ 2 | *.o 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/README.md -------------------------------------------------------------------------------- /common/helper_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/common/helper_cuda.h -------------------------------------------------------------------------------- /common/helper_cuda_drvapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/common/helper_cuda_drvapi.h -------------------------------------------------------------------------------- /common/helper_cuda_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/common/helper_cuda_gl.h -------------------------------------------------------------------------------- /common/helper_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/common/helper_functions.h -------------------------------------------------------------------------------- /common/helper_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/common/helper_image.h -------------------------------------------------------------------------------- /common/helper_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/common/helper_math.h -------------------------------------------------------------------------------- /common/helper_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/common/helper_string.h -------------------------------------------------------------------------------- /common/helper_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/common/helper_timer.h -------------------------------------------------------------------------------- /compile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/compile.m -------------------------------------------------------------------------------- /cuda_compile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/cuda_compile.m -------------------------------------------------------------------------------- /demoCudaConvolutionFFT.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/demoCudaConvolutionFFT.m -------------------------------------------------------------------------------- /src/convolutionFFTkernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/src/convolutionFFTkernel.cu -------------------------------------------------------------------------------- /src/cudaConvFFTData.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/src/cudaConvFFTData.cu -------------------------------------------------------------------------------- /src/cudaConvFFTData.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/src/cudaConvFFTData.cuh -------------------------------------------------------------------------------- /src/cudaConvFFTData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/src/cudaConvFFTData.h -------------------------------------------------------------------------------- /src/cudaConvFFTDataStreams.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/src/cudaConvFFTDataStreams.cu -------------------------------------------------------------------------------- /src/cudaConvolutionFFT.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/src/cudaConvolutionFFT.cu -------------------------------------------------------------------------------- /src/cudaFFTData.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/src/cudaFFTData.cu -------------------------------------------------------------------------------- /src/cutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrischoy/CUDA-FFT-Convolution/HEAD/src/cutil.h --------------------------------------------------------------------------------