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 afe4fcd commit 2d51b1cCopy full SHA for 2d51b1c
easybuild/toolchains/fft/intelfftw.py
@@ -98,7 +98,9 @@ def _set_fftw_variables(self):
98
imklfftwroot = get_software_root('imkl-FFTW')
99
if imklfftwroot:
100
# only get cluster_interface_lib from seperate module imkl-FFTW, rest via libmkl_gf/libmkl_intel
101
- fft_lib_dirs += [os.path.join(imklfftwroot, 'lib')]
+ if self.options.get('usempi', False):
102
+ fft_lib_dirs += [os.path.join(imklfftwroot, 'lib')]
103
+ self.FFT_LIB_DIR = [os.path.join(imklfftwroot, 'lib')]
104
fftw_libs.remove(interface_lib)
105
fftw_mt_libs.remove(interface_lib)
106
0 commit comments