Browse Source

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

pull/2887/head
Martin Kroeker GitHub 5 years ago
parent
commit
36bd6ba6c7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      kernel/x86_64/KERNEL

+ 2
- 1
kernel/x86_64/KERNEL View File

@@ -487,9 +487,10 @@ XTRSMKERNEL_RT = xtrsm_kernel_LT_1x1.S

XGEMM3MKERNEL = xgemm3m_kernel_2x2.S

ifeq ($(OSNAME),WINNT)
SSUMKERNEL = ../arm/sum.c
DSUMKERNEL = ../arm/sum.c
ifeq ($(OSNAME),WINNT)
CSUMKERNEL = ../arm/zsum.c
ZSUMKERNEL = ../arm/zsum.c
endif


Loading…
Cancel
Save