diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-05 11:12:15 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-05 11:12:15 -0300 |
commit | 96875ddafbf1ff821a4a1fd628c2e4758096700c (patch) | |
tree | 16d00b3727c5273233be6af37c29361cdbf100a6 /get_energy.cpp | |
parent | 44ed3056e815910b7f61c62a9b71976a3c47f4b3 (diff) | |
download | code-96875ddafbf1ff821a4a1fd628c2e4758096700c.tar.gz code-96875ddafbf1ff821a4a1fd628c2e4758096700c.tar.bz2 code-96875ddafbf1ff821a4a1fd628c2e4758096700c.zip |
Save and read fftw wisdom to speed initialization
Diffstat (limited to 'get_energy.cpp')
-rw-r--r-- | get_energy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/get_energy.cpp b/get_energy.cpp index ae77595..8c610c5 100644 --- a/get_energy.cpp +++ b/get_energy.cpp @@ -55,7 +55,7 @@ int main(int argc, char* argv[]) { Real y = y₀; - FourierTransform fft(n, Δω, Δτ, FFTW_ESTIMATE); + FourierTransform fft(n, Δω, Δτ); std::vector<Real> C(2 * n); std::vector<Real> R(2 * n); |