Merge pull request #2441 from martin-frbg/ismin2
Add proper defaults for the IxMIN/IxMAX kernels on mips64 and power
This commit is contained in:
commit
1e8410f18c
|
@ -167,3 +167,27 @@ endif
|
|||
|
||||
CGEMM3MKERNEL = zgemm3m_kernel.S
|
||||
ZGEMM3MKERNEL = zgemm3m_kernel.S
|
||||
|
||||
ifndef ISMINKERNEL
|
||||
ISMINKERNEL = imin.S
|
||||
endif
|
||||
|
||||
ifndef IDMINKERNEL
|
||||
IDMINKERNEL = imin.S
|
||||
endif
|
||||
|
||||
ifndef IQMINKERNEL
|
||||
IQMINKERNEL = imin.S
|
||||
endif
|
||||
|
||||
ifndef ISMAXKERNEL
|
||||
ISMAXKERNEL = imax.S
|
||||
endif
|
||||
|
||||
ifndef IDMAXKERNEL
|
||||
IDMAXKERNEL = imax.S
|
||||
endif
|
||||
|
||||
ifndef IQMAXKERNEL
|
||||
IQMAXKERNEL = imax.S
|
||||
endif
|
||||
|
|
|
@ -50,3 +50,26 @@ ifndef DSDOTKERNEL
|
|||
DSDOTKERNEL = ../generic/dot.c
|
||||
endif
|
||||
|
||||
ifndef ISMINKERNEL
|
||||
ISMINKERNEL = imin.S
|
||||
endif
|
||||
|
||||
ifndef IDMINKERNEL
|
||||
IDMINKERNEL = imin.S
|
||||
endif
|
||||
|
||||
ifndef IQMINKERNEL
|
||||
IQMINKERNEL = imin.S
|
||||
endif
|
||||
|
||||
ifndef ISMAXKERNEL
|
||||
ISMAXKERNEL = imax.S
|
||||
endif
|
||||
|
||||
ifndef IDMAXKERNEL
|
||||
IDMAXKERNEL = imax.S
|
||||
endif
|
||||
|
||||
ifndef IQMAXKERNEL
|
||||
IQMAXKERNEL = imax.S
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue