diff options
author | cgohlke <cgohlke@uci.edu> | 2014-04-08 20:19:15 -0700 |
---|---|---|
committer | cgohlke <cgohlke@uci.edu> | 2014-04-08 20:19:15 -0700 |
commit | f97d5ca773946ed7ca5ac149f656274765007eb8 (patch) | |
tree | 3e8e8f880b5a192e0c7d67f67a8d15c0ac034234 /numpy/distutils/fcompiler/intel.py | |
parent | 52d5d109f9dedf4f006b930abef9ff9c54ec1542 (diff) | |
download | numpy-f97d5ca773946ed7ca5ac149f656274765007eb8.tar.gz |
BUG: ifort has issues with optimization flag /O2
Fixes scipy test failures.
Diffstat (limited to 'numpy/distutils/fcompiler/intel.py')
-rw-r--r-- | numpy/distutils/fcompiler/intel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/intel.py b/numpy/distutils/fcompiler/intel.py index 21a3c5eaf..4c81987a1 100644 --- a/numpy/distutils/fcompiler/intel.py +++ b/numpy/distutils/fcompiler/intel.py @@ -162,7 +162,7 @@ class IntelVisualFCompiler(BaseIntelFCompiler): return ['/4Yb', '/d2'] def get_flags_opt(self): - return ['/O2'] + return ['/O1'] # Scipy test failures with /O2 def get_flags_arch(self): return ["/arch:IA-32", "/QaxSSE3"] |