We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9afd0c8 + 42d8865 commit 2c2b6bcCopy full SHA for 2c2b6bc
Makefile.system
@@ -277,6 +277,12 @@ endif
277
ifeq ($(ARCH), arm64)
278
GEMM_GEMV_FORWARD = 1
279
endif
280
+ifeq ($(ARCH), riscv)
281
+GEMM_GEMV_FORWARD = 1
282
+endif
283
+ifeq ($(ARCH), power)
284
285
286
287
ifeq ($(SMALL_MATRIX_OPT), 1)
288
CCOMMON_OPT += -DSMALL_MATRIX_OPT
cmake/system.cmake
@@ -391,7 +391,7 @@ endif ()
391
if (X86_64 OR ${CORE} STREQUAL POWER10)
392
set(SMALL_MATRIX_OPT TRUE)
393
endif ()
394
-if (ARM64)
+if (ARM64 OR RISCV64 OR POWER)
395
set(GEMM_GEMV_FORWARD TRUE)
396
397
0 commit comments