From aace2fda553a143cc506ceb9e1f2e4426d843c11 Mon Sep 17 00:00:00 2001 From: Chris Jones <jonesc@hep.phy.cam.ac.uk> Date: Fri, 16 Aug 2019 15:42:00 +0100 Subject: [PATCH] PlatformInfo - Extend AVX512 types with AVX512VL and AVX512BW --- Kernel/LHCbKernel/src/PlatformInfo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/LHCbKernel/src/PlatformInfo.cpp b/Kernel/LHCbKernel/src/PlatformInfo.cpp index 7d62dc6c41d..d86d5a1a193 100644 --- a/Kernel/LHCbKernel/src/PlatformInfo.cpp +++ b/Kernel/LHCbKernel/src/PlatformInfo.cpp @@ -105,8 +105,8 @@ namespace { const std::string invalid_platform = "invalid"; const std::vector<std::string> known_instruction_sets = { - "80386", "SSE", "SSE2", "SSE3", "Supplementary SSE3 (SSSE3)", "SSE4.1", "SSE4.2", "AVX", "AVX2", "AVX512F", - }; + "80386", "SSE", "SSE2", "SSE3", "Supplementary SSE3 (SSSE3)", "SSE4.1", "SSE4.2", "AVX", + "AVX2", "AVX512F", "AVX512VL", "AVX512BW"}; const std::string unknown_instructions_set = "unknown"; // special trick to add quotes around a macro value -- GitLab