riscv_math_f16.h 1.8 KB

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