From: w00421467 Date: Fri, 20 Dec 2019 02:11:50 +0000 (+0800) Subject: declare DGEMM_BETA in KERNEL.ARMV8 rather than the generic KERNEL X-Git-Tag: upstream/0.3.21~30^2~26^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b7cc69ee622fed9039ab755b87eee9279d27d541;p=platform%2Fupstream%2Fopenblas.git declare DGEMM_BETA in KERNEL.ARMV8 rather than the generic KERNEL --- diff --git a/kernel/arm64/KERNEL b/kernel/arm64/KERNEL index 4402571..f936cdf 100644 --- a/kernel/arm64/KERNEL +++ b/kernel/arm64/KERNEL @@ -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 diff --git a/kernel/arm64/KERNEL.ARMV8 b/kernel/arm64/KERNEL.ARMV8 index efc1ec8..b90dd22 100644 --- a/kernel/arm64/KERNEL.ARMV8 +++ b/kernel/arm64/KERNEL.ARMV8 @@ -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))