Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2020-11-18 00:14:49 +0300
committerKenneth Heafield <github@kheafield.com>2020-11-18 00:14:49 +0300
commit0d70d757d6e9b56428bc9c6368e31e961fbd9379 (patch)
tree1b0c8ec24a73eee5ceadce2e972645a6bdb35785
parentd85e98ddceb02989551170b993b0f27fc5a109eb (diff)
Directory for compile tests
-rw-r--r--CMakeLists.txt6
-rw-r--r--compile_test/avx2.cc (renamed from compile_test_avx2.cc)0
-rw-r--r--compile_test/avx512bw.cc (renamed from compile_test_avx512bw.cc)0
-rw-r--r--compile_test/avx512vnni.cc (renamed from compile_test_avx512vnni.cc)0
4 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7c3ccfa..a065cb4 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -19,7 +19,7 @@ endif()
# Check if compiler supports AVX2 (this should only catch emscripten)
try_compile(INTGEMM_COMPILER_SUPPORTS_AVX2
${CMAKE_CURRENT_BINARY_DIR}/compile_tests
- ${CMAKE_CURRENT_SOURCE_DIR}/compile_test_avx2.cc)
+ ${CMAKE_CURRENT_SOURCE_DIR}/compile_test/avx2.cc)
if(NOT INTGEMM_COMPILER_SUPPORTS_AVX2)
message(WARNING "${Orange}Not building AVX2-based multiplication because your compiler is too old.\nFor details rerun cmake with --debug-trycompile then try to build in compile_tests/CMakeFiles/CMakeTmp.${ColourReset}")
endif()
@@ -27,7 +27,7 @@ endif()
# Check if compiler supports AVX512BW
try_compile(INTGEMM_COMPILER_SUPPORTS_AVX512BW
${CMAKE_CURRENT_BINARY_DIR}/compile_tests
- ${CMAKE_CURRENT_SOURCE_DIR}/compile_test_avx512bw.cc)
+ ${CMAKE_CURRENT_SOURCE_DIR}/compile_test/avx512bw.cc)
if(NOT INTGEMM_COMPILER_SUPPORTS_AVX512BW)
message(WARNING "${Orange}Not building AVX512BW-based multiplication because your compiler is too old.\nFor details rerun cmake with --debug-trycompile then try to build in compile_tests/CMakeFiles/CMakeTmp.${ColourReset}")
endif()
@@ -35,7 +35,7 @@ endif()
# Check if the compiler supports AVX512VNNI
try_compile(INTGEMM_COMPILER_SUPPORTS_AVX512VNNI
${CMAKE_CURRENT_BINARY_DIR}/compile_tests
- ${CMAKE_CURRENT_SOURCE_DIR}/compile_test_avx512vnni.cc)
+ ${CMAKE_CURRENT_SOURCE_DIR}/compile_test/avx512vnni.cc)
if(NOT INTGEMM_COMPILER_SUPPORTS_AVX512VNNI)
message(WARNING "${Orange}Not building AVX512VNNI-based multiplication because your compiler is too old.\nFor details rerun cmake with --debug-trycompile then try to build in compile_tests/CMakeFiles/CMakeTmp.${ColourReset}")
endif()
diff --git a/compile_test_avx2.cc b/compile_test/avx2.cc
index 794983b..794983b 100644
--- a/compile_test_avx2.cc
+++ b/compile_test/avx2.cc
diff --git a/compile_test_avx512bw.cc b/compile_test/avx512bw.cc
index 2cd4c6a..2cd4c6a 100644
--- a/compile_test_avx512bw.cc
+++ b/compile_test/avx512bw.cc
diff --git a/compile_test_avx512vnni.cc b/compile_test/avx512vnni.cc
index 1485cde..1485cde 100644
--- a/compile_test_avx512vnni.cc
+++ b/compile_test/avx512vnni.cc