Add proper defaults for IxMIN/IxMAX kernels
the fallbacks from Makefile.L1 assume a combined source for absolute value and non-absolute (with ifdef USE_ABS) but here we have separate implementations
This commit is contained in:
parent
4046985913
commit
07454bf4d5
|
@ -167,3 +167,27 @@ endif
|
||||||
|
|
||||||
CGEMM3MKERNEL = zgemm3m_kernel.S
|
CGEMM3MKERNEL = zgemm3m_kernel.S
|
||||||
ZGEMM3MKERNEL = 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
|
||||||
|
|
Loading…
Reference in New Issue