Browse Source

renamed some BLAS kernels, which are compatible to ARMV6

tags/v0.2.9.rc1
wernsaar 12 years ago
parent
commit
f1be3a168a
6 changed files with 8 additions and 8 deletions
  1. +4
    -4
      kernel/arm/KERNEL.ARMV6
  2. +4
    -4
      kernel/arm/KERNEL.ARMV7
  3. +0
    -0
      kernel/arm/ccopy_vfp.S
  4. +0
    -0
      kernel/arm/dcopy_vfp.S
  5. +0
    -0
      kernel/arm/scopy_vfp.S
  6. +0
    -0
      kernel/arm/zcopy_vfp.S

+ 4
- 4
kernel/arm/KERNEL.ARMV6 View File

@@ -40,10 +40,10 @@ DAXPYKERNEL = axpy.c
CAXPYKERNEL = zaxpy.c
ZAXPYKERNEL = zaxpy.c

SCOPYKERNEL = copy.c
DCOPYKERNEL = copy.c
CCOPYKERNEL = zcopy.c
ZCOPYKERNEL = zcopy.c
SCOPYKERNEL = scopy_vfp.S
DCOPYKERNEL = dcopy_vfp.S
CCOPYKERNEL = ccopy_vfp.S
ZCOPYKERNEL = zcopy_vfp.S

SDOTKERNEL = dot.c
DDOTKERNEL = dot.c


+ 4
- 4
kernel/arm/KERNEL.ARMV7 View File

@@ -45,10 +45,10 @@ DAXPYKERNEL = ../arm/axpy.c
CAXPYKERNEL = ../arm/zaxpy.c
ZAXPYKERNEL = ../arm/zaxpy.c

SCOPYKERNEL = scopy_vfpv3.S
DCOPYKERNEL = dcopy_vfpv3.S
CCOPYKERNEL = ccopy_vfpv3.S
ZCOPYKERNEL = zcopy_vfpv3.S
SCOPYKERNEL = scopy_vfp.S
DCOPYKERNEL = dcopy_vfp.S
CCOPYKERNEL = ccopy_vfp.S
ZCOPYKERNEL = zcopy_vfp.S

SDOTKERNEL = sdot_vfpv3.S
DDOTKERNEL = ddot_vfpv3.S


kernel/arm/ccopy_vfpv3.S → kernel/arm/ccopy_vfp.S View File


kernel/arm/dcopy_vfpv3.S → kernel/arm/dcopy_vfp.S View File


kernel/arm/scopy_vfpv3.S → kernel/arm/scopy_vfp.S View File


kernel/arm/zcopy_vfpv3.S → kernel/arm/zcopy_vfp.S View File


Loading…
Cancel
Save