1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-30 16:53:09 +00:00

[NNUE] update x86-64-modern target

slightly increase requirements on modern from sse3 to ssse3.
This commit is contained in:
Joost VandeVondele 2020-07-25 17:15:04 +02:00
parent beb956f823
commit 49d2cd8b13

View file

@ -128,6 +128,8 @@ ifeq ($(ARCH),x86-64-modern)
prefetch = yes
popcnt = yes
sse = yes
sse3 = yes
ssse3 = yes
endif
ifeq ($(ARCH),x86-64-sse3)
@ -554,7 +556,7 @@ help:
@echo "x86-64-ssse3 > x86 64-bit with ssse3 support"
@echo "x86-64-sse3-popcnt > x86 64-bit with sse3 and popcnt support"
@echo "x86-64-sse3 > x86 64-bit with sse3 support"
@echo "x86-64-modern > x86 64-bit with popcnt support (also enables SSE3)"
@echo "x86-64-modern > x86 64-bit with popcnt support (also enables SSSE3)"
@echo "x86-64 > x86 64-bit generic"
@echo "x86-32 > x86 32-bit (also enables SSE)"
@echo "x86-32-old > x86 32-bit fall back for old hardware"