riscv_mve_tables.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* ----------------------------------------------------------------------
  2. * Project: NMSIS DSP Library
  3. * Title: riscv_mve_tables.h
  4. * Description: common tables like fft twiddle factors, Bitreverse, reciprocal etc
  5. * used for MVE implementation only
  6. *
  7. * @version V1.10.0
  8. * @date 04 October 2021
  9. *
  10. * Target Processor: RISC-V Cores
  11. * -------------------------------------------------------------------- */
  12. /*
  13. * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved.
  14. * Copyright (c) 2019 Nuclei Limited. All rights reserved.
  15. *
  16. * SPDX-License-Identifier: Apache-2.0
  17. *
  18. * Licensed under the Apache License, Version 2.0 (the License); you may
  19. * not use this file except in compliance with the License.
  20. * You may obtain a copy of the License at
  21. *
  22. * www.apache.org/licenses/LICENSE-2.0
  23. *
  24. * Unless required by applicable law or agreed to in writing, software
  25. * distributed under the License is distributed on an AS IS BASIS, WITHOUT
  26. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  27. * See the License for the specific language governing permissions and
  28. * limitations under the License.
  29. */
  30. #ifndef RISCV_MVE_TABLES_H
  31. #define RISCV_MVE_TABLES_H
  32. #include "riscv_math_types.h"
  33. #ifdef __cplusplus
  34. extern "C"
  35. {
  36. #endif
  37. #ifdef __cplusplus
  38. }
  39. #endif
  40. #endif /*_RISCV_MVE_TABLES_H*/