1# Copyright (c) 2021 Stephanos Ioannidis <root@stephanos.io> 2# SPDX-License-Identifier: Apache-2.0 3 4zephyr_library() 5 6zephyr_library_sources( 7 arm_barycenter_f32.c 8 arm_bitonic_sort_f32.c 9 arm_bubble_sort_f32.c 10 arm_copy_f32.c 11 arm_copy_q15.c 12 arm_copy_q31.c 13 arm_copy_q7.c 14 arm_fill_f32.c 15 arm_fill_q15.c 16 arm_fill_q31.c 17 arm_fill_q7.c 18 arm_float_to_q15.c 19 arm_float_to_q31.c 20 arm_float_to_q7.c 21 arm_heap_sort_f32.c 22 arm_insertion_sort_f32.c 23 arm_merge_sort_f32.c 24 arm_merge_sort_init_f32.c 25 arm_q15_to_float.c 26 arm_q15_to_q31.c 27 arm_q15_to_q7.c 28 arm_q31_to_float.c 29 arm_q31_to_q15.c 30 arm_q31_to_q7.c 31 arm_q7_to_float.c 32 arm_q7_to_q15.c 33 arm_q7_to_q31.c 34 arm_quick_sort_f32.c 35 arm_selection_sort_f32.c 36 arm_sort_f32.c 37 arm_sort_init_f32.c 38 arm_weighted_sum_f32.c 39 ) 40 41zephyr_library_sources_ifdef(CONFIG_CMSIS_DSP_FLOAT16 42 arm_barycenter_f16.c 43 arm_copy_f16.c 44 arm_f16_to_float.c 45 arm_f16_to_q15.c 46 arm_fill_f16.c 47 arm_float_to_f16.c 48 arm_q15_to_f16.c 49 arm_weighted_sum_f16.c 50 ) 51