Browse Source

replaced files for sdot, sgemv_n and sgemv_t for bug #348

tags/v0.2.9^2
wernsaar 11 years ago
parent
commit
793509a3b5
2 changed files with 6 additions and 6 deletions
  1. +3
    -3
      kernel/x86/KERNEL
  2. +3
    -3
      kernel/x86_64/KERNEL

+ 3
- 3
kernel/x86/KERNEL View File

@@ -59,7 +59,7 @@ CASUMKERNEL = zasum_sse.S
endif

ifndef SDOTKERNEL
SDOTKERNEL = dot_sse.S
SDOTKERNEL = ../arm/dot.c
endif

ifndef CDOTKERNEL
@@ -107,11 +107,11 @@ CSWAPKERNEL = zswap_sse.S
endif

ifndef SGEMVNKERNEL
SGEMVNKERNEL = gemv_n_sse.S
SGEMVNKERNEL = ../arm/gemv_n.c
endif

ifndef SGEMVTKERNEL
SGEMVTKERNEL = gemv_t_sse.S
SGEMVTKERNEL = ../arm/gemv_t.c
endif

ifndef CGEMVNKERNEL


+ 3
- 3
kernel/x86_64/KERNEL View File

@@ -119,7 +119,7 @@ XCOPYKERNEL = zcopy.S
endif

ifndef SDOTKERNEL
SDOTKERNEL = dot_sse.S
SDOTKERNEL = ../arm/dot.c
endif

ifndef DDOTKERNEL
@@ -369,11 +369,11 @@ endif
GEMVDEP = ../l2param.h

ifndef SGEMVNKERNEL
SGEMVNKERNEL = sgemv_n.S
SGEMVNKERNEL = ../arm/gemv_n.c
endif

ifndef SGEMVTKERNEL
SGEMVTKERNEL = sgemv_t.S
SGEMVTKERNEL = ../arm/gemv_t.c
endif

ifndef DGEMVNKERNEL


Loading…
Cancel
Save