Browse Source

Merge pull request #5299 from martin-frbg/x86_64-ssezscal

Disable the default SSE kernels for x86_64 CSCAL/ZSCAL for now
tags/v0.3.30
Martin Kroeker GitHub 5 months ago
parent
commit
63272b6c82
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 endif


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


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


ifndef ASCALKERNEL ifndef ASCALKERNEL


Loading…
Cancel
Save