Skip to content

Commit b7cc69e

Browse files
committed
declare DGEMM_BETA in KERNEL.ARMV8 rather than the generic KERNEL
1 parent aeef942 commit b7cc69e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

kernel/arm64/KERNEL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ ifndef SGEMM_BETA
3434
SGEMM_BETA = ../generic/gemm_beta.c
3535
endif
3636
ifndef DGEMM_BETA
37-
DGEMM_BETA = ../arm64/dgemm_beta.S
37+
DGEMM_BETA = ../generic/gemm_beta.c
3838
endif
3939
ifndef CGEMM_BETA
4040
CGEMM_BETA = ../generic/zgemm_beta.c

kernel/arm64/KERNEL.ARMV8

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@ CDOTKERNEL = zdot.S
102102
ZDOTKERNEL = zdot.S
103103
DSDOTKERNEL = dot.S
104104

105+
DGEMM_BETA = dgemm_beta.S
106+
105107
SGEMMKERNEL = sgemm_kernel_$(SGEMM_UNROLL_M)x$(SGEMM_UNROLL_N).S
106108
STRMMKERNEL = strmm_kernel_$(SGEMM_UNROLL_M)x$(SGEMM_UNROLL_N).S
107109
ifneq ($(SGEMM_UNROLL_M), $(SGEMM_UNROLL_N))

0 commit comments

Comments
 (0)