Use generic kernels for xSUM on Windows

to work around Win10.19041 fpu bug
This commit is contained in:
Martin Kroeker 2020-10-12 08:24:51 +02:00 committed by GitHub
parent f0883740e4
commit 600054b0ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -486,3 +486,11 @@ XTRSMKERNEL_RN = xtrsm_kernel_LT_1x1.S
XTRSMKERNEL_RT = xtrsm_kernel_LT_1x1.S
XGEMM3MKERNEL = xgemm3m_kernel_2x2.S
ifeq ($(OSNAME),WINNT)
SSUMKERNEL = ../arm/sum.c
DSUMKERNEL = ../arm/sum.c
CSUMKERNEL = ../arm/zsum.c
ZSUMKERNEL = ../arm/zsum.c
endif