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:
authorKenneth Heafield <github@kheafield.com>2019-12-14 02:35:05 +0300
committerKenneth Heafield <github@kheafield.com>2019-12-14 02:35:05 +0300
commite0a06f750cc19433bd85d078f386fa2003b79e9c (patch)
tree5acf19572a8b10b6be8141c6930d06cbb34e5c22
parent6d84e254683acdda0a401308a30ffa8c93905c38 (diff)
Remove INTGEMM_ from names printed
-rw-r--r--avx2_gemm.h4
-rw-r--r--sse2_gemm.h2
-rw-r--r--ssse3_gemm.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/avx2_gemm.h b/avx2_gemm.h
index e2bbca0..7d240b9 100644
--- a/avx2_gemm.h
+++ b/avx2_gemm.h
@@ -83,7 +83,7 @@ struct AVX2_16bit {
INTGEMM_MULTIPLY16(__m256i, INTGEMM_AVX2, CPUType::AVX2)
- constexpr static const char *const kName = "16-bit INTGEMM_AVX2";
+ constexpr static const char *const kName = "16-bit AVX2";
static const CPUType kUses = CPUType::AVX2;
};
@@ -222,7 +222,7 @@ struct AVX2_8bit {
INTGEMM_PREPAREBIASFOR8(__m256i, INTGEMM_AVX2, CPUType::AVX2)
- constexpr static const char *const kName = "8-bit INTGEMM_AVX2";
+ constexpr static const char *const kName = "8-bit AVX2";
static const CPUType kUses = CPUType::AVX2;
};
diff --git a/sse2_gemm.h b/sse2_gemm.h
index 4e8f885..ef81daf 100644
--- a/sse2_gemm.h
+++ b/sse2_gemm.h
@@ -77,7 +77,7 @@ struct SSE2_16bit {
}
INTGEMM_MULTIPLY16(__m128i, INTGEMM_SSE2, CPUType::SSE2)
- constexpr static const char *const kName = "16-bit INTGEMM_SSE2";
+ constexpr static const char *const kName = "16-bit SSE2";
static const CPUType kUses = CPUType::SSE2;
};
diff --git a/ssse3_gemm.h b/ssse3_gemm.h
index 9dd290f..a2d74dd 100644
--- a/ssse3_gemm.h
+++ b/ssse3_gemm.h
@@ -147,7 +147,7 @@ struct SSSE3_8bit {
INTGEMM_PREPAREBIASFOR8(__m128i, INTGEMM_SSSE3, CPUType::SSE2)
- constexpr static const char *const kName = "8-bit INTGEMM_SSSE3";
+ constexpr static const char *const kName = "8-bit SSSE3";
static const CPUType kUses = CPUType::SSSE3;
};