From fcb88b9d529b8735f4328262d19b902c719fcc44 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Wed, 31 Jul 2024 23:21:35 +0200 Subject: [PATCH] enable GEMM/GEMV forwarding for riscv and ppc --- Makefile.system | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile.system b/Makefile.system index 436245c35..12cc57f25 100644 --- a/Makefile.system +++ b/Makefile.system @@ -277,6 +277,12 @@ endif ifeq ($(ARCH), arm64) GEMM_GEMV_FORWARD = 1 endif +ifeq($(ARCH), riscv) +GEMM_GEMV_FORWARD = 1 +endif +ifeq ($(ARCH), power) +GEMM_GEMV_FORWARD = 1 +endif ifeq ($(SMALL_MATRIX_OPT), 1) CCOMMON_OPT += -DSMALL_MATRIX_OPT