#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#

config BENCHMARK_WHETSTONE
	tristate "Double Precision Benchmark"
	default n
	depends on ALLOW_CUSTOM_PERMISSIVE_COMPONENTS
	---help---
		Enable a Whetstone test.

		This benchmark is based on the C converted version from
		https://www.netlib.org/benchmark/whetstone.c which has a
		custom permissive license requiring attribution.

if BENCHMARK_WHETSTONE

config BENCHMARK_WHETSTONE_PROGNAME
	string "Program name"
	default "whetstone"
	---help---
		This is the name of the program that will be used when the NSH ELF
		program is installed.

config BENCHMARK_WHETSTONE_PRIORITY
	int "Whetstone test task priority"
	default 100

config BENCHMARK_WHETSTONE_STACKSIZE
	int "Whetstone test stack size"
	default DEFAULT_TASK_STACKSIZE

endif
