Skip to content

Commit

Permalink
switch NaN to nan
Browse files Browse the repository at this point in the history
  • Loading branch information
braingram committed Oct 13, 2023
1 parent 4fe83ef commit b2f1c3f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions poppy/accel_math.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ def benchmark_fft(npix=2048, iterations=20, double_precision=True):
time_fftw = timer.timeit(number=iterations) / iterations
print(" {:.3f} s".format(time_fftw))
else:
time_fftw = np.NaN
time_fftw = np.nan

if poppy.accel_math._NUMEXPR_AVAILABLE:
print("Timing performance with Numexpr + FFTW:")
Expand All @@ -396,7 +396,7 @@ def benchmark_fft(npix=2048, iterations=20, double_precision=True):
time_numexpr = timer.timeit(number=iterations) / iterations
print(" {:.3f} s".format(time_numexpr))
else:
time_numexpr = np.NaN
time_numexpr = np.nan

if poppy.accel_math._MKLFFT_AVAILABLE:
print("Timing performance with Numexpr + MKL:")
Expand All @@ -407,7 +407,7 @@ def benchmark_fft(npix=2048, iterations=20, double_precision=True):
time_mkl = timer.timeit(number=iterations) / iterations
print(" {:.3f} s".format(time_mkl))
else:
time_mkl = np.NaN
time_mkl = np.nan

if poppy.accel_math._OPENCL_AVAILABLE:
print("Timing performance with OpenCL:")
Expand All @@ -416,7 +416,7 @@ def benchmark_fft(npix=2048, iterations=20, double_precision=True):
time_opencl = timer.timeit(number=iterations) / iterations
print(" {:.3f} s".format(time_opencl))
else:
time_opencl = np.NaN
time_opencl = np.nan


poppy.conf.use_mkl, poppy.conf.use_fftw, poppy.conf.use_numexpr, poppy.conf.use_cupy,\
Expand Down

0 comments on commit b2f1c3f

Please sign in to comment.