Skip to content

Commit fcb88b9

Browse files
authored
enable GEMM/GEMV forwarding for riscv and ppc
1 parent 9afd0c8 commit fcb88b9

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Makefile.system

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,12 @@ endif
277277
ifeq ($(ARCH), arm64)
278278
GEMM_GEMV_FORWARD = 1
279279
endif
280+
ifeq($(ARCH), riscv)
281+
GEMM_GEMV_FORWARD = 1
282+
endif
283+
ifeq ($(ARCH), power)
284+
GEMM_GEMV_FORWARD = 1
285+
endif
280286

281287
ifeq ($(SMALL_MATRIX_OPT), 1)
282288
CCOMMON_OPT += -DSMALL_MATRIX_OPT

0 commit comments

Comments
 (0)