diff options
author | Eric Larson <larson.eric.d@gmail.com> | 2015-12-28 13:38:30 -0500 |
---|---|---|
committer | Eric Larson <larson.eric.d@gmail.com> | 2015-12-28 13:39:10 -0500 |
commit | 66bd83dd9eb11d6127d222a5cfa79b4ac640fadf (patch) | |
tree | 078445737c607dd4089a9dbf7f7b0a2b6e00b695 /numpy/distutils/fcompiler/intel.py | |
parent | 7cebe883b612efe2a3bf51b83917ea6cdb8f679f (diff) | |
download | numpy-66bd83dd9eb11d6127d222a5cfa79b4ac640fadf.tar.gz |
DOC: Comment all O1s [ci skip]
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 ae8bfbed7..c4f15a073 100644 --- a/numpy/distutils/fcompiler/intel.py +++ b/numpy/distutils/fcompiler/intel.py @@ -55,7 +55,7 @@ class IntelFCompiler(BaseIntelFCompiler): def get_flags(self): return ['-fPIC'] - def get_flags_opt(self): + def get_flags_opt(self): # Scipy test failures with -O2 return ['-xhost -openmp -fp-model strict -O1'] def get_flags_arch(self): @@ -119,7 +119,7 @@ class IntelEM64TFCompiler(IntelFCompiler): def get_flags(self): return ['-fPIC'] - def get_flags_opt(self): + def get_flags_opt(self): # Scipy test failures with -O2 return ['-openmp -fp-model strict -O1'] def get_flags_arch(self): |