From 1e6b85b8a841b6a556f18e3b733a64ae0dbbcc20 Mon Sep 17 00:00:00 2001 From: Maciej Kurc Date: Wed, 10 Jul 2019 16:07:11 +0200 Subject: [PATCH] Increased number of specimens and CLBs Signed-off-by: Maciej Kurc --- fuzzers/016-clb-noutmux/Makefile | 2 +- fuzzers/016-clb-noutmux/top.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fuzzers/016-clb-noutmux/Makefile b/fuzzers/016-clb-noutmux/Makefile index bf122110..c5cce725 100644 --- a/fuzzers/016-clb-noutmux/Makefile +++ b/fuzzers/016-clb-noutmux/Makefile @@ -1,5 +1,5 @@ # Specimen count -N := 4 +N := 5 # A grep regex for SLICEM features to be skipped for SLICELs SLICEM_FEATURES ?= "DOUTMUX.MC31" diff --git a/fuzzers/016-clb-noutmux/top.py b/fuzzers/016-clb-noutmux/top.py index 3c81c38e..916efc8a 100644 --- a/fuzzers/016-clb-noutmux/top.py +++ b/fuzzers/016-clb-noutmux/top.py @@ -6,7 +6,7 @@ from prjxray import verilog # INCREMENT is the amount of additional CLBN to be instantiated in the design. # This makes the fuzzer compilation more robust against failures. INCREMENT = os.getenv('CLBN', 0) -CLBN = 400 + int(INCREMENT) +CLBN = 600 + int(INCREMENT) print('//Requested CLBs: %s' % str(CLBN)) def gen_slicels():