declare DGEMM_BETA in KERNEL.ARMV8 rather than the generic KERNEL
authorw00421467 <wuzeyi1@huawei.com>
Fri, 20 Dec 2019 02:11:50 +0000 (10:11 +0800)
committerw00421467 <wuzeyi1@huawei.com>
Fri, 20 Dec 2019 02:11:50 +0000 (10:11 +0800)
kernel/arm64/KERNEL
kernel/arm64/KERNEL.ARMV8

index 4402571..f936cdf 100644 (file)
@@ -34,7 +34,7 @@ ifndef SGEMM_BETA
 SGEMM_BETA = ../generic/gemm_beta.c
 endif
 ifndef DGEMM_BETA
-DGEMM_BETA = ../arm64/dgemm_beta.S
+DGEMM_BETA = ../generic/gemm_beta.c
 endif
 ifndef CGEMM_BETA
 CGEMM_BETA = ../generic/zgemm_beta.c
index efc1ec8..b90dd22 100644 (file)
@@ -102,6 +102,8 @@ CDOTKERNEL     = zdot.S
 ZDOTKERNEL     = zdot.S
 DSDOTKERNEL    = dot.S
 
+DGEMM_BETA     = dgemm_beta.S
+
 SGEMMKERNEL    =  sgemm_kernel_$(SGEMM_UNROLL_M)x$(SGEMM_UNROLL_N).S
 STRMMKERNEL    =  strmm_kernel_$(SGEMM_UNROLL_M)x$(SGEMM_UNROLL_N).S
 ifneq ($(SGEMM_UNROLL_M), $(SGEMM_UNROLL_N))