arm_math_f16.h 1.7 KB

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