Skip to content

Commit

Permalink
Set the default measure level to zero (#811)
Browse files Browse the repository at this point in the history
* make measure level 0 the default

* fixed measure level comment
  • Loading branch information
duncan-brown authored and josh-willis committed May 5, 2016
1 parent 5ea6282 commit 76c63d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pycbc/fft/fftw.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,10 @@ def import_sys_wisdom():
float_lib.fftwf_import_system_wisdom()

# We provide an interface for changing the "measure level"
# By default 1, which does some but not much planning,
# By default this is 0, which does no planning,
# but we provide functions to read and set it

_default_measurelvl = 1
_default_measurelvl = 0
def get_measure_level():
"""
Get the current 'measure level' used in deciding how much effort to put into
Expand Down

0 comments on commit 76c63d1

Please sign in to comment.