riscv_helium_utils.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* ----------------------------------------------------------------------
  2. * Project: NMSIS DSP Library
  3. * Title: riscv_helium_utils.h
  4. * Description: Utility functions for Helium development
  5. *
  6. * @version V1.10.0
  7. * @date 08 July 2021
  8. *
  9. * Target Processor: RISC-V Cores
  10. * -------------------------------------------------------------------- */
  11. /*
  12. * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved.
  13. * Copyright (c) 2019 Nuclei Limited. All rights reserved.
  14. *
  15. * SPDX-License-Identifier: Apache-2.0
  16. *
  17. * Licensed under the Apache License, Version 2.0 (the License); you may
  18. * not use this file except in compliance with the License.
  19. * You may obtain a copy of the License at
  20. *
  21. * www.apache.org/licenses/LICENSE-2.0
  22. *
  23. * Unless required by applicable law or agreed to in writing, software
  24. * distributed under the License is distributed on an AS IS BASIS, WITHOUT
  25. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  26. * See the License for the specific language governing permissions and
  27. * limitations under the License.
  28. */
  29. #ifndef RISCV_UTILS_HELIUM_H_
  30. #define RISCV_UTILS_HELIUM_H_
  31. #ifdef __cplusplus
  32. extern "C"
  33. {
  34. #endif
  35. /***************************************
  36. Definitions available for MVEF and MVEI
  37. ***************************************/
  38. /***************************************
  39. Definitions available for MVEF only
  40. ***************************************/
  41. /***************************************
  42. Definitions available for f16 datatype with HW acceleration only
  43. ***************************************/
  44. #if defined(RISCV_FLOAT16_SUPPORTED)
  45. #endif
  46. /***************************************
  47. Definitions available for MVEI and MVEF only
  48. ***************************************/
  49. /***************************************
  50. Definitions available for MVEI only
  51. ***************************************/
  52. #ifdef __cplusplus
  53. }
  54. #endif
  55. #endif