Browse Source

Merge pull request #4906 from XiWeiGu/arm64_cmake_small_matrix_opt

ARM64: Enable SMALL_MATRIX_OPT when compiling with CMake
tags/v0.3.29
Martin Kroeker GitHub 1 year ago
parent
commit
54afc24e4d
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cmake/system.cmake

+ 1
- 1
cmake/system.cmake View File

@@ -388,7 +388,7 @@ if (NEED_PIC)
endif()
endif ()

if (X86_64 OR ${CORE} STREQUAL POWER10 OR LOONGARCH64)
if (X86_64 OR ${CORE} STREQUAL POWER10 OR ARM64 OR LOONGARCH64)
set(SMALL_MATRIX_OPT TRUE)
endif ()
if (ARM64)


Loading…
Cancel
Save