Skip to content

Commit

Permalink
Merge pull request #1534 from pitrou/workaround_removal
Browse files Browse the repository at this point in the history
Complete removal of wraparound flag
  • Loading branch information
seibert committed Nov 20, 2015
2 parents 0798ad4 + 65480cc commit c1b730f
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
5 changes: 0 additions & 5 deletions numba/decorators.py
Expand Up @@ -74,11 +74,6 @@ def jit(signature_or_function=None, locals={}, target='cpu', cache=False, **opti
mode. Any arrays that the tight loop uses should be created
before the loop is entered. Default value is True.
wraparound: bool
Set to True to enable array indexing wraparound for negative
indices, for a small performance penalty. Default value
is True.
Returns
--------
A callable usable as a compiled function. Actual compiling will be
Expand Down
1 change: 0 additions & 1 deletion numba/targets/cpu.py
Expand Up @@ -173,7 +173,6 @@ class CPUTargetOptions(TargetOptions):
"nogil": bool,
"forceobj": bool,
"looplift": bool,
"wraparound": bool,
"boundcheck": bool,
"_nrt": bool,
"no_rewrites": bool,
Expand Down
3 changes: 0 additions & 3 deletions numba/targets/options.py
Expand Up @@ -43,9 +43,6 @@ def set_flags(self, flags):
if kws.pop('looplift', True):
flags.set("enable_looplift")

if kws.pop('wraparound', True) == False:
flags.set("no_wraparound")

if kws.pop('boundcheck', False):
flags.set("boundcheck")

Expand Down

0 comments on commit c1b730f

Please sign in to comment.