arm_math_f16.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /******************************************************************************
  2. * @file arm_math_f16.h
  3. * @brief Public header file for f16 function of the CMSIS DSP Library
  4. * @version V1.10.0
  5. * @date 08 July 2021
  6. * Target Processor: Cortex-M and Cortex-A cores
  7. ******************************************************************************/
  8. /*
  9. * Copyright (c) 2010-2021 Arm Limited or its affiliates. All rights reserved.
  10. *
  11. * SPDX-License-Identifier: Apache-2.0
  12. *
  13. * Licensed under the Apache License, Version 2.0 (the License); you may
  14. * not use this file except in compliance with the License.
  15. * You may obtain a copy of the License at
  16. *
  17. * www.apache.org/licenses/LICENSE-2.0
  18. *
  19. * Unless required by applicable law or agreed to in writing, software
  20. * distributed under the License is distributed on an AS IS BASIS, WITHOUT
  21. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  22. * See the License for the specific language governing permissions and
  23. * limitations under the License.
  24. */
  25. #ifndef _ARM_MATH_F16_H
  26. #define _ARM_MATH_F16_H
  27. #include "arm_math.h"
  28. #ifdef __cplusplus
  29. extern "C"
  30. {
  31. #endif
  32. #include "arm_math_types_f16.h"
  33. #include "dsp/none.h"
  34. #include "dsp/utils.h"
  35. #include "dsp/basic_math_functions_f16.h"
  36. #include "dsp/interpolation_functions_f16.h"
  37. #include "dsp/bayes_functions_f16.h"
  38. #include "dsp/matrix_functions_f16.h"
  39. #include "dsp/complex_math_functions_f16.h"
  40. #include "dsp/statistics_functions_f16.h"
  41. #include "dsp/controller_functions_f16.h"
  42. #include "dsp/support_functions_f16.h"
  43. #include "dsp/distance_functions_f16.h"
  44. #include "dsp/svm_functions_f16.h"
  45. #include "dsp/fast_math_functions_f16.h"
  46. #include "dsp/transform_functions_f16.h"
  47. #include "dsp/filtering_functions_f16.h"
  48. #ifdef __cplusplus
  49. }
  50. #endif
  51. #endif /* _ARM_MATH_F16_H */