Skip to content

Commit 50c2637

Browse files
authored
Correct DGEMM_UNROLL_M value for A53 in cross-compile
1 parent fe5d3ca commit 50c2637

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

cmake/prebuild.cmake

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,11 @@ else ()
886886
set(SGEMM_UNROLL_M 8)
887887
set(SGEMM_UNROLL_N 8)
888888
endif ()
889+
if ("${TCORE}" STREQUAL "CORTEXA53")
890+
set(DGEMM_UNROLL_M 4)
891+
else ()
889892
set(DGEMM_UNROLL_M 8)
893+
endif ()
890894
set(DGEMM_UNROLL_N 4)
891895
set(CGEMM_UNROLL_M 8)
892896
set(CGEMM_UNROLL_N 4)

0 commit comments

Comments
 (0)