diff options
author | Martin Kroeker <martin@ruby.chemie.uni-freiburg.de> | 2020-10-18 19:27:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-18 19:27:51 +0200 |
commit | 7d6c85f9da82f10615daefc9135a2616a4347855 (patch) | |
tree | bffdb6997fe7b5b4609d142a9a10c0ecefa8fdc6 | |
parent | 89eea6b4550bab14eccd5961d6a0cb83f5ac010a (diff) | |
download | openblas-7d6c85f9da82f10615daefc9135a2616a4347855.tar.gz openblas-7d6c85f9da82f10615daefc9135a2616a4347855.tar.bz2 openblas-7d6c85f9da82f10615daefc9135a2616a4347855.zip |
Add compiler option -mmma for POWER10
-rw-r--r-- | Makefile.power | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.power b/Makefile.power index e766f8499..59af8ef55 100644 --- a/Makefile.power +++ b/Makefile.power @@ -10,7 +10,7 @@ USE_OPENMP = 1 endif ifeq ($(CORE), POWER10) -COMMON_OPT += -Ofast -mcpu=power10 -mtune=power10 -mvsx -fno-fast-math +COMMON_OPT += -Ofast -mcpu=power10 -mtune=power10 -mvsx -mmma -fno-fast-math FCOMMON_OPT += -O2 -frecursive -mcpu=power10 -mtune=power10 -fno-fast-math endif |