declare DGEMM_BETA in KERNEL.ARMV8 rather than the generic KERNEL

This commit is contained in:
w00421467 2019-12-20 10:11:50 +08:00
parent aeef942c4f
commit b7cc69ee62
2 changed files with 3 additions and 1 deletions

View 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

View 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))