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

Commit a31d29ff authored by Colin Cross's avatar Colin Cross Committed by android-build-merger
Browse files

Merge "Add x86 AVX2 and AVX512 supported architectures"

am: 88e38f01

Change-Id: I79b7bf9f1a0992e27c1e6290c624d4c8545a5f8c
parents 7478fc5a 88e38f01
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