1 /* 2 * Copyright 2024 NXP 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 /** 8 * Number crunching sample: 9 * calling functions from an out of tree static library 10 */ 11 12 #include <zephyr/kernel.h> 13 #include <stdio.h> 14 15 #include "math_ops.h" 16 main(void)17int main(void) 18 { 19 printk("\r\nNumber crunching example!\r\n\n"); 20 21 test_vec_sum_int16_op(); 22 23 test_power_int16_op(); 24 25 test_power_int32_op(); 26 27 test_fft_op(); 28 29 test_iir_op(); 30 31 test_fir_blms_op(); 32 33 return 0; 34 } 35