summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/tools/cpuid.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tools/cpuid.hxx b/include/tools/cpuid.hxx
index 98dca497a7de..0fb1d5b8e965 100644
--- a/include/tools/cpuid.hxx
+++ b/include/tools/cpuid.hxx
@@ -27,13 +27,13 @@ enum class InstructionSetFlags
SSE42 = 0x10,
AVX = 0x20,
AVX2 = 0x40,
- AVX512F = 0x100
+ AVX512F = 0x80
};
} // end cpuid
namespace o3tl {
- template<> struct typed_flags<cpuid::InstructionSetFlags> : is_typed_flags<cpuid::InstructionSetFlags, 0x07f> {};
+ template<> struct typed_flags<cpuid::InstructionSetFlags> : is_typed_flags<cpuid::InstructionSetFlags, 0x0ff> {};
}
namespace cpuid {