Use the new universal intrinsics for s/dSUM across all platforms, and generic C c/zSUM on Windows

This commit is contained in:
Martin Kroeker 2020-10-12 23:45:49 +02:00 committed by GitHub
parent 600054b0ac
commit 36bd6ba6c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -487,9 +487,10 @@ XTRSMKERNEL_RT = xtrsm_kernel_LT_1x1.S
XGEMM3MKERNEL = xgemm3m_kernel_2x2.S XGEMM3MKERNEL = xgemm3m_kernel_2x2.S
ifeq ($(OSNAME),WINNT)
SSUMKERNEL = ../arm/sum.c SSUMKERNEL = ../arm/sum.c
DSUMKERNEL = ../arm/sum.c DSUMKERNEL = ../arm/sum.c
ifeq ($(OSNAME),WINNT)
CSUMKERNEL = ../arm/zsum.c CSUMKERNEL = ../arm/zsum.c
ZSUMKERNEL = ../arm/zsum.c ZSUMKERNEL = ../arm/zsum.c
endif endif