Skip to content

Commit 1e8410f

Browse files
authored
Merge pull request #2441 from martin-frbg/ismin2
Add proper defaults for the IxMIN/IxMAX kernels on mips64 and power
2 parents 33d92c7 + 07454bf commit 1e8410f

2 files changed

Lines changed: 47 additions & 0 deletions

File tree

kernel/mips64/KERNEL

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,3 +167,27 @@ endif
167167

168168
CGEMM3MKERNEL = zgemm3m_kernel.S
169169
ZGEMM3MKERNEL = zgemm3m_kernel.S
170+
171+
ifndef ISMINKERNEL
172+
ISMINKERNEL = imin.S
173+
endif
174+
175+
ifndef IDMINKERNEL
176+
IDMINKERNEL = imin.S
177+
endif
178+
179+
ifndef IQMINKERNEL
180+
IQMINKERNEL = imin.S
181+
endif
182+
183+
ifndef ISMAXKERNEL
184+
ISMAXKERNEL = imax.S
185+
endif
186+
187+
ifndef IDMAXKERNEL
188+
IDMAXKERNEL = imax.S
189+
endif
190+
191+
ifndef IQMAXKERNEL
192+
IQMAXKERNEL = imax.S
193+
endif

kernel/power/KERNEL

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,26 @@ ifndef DSDOTKERNEL
5050
DSDOTKERNEL = ../generic/dot.c
5151
endif
5252

53+
ifndef ISMINKERNEL
54+
ISMINKERNEL = imin.S
55+
endif
56+
57+
ifndef IDMINKERNEL
58+
IDMINKERNEL = imin.S
59+
endif
60+
61+
ifndef IQMINKERNEL
62+
IQMINKERNEL = imin.S
63+
endif
64+
65+
ifndef ISMAXKERNEL
66+
ISMAXKERNEL = imax.S
67+
endif
68+
69+
ifndef IDMAXKERNEL
70+
IDMAXKERNEL = imax.S
71+
endif
72+
73+
ifndef IQMAXKERNEL
74+
IQMAXKERNEL = imax.S
75+
endif

0 commit comments

Comments
 (0)