Skip to content

Commit 08786c4

Browse files
strmm and ctrmm
1 parent 82e80fa commit 08786c4

File tree

9 files changed

+1653
-1198
lines changed

9 files changed

+1653
-1198
lines changed

CONTRIBUTORS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,5 +165,6 @@ In chronological order:
165165
* Abdelrauf <https://github.com/quickwritereader>
166166
* [2017-01-01] dgemm and dtrmm kernels for IBM z13
167167
* [2017-02-26] ztrmm kernel for IBM z13
168+
* [2017-03-13] strmm and ctrmm kernel for IBM z13
168169

169170

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Please read GotoBLAS_01Readme.txt
107107
- **ARM Cortex-A57**: Experimental
108108

109109
#### IBM zEnterprise System:
110-
- **Z13**: blas3 for double
110+
- **Z13**: Optimized Level-3 BLAS
111111

112112

113113
### Support OS:

kernel/zarch/KERNEL.Z13

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ ZGEMVTKERNEL = ../arm/zgemv_t.c
8282

8383
STRMMKERNEL = strmm8x4V.S
8484
DTRMMKERNEL = trmm8x4V.S
85-
CTRMMKERNEL = ../generic/ztrmmkernel_2x2.c
85+
CTRMMKERNEL = ctrmm4x4V.S
8686
ZTRMMKERNEL = ztrmm4x4V.S
8787

8888
SGEMMKERNEL = strmm8x4V.S
@@ -107,9 +107,9 @@ DGEMMITCOPYOBJ = dgemm_itcopy.o
107107
DGEMMONCOPYOBJ = dgemm_oncopy.o
108108
DGEMMOTCOPYOBJ = dgemm_otcopy.o
109109

110-
CGEMMKERNEL = ../generic/zgemmkernel_2x2.c
111-
CGEMMONCOPY = ../generic/zgemm_ncopy_2.c
112-
CGEMMOTCOPY = ../generic/zgemm_tcopy_2.c
110+
CGEMMKERNEL = ctrmm4x4V.S
111+
CGEMMONCOPY = ../generic/zgemm_ncopy_4.c
112+
CGEMMOTCOPY = ../generic/zgemm_tcopy_4.c
113113
CGEMMONCOPYOBJ = cgemm_oncopy.o
114114
CGEMMOTCOPYOBJ = cgemm_otcopy.o
115115

0 commit comments

Comments
 (0)