diff options
Diffstat (limited to 'numpy/distutils/fcompiler/intel.py')
-rw-r--r-- | numpy/distutils/fcompiler/intel.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/fcompiler/intel.py b/numpy/distutils/fcompiler/intel.py index b593a91c7..190584829 100644 --- a/numpy/distutils/fcompiler/intel.py +++ b/numpy/distutils/fcompiler/intel.py @@ -57,7 +57,7 @@ class IntelFCompiler(BaseIntelFCompiler): return ["-FR"] def get_flags_opt(self): - return ['-O3','-unroll'] + return ['-O1'] def get_flags_arch(self): v = self.get_version() @@ -201,7 +201,7 @@ class IntelVisualFCompiler(BaseIntelFCompiler): return ['/4Yb','/d2'] def get_flags_opt(self): - return ['/O3','/Qip'] + return ['/O1'] def get_flags_arch(self): opt = [] |