Browse Source

Add cgemm and zgemm unroll factors for core2

tags/v0.3.8^2
Martin Kroeker GitHub 6 years ago
parent
commit
1fec0570f6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      cmake/prebuild.cmake

+ 4
- 0
cmake/prebuild.cmake View File

@@ -124,6 +124,10 @@ if (DEFINED CORE AND CMAKE_CROSSCOMPILING AND NOT (${HOST_OS} STREQUAL "WINDOWSS
set(SGEMM_UNROLL_N 4)
set(DGEMM_UNROLL_M 4)
set(DGEMM_UNROLL_N 4)
set(CGEMM_DEFAULT_UNROLL_M 4)
set(CGEMM_DEFAULT_UNROLL_N 2)
set(ZGEMM_DEFAULT_UNROLL_M 2)
set(ZGEMM_DEFAULT_UNROLL_N 2)
elseif ("${TCORE}" STREQUAL "ARMV7")
file(APPEND ${TARGET_CONF_TEMP}
"#define L1_DATA_SIZE\t65536\n"


Loading…
Cancel
Save