From f98430754e38fd30c5daba8c7bcc59f2ff87eb4c Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Fri, 23 Feb 2024 15:42:51 +0100 Subject: Add STREAM benchmark application --- src/app/stream/Kconfig | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/app/stream/Kconfig (limited to 'src/app/stream/Kconfig') diff --git a/src/app/stream/Kconfig b/src/app/stream/Kconfig new file mode 100644 index 0000000..ca5893c --- /dev/null +++ b/src/app/stream/Kconfig @@ -0,0 +1,23 @@ +# Copyright 2020 Birte Kristina Friesel +# +# SPDX-License-Identifier: CC0-1.0 + +prompt "STREAM Benchmark" +depends on meta_driver_counter && !loop && !wakeup + +config app_stream_type +string "Type" +depends on app_stream +default "unsigned int" + +config app_stream_n_elements +int "# Elements" +depends on app_stream +default 128 if arch_arduino_nano +default 8192 if arch_rm46l8lp +default 8192 if arch_stm32f746zg_nucleo + +config app_stream_stride +int "Stride" +depends on app_stream +default 1 -- cgit v1.2.3