Skip to content

Commit 666db9a

Browse files
Anna ZovaroAnna Zovaro
Anna Zovaro
authored and
Anna Zovaro
committedJan 13, 2017
Made warning message showing number of threads used in pyfftw less ambiguous
1 parent 58b429a commit 666db9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎pyxao/wavefront.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
pyfftw.interfaces.cache.enable()
1414
pyfftw.interfaces.cache.set_keepalive_time(1.0)
1515
nthreads = 16
16-
print("WARNING: using pyfftw with {:d} threads...".format(nthreads))
16+
print("WARNING: in wavefront.py I am using pyfftw with {:d} threads...".format(nthreads))
1717
except:
1818
nthreads = 0
19-
print("WARNING: I could not import pyfftw, so I am using numpy fft routines instead...")
19+
print("WARNING: in wavefront.py I could not import pyfftw, so I am using numpy fft routines instead...")
2020

2121

2222
class Wavefront():

0 commit comments

Comments
 (0)
Please sign in to comment.