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 217d050 commit f408fdbCopy full SHA for f408fdb
src/fluidfft/fft2d/operators.py
@@ -60,7 +60,7 @@ def get_simple_2d_mpi_method():
60
method = "fft2d.mpi_with_fftwmpi2d"
61
try:
62
import_fft_class(method)
63
- except ImportError:
+ except (ImportError, ValueError):
64
method = "fft2d.mpi_with_fftw1d"
65
return method
66
src/fluidfft/fft3d/operators.py
@@ -121,7 +121,7 @@ def get_simple_3d_mpi_method():
121
method = "fft3d.mpi_with_fftwmpi3d"
122
123
124
125
method = "fft3d.mpi_with_fftw1d"
126
127
0 commit comments