From ee2742f9135500a957393a6bdf3ee2ac1e7f9862 Mon Sep 17 00:00:00 2001 From: Mateusz Chudyk Date: Tue, 18 Jun 2019 14:34:01 +0100 Subject: Make CPUType scoped enum --- ssse3_gemm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ssse3_gemm.h') 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 -- cgit v1.2.3