Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/cpu.c
diff options
context:
space:
mode:
authorHenrik Gramner <gramner@twoorioles.com>2021-10-05 00:21:25 +0300
committerHenrik Gramner <gramner@twoorioles.com>2021-10-18 17:49:05 +0300
commit88e3cb7ef1b4563389f6dffd85d54bdf21eb9388 (patch)
tree0337e6e2a7a10c324a2bea975857117055ca7275 /src/cpu.c
parent75318ec7ca22c264e6dcf477bb2a5b3594009300 (diff)
x86: Enable AVX-512 by default
Diffstat (limited to 'src/cpu.c')
-rw-r--r--src/cpu.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/cpu.c b/src/cpu.c
index c003011..15b4e4b 100644
--- a/src/cpu.c
+++ b/src/cpu.c
@@ -53,9 +53,6 @@ static unsigned flags = 0;
#if __has_feature(memory_sanitizer)
// memory sanitizer is inherently incompatible with asm
static unsigned flags_mask = 0;
-#elif ARCH_X86
-/* Disable AVX-512 by default for the time being */
-static unsigned flags_mask = ~DAV1D_X86_CPU_FLAG_AVX512ICL;
#else
static unsigned flags_mask = -1;
#endif