Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0b33968b authored by Shalini Salomi Bodapati's avatar Shalini Salomi Bodapati
Browse files

Add x86 AVX2 and AVX512 supported architectures



Bug: 123376719
Test: m checkbuild
Change-Id: I74c7a63bbaba993eeb8bdd8c663ffa142c908279
Signed-off-by: default avatarShalini Salomi Bodapati <shalini.salomi.bodapati@intel.com>
(cherry picked from commit f327f5f3f5d03471d69e757fe33899a7fd653f18)
parent daf0839f
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
# Configuration for Linux on x86.
# Generating binaries for processors
# that have AVX2 feature flag
#

ARCH_X86_HAVE_SSSE3  := true
ARCH_X86_HAVE_SSE4   := true
ARCH_X86_HAVE_SSE4_1 := true
ARCH_X86_HAVE_SSE4_2 := true
ARCH_X86_HAVE_AVX    := true
ARCH_X86_HAVE_AVX2   := true
ARCH_X86_HAVE_POPCNT := true
ARCH_X86_HAVE_MOVBE  := true
+13 −0
Original line number Diff line number Diff line
# Configuration for Linux on x86.
# Generating binaries for processors
# that have AVX2 feature flag
#

ARCH_X86_HAVE_SSSE3  := true
ARCH_X86_HAVE_SSE4   := true
ARCH_X86_HAVE_SSE4_1 := true
ARCH_X86_HAVE_SSE4_2 := true
ARCH_X86_HAVE_AVX    := true
ARCH_X86_HAVE_AVX2   := true
ARCH_X86_HAVE_POPCNT := true
ARCH_X86_HAVE_MOVBE  := true
+14 −0
Original line number Diff line number Diff line
# Configuration for Linux on x86.
# Generating binaries for processors
# that have AVX2 feature flag
#

ARCH_X86_HAVE_SSSE3  := true
ARCH_X86_HAVE_SSE4   := true
ARCH_X86_HAVE_SSE4_1 := true
ARCH_X86_HAVE_SSE4_2 := true
ARCH_X86_HAVE_AVX    := true
ARCH_X86_HAVE_AVX2   := true
ARCH_X86_HAVE_AVX512 := true
ARCH_X86_HAVE_POPCNT := true
ARCH_X86_HAVE_MOVBE  := true
+13 −0
Original line number Diff line number Diff line
# Configuration for Linux on x86.
# Generating binaries for processors.
# that support AVX2 feature flag
#

ARCH_X86_HAVE_SSSE3  := true
ARCH_X86_HAVE_SSE4   := true
ARCH_X86_HAVE_SSE4_1 := true
ARCH_X86_HAVE_SSE4_2 := true
ARCH_X86_HAVE_AVX    := true
ARCH_X86_HAVE_AVX2   := true
ARCH_X86_HAVE_POPCNT := true
ARCH_X86_HAVE_MOVBE  := true
+15 −0
Original line number Diff line number Diff line
# Configuration for Linux on x86.
# Generating binaries for processors.
# that support AVX2 feature flag
#

ARCH_X86_HAVE_SSSE3  := true
ARCH_X86_HAVE_SSE4   := true
ARCH_X86_HAVE_SSE4_1 := true
ARCH_X86_HAVE_SSE4_2 := true
ARCH_X86_HAVE_AVX    := true
ARCH_X86_HAVE_AVX2   := true
ARCH_X86_HAVE_AVX512 := true
ARCH_X86_HAVE_POPCNT := true
ARCH_X86_HAVE_MOVBE  := true
Loading