I am trying to compute 3D convolution of a 3D array using Intel MKL
. Could someone kindly give me some hints how I can do that? Is it achievable using MKL
? Thanks in advance.
相关问题
- Multiple sockets for clients to connect to
- Is GLFW designed to use without LWJGL (in java)?
- What is the best way to do a search in a large fil
- glDrawElements only draws half a quad
- Index of single bit in long integer (in C) [duplic
Intel has an example on their page of a 3D FFT, which should be helpful for performing convolution by multiplication in frequency space. Sorry I don't have a full solution:
Three-Dimensional REAL FFT (C Interface)
The next steps would be do perform the same transform for a padded kernel, point-wise multiplication of the two complex arrays, and inverse FFT.