We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccb2a1f commit eee8c7bCopy full SHA for eee8c7b
source/module_basis/module_pw/module_fft/fft_bundle.cpp
@@ -96,7 +96,7 @@ void FFT_Bundle::initfft(int nx_in,
96
#elif defined(__CUDA)
97
fft_float = make_unique<FFT_CUDA<float>>();
98
fft_float->initfft(nx_in,ny_in,nz_in);
99
- fft_double = make_unique<FFT_RCOM<double>>();
+ fft_double = make_unique<FFT_CUDA<double>>();
100
fft_double->initfft(nx_in,ny_in,nz_in);
101
#endif
102
}
0 commit comments