- update Example05 to use FFTW to check the answer

- update clFFT installation instructions
This commit is contained in:
Dakota St. Laurent
2015-08-12 16:34:10 -04:00
parent 3af7ec6c3b
commit bff9fd6443
5 changed files with 70 additions and 31 deletions

View File

@@ -1,7 +1,7 @@
import numpy as np
import scipy.fftpack as fft
N = 128
N = 2048
v = np.arange(N)
v_fft = fft.fft(v)