From 877672a5a4c4aa39d210abe923c88159942c1bcd Mon Sep 17 00:00:00 2001 From: Eyck Jentzsch Date: Mon, 25 Mar 2024 10:56:34 +0100 Subject: [PATCH] fixes iterations count for benchmarks --- bare-metal-bsp | 2 +- benchmarks/coremark/Makefile | 2 +- benchmarks/dhrystone/Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bare-metal-bsp b/bare-metal-bsp index ef001e5..7218dcf 160000 --- a/bare-metal-bsp +++ b/bare-metal-bsp @@ -1 +1 @@ -Subproject commit ef001e55e8973799bc1b3b204b93708976b1e693 +Subproject commit 7218dcfa692d18020c11d4e704b0932bd93804dd diff --git a/benchmarks/coremark/Makefile b/benchmarks/coremark/Makefile index 4586e49..aefcba6 100644 --- a/benchmarks/coremark/Makefile +++ b/benchmarks/coremark/Makefile @@ -1,6 +1,6 @@ TARGET := coremark ISA?=imc -ITERATIONS?=400 +ITERATIONS?=600 # 300 for TGC ASM_SRCS := C_SRCS := core_list_join.c core_main.c core_matrix.c core_state.c core_util.c core_portme.c ee_printf.c diff --git a/benchmarks/dhrystone/Makefile b/benchmarks/dhrystone/Makefile index a1f01e0..ce88108 100644 --- a/benchmarks/dhrystone/Makefile +++ b/benchmarks/dhrystone/Makefile @@ -1,6 +1,6 @@ TARGET := dhrystone ISA?=imc -ITERATIONS?=20000 +ITERATIONS?=50000 # 20000 for TGC ASM_SRCS := C_SRCS := dhry_stubs.c dhry_1.c dhry_2.c