diff options
author | maamountki <m.tk1@hotmail.com> | 2018-08-06 18:20:40 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-06 18:20:40 +0300 |
commit | 23229011db2ab03c7643f1e0a007efc8e0276201 (patch) | |
tree | a2719093bb42e7a35f00c52cb21b2e43c7d6e703 /Makefile.zarch | |
parent | ee955757f9e86aed417ba4b8d2fa0ce8c917e9b2 (diff) | |
download | openblas-23229011db2ab03c7643f1e0a007efc8e0276201.tar.gz openblas-23229011db2ab03c7643f1e0a007efc8e0276201.tar.bz2 openblas-23229011db2ab03c7643f1e0a007efc8e0276201.zip |
[ZARCH] Z14 support, BLAS 1/2 single precision implementations, Some missing double precision implementations, Gemv optimization
Diffstat (limited to 'Makefile.zarch')
-rw-r--r-- | Makefile.zarch | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.zarch b/Makefile.zarch index 9ec9dc79f..47ea1eb71 100644 --- a/Makefile.zarch +++ b/Makefile.zarch @@ -4,3 +4,7 @@ CCOMMON_OPT += -march=z13 -mzvector FCOMMON_OPT += -march=z13 -mzvector endif +ifeq ($(CORE), Z14) +CCOMMON_OPT += -march=z14 -mzvector +FCOMMON_OPT += -march=z14 -mzvector +endif |