From fa054f1c3a33bd41cec7b78933e8539cbca33d49 Mon Sep 17 00:00:00 2001 From: Zihao Yu Date: Wed, 26 Aug 2020 19:39:34 +0800 Subject: [PATCH] benchmark,microbench: reduce test input size for bf * this will cost less time to run with RTL simulation * note that the checksum is still the same --- benchmarks/microbench/include/benchmark.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/microbench/include/benchmark.h b/benchmarks/microbench/include/benchmark.h index 48a9d9f..c5e6cbc 100644 --- a/benchmarks/microbench/include/benchmark.h +++ b/benchmarks/microbench/include/benchmark.h @@ -24,7 +24,7 @@ extern "C" { #define QUEEN_S { 8, 0 KB, 0, 0x0000005c} #define QUEEN_M { 11, 0 KB, 0, 0x00000a78} #define QUEEN_L { 12, 0 KB, 4707, 0x00003778} -#define BF_S { 4, 32 KB, 0, 0xa6f0079e} +#define BF_S { 2, 32 KB, 0, 0xa6f0079e} #define BF_M { 25, 32 KB, 0, 0xa88f8a65} #define BF_L { 180, 32 KB, 23673, 0x9221e2b3} #define FIB_S { 2, 1 KB, 0, 0x7cfeddf0}