From b14e43a187b1b2b99092c794de6beef11cd5c3c9 Mon Sep 17 00:00:00 2001 From: Harendra Kumar Date: Tue, 22 Jun 2021 11:21:02 +0530 Subject: [PATCH] Increase stack size for array foldable instance --- bin/bench-exec-one.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/bench-exec-one.sh b/bin/bench-exec-one.sh index 27e068970..9ee9ef1e5 100755 --- a/bin/bench-exec-one.sh +++ b/bin/bench-exec-one.sh @@ -104,6 +104,9 @@ bench_rts_opts_specific () { Data.Array*/o-1-space/generation/show) echo -n "-M32M" ;; # XXX For GHC-8.10 Data.Array/o-1-space/transformationX4/map) echo -n "-M32M" ;; + # DEVBUILD only benchmarks - array foldable instance + Data.Array.Foreign/o-1-space/elimination/foldable/foldl*) echo -n "-K8M" ;; + Data.Array.Foreign/o-1-space/elimination/foldable/sum) echo -n "-K8M" ;; *) echo -n "" ;; esac }