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>2018-06-28 21:19:03 +0300
committerKenneth Heafield <github@kheafield.com>2018-06-28 21:19:03 +0300
commitc10b7b4ea08c39c7b6cbb5314a97d829920268ac (patch)
treeffcbd8be7700b766a6b016446d919d0bc9289175 /sse2_gemm.cc
parentb8e62d1347109eba5178259f03a6b400bf2d04cb (diff)
Remove compile guards. We should probably just not be compiling the
entire file.
Diffstat (limited to 'sse2_gemm.cc')
-rw-r--r--sse2_gemm.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/sse2_gemm.cc b/sse2_gemm.cc
index 3e0a0d8..1c23747 100644
--- a/sse2_gemm.cc
+++ b/sse2_gemm.cc
@@ -11,8 +11,6 @@
namespace intgemm {
-#ifdef __SSE2__
-
namespace {
// Same implementation as AVX512, just width. Grabs 4 32-bit values.
inline __m128i QuantizerGrab(const float *input, const __m128 quant_mult_reg) {
@@ -71,6 +69,4 @@ void SSE2_16bit::Multiply(const int16_t *A, const int16_t *B, float *C, float un
const char *const SSE2_16bit::kName = "16-bit SSE2";
-#endif // __SSE2__
-
} // namespace intgemm