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:
authorMateusz Chudyk <mateuszchudyk@gmail.com>2019-06-18 16:34:01 +0300
committerMateusz Chudyk <mateuszchudyk@gmail.com>2019-06-18 16:41:12 +0300
commitee2742f9135500a957393a6bdf3ee2ac1e7f9862 (patch)
tree60b3f74362c574d5b3fcb76522679c1e40f358b2 /ssse3_gemm.h
parentf5c08aea11e572e57216f812c0123f0627ff2853 (diff)
Make CPUType scoped enum
Diffstat (limited to 'ssse3_gemm.h')
-rw-r--r--ssse3_gemm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssse3_gemm.h b/ssse3_gemm.h
index 4e12b90..6038889 100644
--- a/ssse3_gemm.h
+++ b/ssse3_gemm.h
@@ -95,11 +95,11 @@ struct SSSE3_8bit {
ssse3::SelectColumnsOfB((const __m128i*)input, (__m128i*)output, rows, cols_begin, cols_end);
}
- INTGEMM_MULTIPLY8(__m128i, INTGEMM_SSSE3, CPUType::CPU_SSE2)
+ INTGEMM_MULTIPLY8(__m128i, INTGEMM_SSSE3, CPUType::SSE2)
constexpr static const char *const kName = "8-bit INTGEMM_SSSE3";
- static const CPUType kUses = CPU_SSSE3;
+ static const CPUType kUses = CPUType::SSSE3;
};
} // namespace intgemm