Browse Source

Disable the default SSE kernels for CSCAL/ZSCAL for now

tags/v0.3.30
Martin Kroeker GitHub 3 months ago
parent
commit
549a9f1dbb
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      kernel/x86_64/KERNEL

+ 2
- 2
kernel/x86_64/KERNEL View File

@@ -323,11 +323,11 @@ DSCALKERNEL = scal_sse2.S
endif

ifndef CSCALKERNEL
CSCALKERNEL = zscal_sse.S
CSCALKERNEL = ../arm/zscal.c
endif

ifndef ZSCALKERNEL
ZSCALKERNEL = zscal_sse2.S
ZSCALKERNEL = ../arm/zscal.c
endif

ifndef ASCALKERNEL


Loading…
Cancel
Save