Correct DGEMM_UNROLL_M value for A53 in cross-compile
This commit is contained in:
parent
fe5d3ca8e0
commit
50c263716e
|
@ -886,7 +886,11 @@ else ()
|
|||
set(SGEMM_UNROLL_M 8)
|
||||
set(SGEMM_UNROLL_N 8)
|
||||
endif ()
|
||||
if ("${TCORE}" STREQUAL "CORTEXA53")
|
||||
set(DGEMM_UNROLL_M 4)
|
||||
else ()
|
||||
set(DGEMM_UNROLL_M 8)
|
||||
endif ()
|
||||
set(DGEMM_UNROLL_N 4)
|
||||
set(CGEMM_UNROLL_M 8)
|
||||
set(CGEMM_UNROLL_N 4)
|
||||
|
|
Loading…
Reference in New Issue