From 3f8966f4abad97b9e0da16994d82e4f72d353486 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Per=20=C3=85hgren?= Date: Tue, 29 Sep 2020 12:02:57 +0200 Subject: [PATCH] Deactivating AVX2 support by default MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This CL deactivates the AVX2 support by default due to issues identified during testing. Bug: webrtc:11663 Change-Id: Ib42791a8da9a93c986f69bfc85def2158525af79 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/185818 Reviewed-by: Mirko Bonadei Reviewed-by: Niels Moller Commit-Queue: Per Ã…hgren Cr-Commit-Position: refs/heads/master@{#32231} --- system_wrappers/source/cpu_features.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system_wrappers/source/cpu_features.cc b/system_wrappers/source/cpu_features.cc index 0f81212894..09897c436c 100644 --- a/system_wrappers/source/cpu_features.cc +++ b/system_wrappers/source/cpu_features.cc @@ -79,7 +79,7 @@ int GetCPUInfo(CPUFeature feature) { } #if defined(WEBRTC_ENABLE_AVX2) if (feature == kAVX2 && - !webrtc::field_trial::IsEnabled("WebRTC-Avx2SupportKillSwitch")) { + webrtc::field_trial::IsEnabled("WebRTC-ActivateAvx2Support")) { int cpu_info7[4]; __cpuid(cpu_info7, 0); int num_ids = cpu_info7[0];