This commit adds the svm F16 test patterns and implementations for the CMSIS-DSP 1.9.0. Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
14 lines
287 B
CMake
14 lines
287 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(cmsis_dsp_svm)
|
|
|
|
target_sources(app PRIVATE
|
|
src/f32.c
|
|
src/main.c
|
|
)
|
|
|
|
target_sources_ifdef(CONFIG_CMSIS_DSP_FLOAT16 app PRIVATE
|
|
src/f16.c
|
|
)
|