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

github.com/marian-nmt/intgemm/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--avx2_gemm.h2
-rw-r--r--cops.h2
-rw-r--r--test/multiply_test.cc5
3 files changed, 1 insertions, 8 deletions
diff --git a/avx2_gemm.h b/avx2_gemm.h
index 9ed70c1..bdc60e4 100644
--- a/avx2_gemm.h
+++ b/avx2_gemm.h
@@ -8,8 +8,6 @@
namespace intgemm {
-// PREPARE A: just quantization in the same memory order.
-
namespace avx2 {
// Read a vector of floats, multiply them, and cast to 32-bit integer.
// EVIL EVIL CODE DUPLICATION, FIX
diff --git a/cops.h b/cops.h
index 62da68e..e685a3c 100644
--- a/cops.h
+++ b/cops.h
@@ -48,7 +48,7 @@ class JustUnquantizeC {
class Identity {
public:
- Identity(int32_t *C) : C_(C) {}
+ explicit Identity(int32_t *C) : C_(C) {}
class OnSSE2 {
public:
diff --git a/test/multiply_test.cc b/test/multiply_test.cc
index 0caa022..6c16dec 100644
--- a/test/multiply_test.cc
+++ b/test/multiply_test.cc
@@ -1,8 +1,3 @@
-//#include "avx512_gemm.h"
-#include "avx2_gemm.h"
-#include "ssse3_gemm.h"
-#include "sse2_gemm.h"
-#include "cops.h"
#include "intgemm.h"
#include "aligned.h"
#include "interleave.h"