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

Commit 88e38f01 authored by Colin Cross's avatar Colin Cross Committed by Gerrit Code Review
Browse files

Merge "Add x86 AVX2 and AVX512 supported architectures"

parents 995c632c 0b33968b
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