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:
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 12300e0..1c6d96e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -32,10 +32,21 @@ endforeach()
include_directories(.)
add_executable(tests
+ # General tests
test/multiply_test.cc
test/quantize_test.cc
test/test.cc
test/utils_test.cc
+
+ # Kernels tests
+ test/kernels/add_bias_test.cc
+ test/kernels/exp_test.cc
+ test/kernels/floor_ff_test.cc
+ test/kernels/quantize_test.cc
+ test/kernels/unquantize_test.cc
+ test/kernels/write_test.cc
+
+ # Definitions
intgemm.cc
)