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:
authorkpu <github@kheafield.com>2018-06-23 20:48:50 +0300
committerkpu <github@kheafield.com>2018-06-23 20:48:50 +0300
commitc4830ebb8fde2f2079118b7999fe2c03fa6f4a4a (patch)
treeaa5a2521e22cdd1cfaeeae2c8dc4231585a9a67d /test.cc
parent37f49df4aa08734ba61b9462ca5f75fe84432bde (diff)
Rename dispatch to intgemm since it's the public interface
Diffstat (limited to 'test.cc')
-rw-r--r--test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/test.cc b/test.cc
index e263698..58e12e0 100644
--- a/test.cc
+++ b/test.cc
@@ -1,7 +1,7 @@
#include "avx512_gemm.h"
#include "avx2_gemm.h"
#include "sse2_gemm.h"
-#include "dispatch.h"
+#include "intgemm.h"
#include "aligned.h"
#include "interleave.h"
#include "stop_watch.h"
@@ -220,12 +220,12 @@ template <class Routine> void TestMultiply(int A_rows, int width, int B_cols) {
}
void TestBoth(int A_rows, int width, int B_cols) {
- if (Dispatch_16bit::Quantize == AVX512_16bit::Quantize) {
+ if (Generic_16bit::Quantize == AVX512_16bit::Quantize) {
TestMultiply<AVX512_16bit>(A_rows, width, B_cols);
}
TestMultiply<AVX2_16bit>(A_rows, width, B_cols);
TestMultiply<SSE2_16bit>(A_rows, width, B_cols);
- if (Dispatch_16bit::Quantize == AVX512_16bit::Quantize) {
+ if (Generic_16bit::Quantize == AVX512_16bit::Quantize) {
TestMultiply<AVX512_8bit>(A_rows, width, B_cols);
}
TestMultiply<AVX2_8bit>(A_rows, width, B_cols);