riscv_vec_math.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /******************************************************************************
  2. * @file riscv_vec_math.h
  3. * @brief Public header file for 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_VEC_MATH_H
  27. #define RISCV_VEC_MATH_H
  28. #include "riscv_math_types.h"
  29. #include "riscv_common_tables.h"
  30. #include "riscv_helium_utils.h"
  31. #if defined (RISCV_FLOAT16_SUPPORTED)
  32. #include "riscv_vec_math_f16.h"
  33. #endif /* defined (RISCV_FLOAT16_SUPPORTED) */
  34. #ifdef __cplusplus
  35. extern "C"
  36. {
  37. #endif
  38. #ifdef __cplusplus
  39. }
  40. #endif
  41. #endif /* _RISCV_VEC_MATH_H */
  42. /**
  43. *
  44. * End of file.
  45. */