Files

copied
Last update 5 months 2 weeks by Masakatsu Honda
FilesCubeMXpassion-v2-1DriversCMSISDSPSourceDistanceFunctions
..
CMakeLists.txt
DistanceFunctions.c
DistanceFunctionsF16.c
arm_boolean_distance.c
arm_boolean_distance_template.h
arm_braycurtis_distance_f16.c
arm_braycurtis_distance_f32.c
arm_canberra_distance_f16.c
arm_canberra_distance_f32.c
arm_chebyshev_distance_f16.c
arm_chebyshev_distance_f32.c
arm_chebyshev_distance_f64.c
arm_cityblock_distance_f16.c
arm_cityblock_distance_f32.c
arm_cityblock_distance_f64.c
arm_correlation_distance_f16.c
arm_correlation_distance_f32.c
arm_cosine_distance_f16.c
arm_cosine_distance_f32.c
arm_cosine_distance_f64.c
arm_dice_distance.c
arm_euclidean_distance_f16.c
arm_euclidean_distance_f32.c
arm_euclidean_distance_f64.c
arm_hamming_distance.c
arm_jaccard_distance.c
arm_jensenshannon_distance_f16.c
arm_jensenshannon_distance_f32.c
arm_kulsinski_distance.c
arm_minkowski_distance_f16.c
arm_minkowski_distance_f32.c
arm_rogerstanimoto_distance.c
arm_russellrao_distance.c
arm_sokalmichener_distance.c
arm_sokalsneath_distance.c
arm_yule_distance.c
CMakeLists.txt
cmake_minimum_required (VERSION 3.14) project(CMSISDSPDistance) include(configLib) include(configDsp) file(GLOB SRC "./*_*.c") add_library(CMSISDSPDistance STATIC) 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) target_sources(CMSISDSPDistance PRIVATE arm_kulsinski_distance.c) target_sources(CMSISDSPDistance PRIVATE arm_minkowski_distance_f32.c) target_sources(CMSISDSPDistance PRIVATE arm_rogerstanimoto_distance.c) target_sources(CMSISDSPDistance PRIVATE arm_russellrao_distance.c) target_sources(CMSISDSPDistance PRIVATE arm_sokalmichener_distance.c) target_sources(CMSISDSPDistance PRIVATE arm_sokalsneath_distance.c) target_sources(CMSISDSPDistance PRIVATE arm_yule_distance.c) configLib(CMSISDSPDistance ${ROOT}) configDsp(CMSISDSPDistance ${ROOT}) ### Includes target_include_directories(CMSISDSPDistance PUBLIC "${DSP}/Include") target_include_directories(CMSISDSPDistance PRIVATE ".") if ((NOT ARMAC5) AND (NOT DISABLEFLOAT16)) target_sources(CMSISDSPDistance PRIVATE arm_braycurtis_distance_f16.c) target_sources(CMSISDSPDistance PRIVATE arm_canberra_distance_f16.c) target_sources(CMSISDSPDistance PRIVATE arm_chebyshev_distance_f16.c) target_sources(CMSISDSPDistance PRIVATE arm_cityblock_distance_f16.c) target_sources(CMSISDSPDistance PRIVATE arm_correlation_distance_f16.c) target_sources(CMSISDSPDistance PRIVATE arm_cosine_distance_f16.c) target_sources(CMSISDSPDistance PRIVATE arm_euclidean_distance_f16.c) target_sources(CMSISDSPDistance PRIVATE arm_jensenshannon_distance_f16.c) target_sources(CMSISDSPDistance PRIVATE arm_minkowski_distance_f16.c) endif()
Report a bug