summaryrefslogtreecommitdiff
path: root/src/app/stream/Kconfig
diff options
context:
space:
mode:
authorBirte Kristina Friesel <birte.friesel@uos.de>2024-02-23 15:42:51 +0100
committerBirte Kristina Friesel <birte.friesel@uos.de>2024-02-23 15:42:51 +0100
commitf98430754e38fd30c5daba8c7bcc59f2ff87eb4c (patch)
tree331da57aa54ca6c8a88a17ae847cf4be743795d9 /src/app/stream/Kconfig
parentb7a118ffe4ed51fa50b21749c36c996efd157920 (diff)
Add STREAM benchmark application
Diffstat (limited to 'src/app/stream/Kconfig')
-rw-r--r--src/app/stream/Kconfig23
1 files changed, 23 insertions, 0 deletions
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