/* * Copyright (c) 2021 Stephanos Ioannidis * * SPDX-License-Identifier: Apache-2.0 */ #include #include extern void test_complexmath_q15(void); extern void test_complexmath_q31(void); extern void test_complexmath_f16(void); extern void test_complexmath_f32(void); void test_main(void) { test_complexmath_q15(); test_complexmath_q31(); #ifdef CONFIG_CMSIS_DSP_FLOAT16 test_complexmath_f16(); #endif test_complexmath_f32(); }