From 6c469c6c18e05f31f81e25b513215692ef1f496e Mon Sep 17 00:00:00 2001 From: JbR <90027771+jbr-smtg@users.noreply.github.com> Date: Tue, 14 Sep 2021 08:35:49 +0200 Subject: [PATCH] Adding new f64 files to CMakeLists --- Source/ComplexMathFunctions/CMakeLists.txt | 3 +++ Source/DistanceFunctions/CMakeLists.txt | 4 ++++ Source/FastMathFunctions/CMakeLists.txt | 2 ++ Source/FilteringFunctions/CMakeLists.txt | 3 +++ Source/StatisticsFunctions/CMakeLists.txt | 9 +++++++++ 5 files changed, 21 insertions(+) diff --git a/Source/ComplexMathFunctions/CMakeLists.txt b/Source/ComplexMathFunctions/CMakeLists.txt index 6bacfd25..07715537 100644 --- a/Source/ComplexMathFunctions/CMakeLists.txt +++ b/Source/ComplexMathFunctions/CMakeLists.txt @@ -44,10 +44,13 @@ target_sources(CMSISDSPComplexMath PRIVATE arm_cmplx_dot_prod_f32.c) target_sources(CMSISDSPComplexMath PRIVATE arm_cmplx_dot_prod_q15.c) target_sources(CMSISDSPComplexMath PRIVATE arm_cmplx_dot_prod_q31.c) target_sources(CMSISDSPComplexMath PRIVATE arm_cmplx_mag_f32.c) +target_sources(CMSISDSPComplexMath PRIVATE arm_cmplx_mag_f64.c) target_sources(CMSISDSPComplexMath PRIVATE arm_cmplx_mag_squared_f32.c) +target_sources(CMSISDSPComplexMath PRIVATE arm_cmplx_mag_squared_f64.c) target_sources(CMSISDSPComplexMath PRIVATE arm_cmplx_mag_squared_q15.c) target_sources(CMSISDSPComplexMath PRIVATE arm_cmplx_mag_squared_q31.c) target_sources(CMSISDSPComplexMath PRIVATE arm_cmplx_mult_cmplx_f32.c) +target_sources(CMSISDSPComplexMath PRIVATE arm_cmplx_mult_cmplx_f64.c) target_sources(CMSISDSPComplexMath PRIVATE arm_cmplx_mult_cmplx_q15.c) target_sources(CMSISDSPComplexMath PRIVATE arm_cmplx_mult_cmplx_q31.c) target_sources(CMSISDSPComplexMath PRIVATE arm_cmplx_mult_real_f32.c) diff --git a/Source/DistanceFunctions/CMakeLists.txt b/Source/DistanceFunctions/CMakeLists.txt index 7f6c389b..0cfd1c9f 100755 --- a/Source/DistanceFunctions/CMakeLists.txt +++ b/Source/DistanceFunctions/CMakeLists.txt @@ -13,11 +13,15 @@ target_sources(CMSISDSPDistance PRIVATE arm_boolean_distance.c) target_sources(CMSISDSPDistance PRIVATE arm_braycurtis_distance_f32.c) target_sources(CMSISDSPDistance PRIVATE arm_canberra_distance_f32.c) target_sources(CMSISDSPDistance PRIVATE arm_chebyshev_distance_f32.c) +target_sources(CMSISDSPDistance PRIVATE arm_chebyshev_distance_f64.c) target_sources(CMSISDSPDistance PRIVATE arm_cityblock_distance_f32.c) +target_sources(CMSISDSPDistance PRIVATE arm_cityblock_distance_f64.c) target_sources(CMSISDSPDistance PRIVATE arm_correlation_distance_f32.c) target_sources(CMSISDSPDistance PRIVATE arm_cosine_distance_f32.c) +target_sources(CMSISDSPDistance PRIVATE arm_cosine_distance_f64.c) target_sources(CMSISDSPDistance PRIVATE arm_dice_distance.c) target_sources(CMSISDSPDistance PRIVATE arm_euclidean_distance_f32.c) +target_sources(CMSISDSPDistance PRIVATE arm_euclidean_distance_f64.c) target_sources(CMSISDSPDistance PRIVATE arm_hamming_distance.c) target_sources(CMSISDSPDistance PRIVATE arm_jaccard_distance.c) target_sources(CMSISDSPDistance PRIVATE arm_jensenshannon_distance_f32.c) diff --git a/Source/FastMathFunctions/CMakeLists.txt b/Source/FastMathFunctions/CMakeLists.txt index fec645e6..1dc04485 100644 --- a/Source/FastMathFunctions/CMakeLists.txt +++ b/Source/FastMathFunctions/CMakeLists.txt @@ -44,7 +44,9 @@ endif() target_sources(CMSISDSPFastMath PRIVATE arm_sqrt_q15.c) target_sources(CMSISDSPFastMath PRIVATE arm_sqrt_q31.c) target_sources(CMSISDSPFastMath PRIVATE arm_vlog_f32.c) +target_sources(CMSISDSPFastMath PRIVATE arm_vlog_f64.c) target_sources(CMSISDSPFastMath PRIVATE arm_vexp_f32.c) +target_sources(CMSISDSPFastMath PRIVATE arm_vexp_f64.c) target_sources(CMSISDSPFastMath PRIVATE arm_vlog_q31.c) target_sources(CMSISDSPFastMath PRIVATE arm_vlog_q15.c) diff --git a/Source/FilteringFunctions/CMakeLists.txt b/Source/FilteringFunctions/CMakeLists.txt index 88d03c34..9f6ea5df 100644 --- a/Source/FilteringFunctions/CMakeLists.txt +++ b/Source/FilteringFunctions/CMakeLists.txt @@ -60,6 +60,7 @@ target_sources(CMSISDSPFiltering PRIVATE arm_conv_q15.c) target_sources(CMSISDSPFiltering PRIVATE arm_conv_q31.c) target_sources(CMSISDSPFiltering PRIVATE arm_conv_q7.c) target_sources(CMSISDSPFiltering PRIVATE arm_correlate_f32.c) +target_sources(CMSISDSPFiltering PRIVATE arm_correlate_f64.c) target_sources(CMSISDSPFiltering PRIVATE arm_correlate_fast_opt_q15.c) target_sources(CMSISDSPFiltering PRIVATE arm_correlate_fast_q15.c) target_sources(CMSISDSPFiltering PRIVATE arm_correlate_fast_q31.c) @@ -77,9 +78,11 @@ target_sources(CMSISDSPFiltering PRIVATE arm_fir_decimate_init_q31.c) target_sources(CMSISDSPFiltering PRIVATE arm_fir_decimate_q15.c) target_sources(CMSISDSPFiltering PRIVATE arm_fir_decimate_q31.c) target_sources(CMSISDSPFiltering PRIVATE arm_fir_f32.c) +target_sources(CMSISDSPFiltering PRIVATE arm_fir_f64.c) target_sources(CMSISDSPFiltering PRIVATE arm_fir_fast_q15.c) target_sources(CMSISDSPFiltering PRIVATE arm_fir_fast_q31.c) target_sources(CMSISDSPFiltering PRIVATE arm_fir_init_f32.c) +target_sources(CMSISDSPFiltering PRIVATE arm_fir_init_f64.c) target_sources(CMSISDSPFiltering PRIVATE arm_fir_init_q15.c) target_sources(CMSISDSPFiltering PRIVATE arm_fir_init_q31.c) target_sources(CMSISDSPFiltering PRIVATE arm_fir_init_q7.c) diff --git a/Source/StatisticsFunctions/CMakeLists.txt b/Source/StatisticsFunctions/CMakeLists.txt index 48f039e8..f2892cf3 100644 --- a/Source/StatisticsFunctions/CMakeLists.txt +++ b/Source/StatisticsFunctions/CMakeLists.txt @@ -16,19 +16,24 @@ target_sources(CMSISDSPStatistics PRIVATE arm_kullback_leibler_f64.c) target_sources(CMSISDSPStatistics PRIVATE arm_logsumexp_dot_prod_f32.c) target_sources(CMSISDSPStatistics PRIVATE arm_logsumexp_f32.c) target_sources(CMSISDSPStatistics PRIVATE arm_max_f32.c) +target_sources(CMSISDSPStatistics PRIVATE arm_max_f64.c) target_sources(CMSISDSPStatistics PRIVATE arm_max_no_idx_f32.c) +target_sources(CMSISDSPStatistics PRIVATE arm_max_no_idx_f64.c) target_sources(CMSISDSPStatistics PRIVATE arm_max_q15.c) target_sources(CMSISDSPStatistics PRIVATE arm_max_q31.c) target_sources(CMSISDSPStatistics PRIVATE arm_max_q7.c) target_sources(CMSISDSPStatistics PRIVATE arm_mean_f32.c) +target_sources(CMSISDSPStatistics PRIVATE arm_mean_f64.c) target_sources(CMSISDSPStatistics PRIVATE arm_mean_q15.c) target_sources(CMSISDSPStatistics PRIVATE arm_mean_q31.c) target_sources(CMSISDSPStatistics PRIVATE arm_mean_q7.c) target_sources(CMSISDSPStatistics PRIVATE arm_min_f32.c) +target_sources(CMSISDSPStatistics PRIVATE arm_min_f64.c) target_sources(CMSISDSPStatistics PRIVATE arm_min_q15.c) target_sources(CMSISDSPStatistics PRIVATE arm_min_q31.c) target_sources(CMSISDSPStatistics PRIVATE arm_min_q7.c) target_sources(CMSISDSPStatistics PRIVATE arm_power_f32.c) +target_sources(CMSISDSPStatistics PRIVATE arm_power_f64.c) target_sources(CMSISDSPStatistics PRIVATE arm_power_q15.c) target_sources(CMSISDSPStatistics PRIVATE arm_power_q31.c) target_sources(CMSISDSPStatistics PRIVATE arm_power_q7.c) @@ -36,18 +41,22 @@ target_sources(CMSISDSPStatistics PRIVATE arm_rms_f32.c) target_sources(CMSISDSPStatistics PRIVATE arm_rms_q15.c) target_sources(CMSISDSPStatistics PRIVATE arm_rms_q31.c) target_sources(CMSISDSPStatistics PRIVATE arm_std_f32.c) +target_sources(CMSISDSPStatistics PRIVATE arm_std_f64.c) target_sources(CMSISDSPStatistics PRIVATE arm_std_q15.c) target_sources(CMSISDSPStatistics PRIVATE arm_std_q31.c) target_sources(CMSISDSPStatistics PRIVATE arm_var_f32.c) +target_sources(CMSISDSPStatistics PRIVATE arm_var_f64.c) target_sources(CMSISDSPStatistics PRIVATE arm_var_q15.c) target_sources(CMSISDSPStatistics PRIVATE arm_var_q31.c) target_sources(CMSISDSPStatistics PRIVATE arm_absmax_f32.c) +target_sources(CMSISDSPStatistics PRIVATE arm_absmax_f64.c) target_sources(CMSISDSPStatistics PRIVATE arm_absmax_q15.c) target_sources(CMSISDSPStatistics PRIVATE arm_absmax_q31.c) target_sources(CMSISDSPStatistics PRIVATE arm_absmax_q7.c) target_sources(CMSISDSPStatistics PRIVATE arm_absmin_f32.c) +target_sources(CMSISDSPStatistics PRIVATE arm_absmin_f64.c) target_sources(CMSISDSPStatistics PRIVATE arm_absmin_q15.c) target_sources(CMSISDSPStatistics PRIVATE arm_absmin_q31.c) target_sources(CMSISDSPStatistics PRIVATE arm_absmin_q7.c)