arm_nn_tables.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * SPDX-FileCopyrightText: Copyright 2010-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the License); you may
  7. * not use this file except in compliance with the License.
  8. * You may obtain a copy of the License at
  9. *
  10. * www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an AS IS BASIS, WITHOUT
  14. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. /* ----------------------------------------------------------------------
  19. * Project: CMSIS NN Library
  20. * Title: arm_nn_tables.h
  21. * Description: Extern declaration for NN tables
  22. *
  23. * $Date: 8 December 2022
  24. * $Revision: V.2.1.1
  25. *
  26. * Target Processor: Cortex-M cores
  27. * -------------------------------------------------------------------- */
  28. #ifndef ARM_NN_TABLES_H
  29. #define ARM_NN_TABLES_H
  30. #include "arm_nn_math_types.h"
  31. /**
  32. * @brief tables for various activation functions
  33. *
  34. */
  35. extern const uint16_t sigmoid_table_uint16[256];
  36. #endif /* ARM_NN_TABLES_H */