From b384f1f09e671942084f732a5a2560b7bf809a71 Mon Sep 17 00:00:00 2001 From: John McMaster Date: Tue, 11 Dec 2018 16:35:24 -0800 Subject: [PATCH] intpips: restore QUICK N Signed-off-by: John McMaster --- fuzzers/050-intpips/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/fuzzers/050-intpips/Makefile b/fuzzers/050-intpips/Makefile index 32181de7..1fc4622d 100644 --- a/fuzzers/050-intpips/Makefile +++ b/fuzzers/050-intpips/Makefile @@ -1,7 +1,11 @@ +# WARNING: N must be relatively high (say 10) or segmatch -m/M will fail +ifeq ($(QUICK),Y) +N := 10 +else # Do relatively large batch to keep parallelism high # LCM between 12 (CPUs on my system) and 16, a common CPU count -# WARNING: N must be relatively high (say 10) or segmatch -m/M will fail N := 48 +endif # Driven by int_loop.sh ITER := 1 # See int_loop_check.py