Revert special handling of Windows xNRM2 and enable C+intrinsics kernel for SSUM/DSUM

This commit is contained in:
Martin Kroeker 2020-10-13 00:14:29 +02:00 committed by GitHub
parent f0883740e4
commit 8d2df7d066
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 8 deletions

View File

@ -259,12 +259,8 @@ SNRM2KERNEL = nrm2_sse.S
endif endif
ifndef DNRM2KERNEL ifndef DNRM2KERNEL
ifeq ($(OSNAME),WINNT)
DNRM2KERNEL = ../arm/nrm2.c
else
DNRM2KERNEL = nrm2.S DNRM2KERNEL = nrm2.S
endif endif
endif
ifndef QNRM2KERNEL ifndef QNRM2KERNEL
QNRM2KERNEL = nrm2.S QNRM2KERNEL = nrm2.S
@ -275,12 +271,8 @@ CNRM2KERNEL = znrm2_sse.S
endif endif
ifndef ZNRM2KERNEL ifndef ZNRM2KERNEL
ifeq ($(OSNAME),WINNT)
ZNRM2KERNEL = ../arm/znrm2.c
else
ZNRM2KERNEL = znrm2.S ZNRM2KERNEL = znrm2.S
endif endif
endif
ifndef XNRM2KERNEL ifndef XNRM2KERNEL
XNRM2KERNEL = znrm2.S XNRM2KERNEL = znrm2.S
@ -486,3 +478,6 @@ XTRSMKERNEL_RN = xtrsm_kernel_LT_1x1.S
XTRSMKERNEL_RT = xtrsm_kernel_LT_1x1.S XTRSMKERNEL_RT = xtrsm_kernel_LT_1x1.S
XGEMM3MKERNEL = xgemm3m_kernel_2x2.S XGEMM3MKERNEL = xgemm3m_kernel_2x2.S
SSUMKERNEL = ../arm/sum.c
DSUMKERNEL = ../arm/sum.c