From 7087b0a7d0038fb31fff48d65d0d2ba6ab3397ce Mon Sep 17 00:00:00 2001 From: gxw Date: Sun, 29 Sep 2024 10:31:26 +0800 Subject: [PATCH] ARM64: Enable SMALL_MATRIX_OPT when compiling with CMake --- cmake/system.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/system.cmake b/cmake/system.cmake index a0b73ddae0..7a11d27e21 100644 --- a/cmake/system.cmake +++ b/cmake/system.cmake @@ -388,7 +388,7 @@ if (NEED_PIC) endif() endif () -if (X86_64 OR ${CORE} STREQUAL POWER10) +if (X86_64 OR ${CORE} STREQUAL POWER10 OR ARM64) set(SMALL_MATRIX_OPT TRUE) endif () if (ARM64)