Merge pull request #3938 from martin-frbg/issue3937
Fix CMAKE-based cross-compilation to CortexA53 (wrong DGEMM setting)
This commit is contained in:
commit
8d6813ec41
|
@ -886,7 +886,11 @@ else ()
|
||||||
set(SGEMM_UNROLL_M 8)
|
set(SGEMM_UNROLL_M 8)
|
||||||
set(SGEMM_UNROLL_N 8)
|
set(SGEMM_UNROLL_N 8)
|
||||||
endif ()
|
endif ()
|
||||||
|
if ("${TCORE}" STREQUAL "CORTEXA53")
|
||||||
|
set(DGEMM_UNROLL_M 4)
|
||||||
|
else ()
|
||||||
set(DGEMM_UNROLL_M 8)
|
set(DGEMM_UNROLL_M 8)
|
||||||
|
endif ()
|
||||||
set(DGEMM_UNROLL_N 4)
|
set(DGEMM_UNROLL_N 4)
|
||||||
set(CGEMM_UNROLL_M 8)
|
set(CGEMM_UNROLL_M 8)
|
||||||
set(CGEMM_UNROLL_N 4)
|
set(CGEMM_UNROLL_N 4)
|
||||||
|
|
Loading…
Reference in New Issue