arm_nn_tables.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* ----------------------------------------------------------------------
  2. * Project: CMSIS NN Library
  3. * Title: arm_nn_tables.h
  4. * Description: Extern declaration for NN tables
  5. *
  6. * $Date: 17. January 2018
  7. * $Revision: V.1.0.0
  8. *
  9. * Target Processor: Cortex-M cores
  10. * -------------------------------------------------------------------- */
  11. /*
  12. * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved.
  13. *
  14. * SPDX-License-Identifier: Apache-2.0
  15. *
  16. * Licensed under the Apache License, Version 2.0 (the License); you may
  17. * not use this file except in compliance with the License.
  18. * You may obtain a copy of the License at
  19. *
  20. * www.apache.org/licenses/LICENSE-2.0
  21. *
  22. * Unless required by applicable law or agreed to in writing, software
  23. * distributed under the License is distributed on an AS IS BASIS, WITHOUT
  24. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  25. * See the License for the specific language governing permissions and
  26. * limitations under the License.
  27. */
  28. #ifndef _ARM_NN_TABLES_H
  29. #define _ARM_NN_TABLES_H
  30. #include "arm_math.h"
  31. /**
  32. * @brief tables for various activation functions
  33. *
  34. */
  35. extern const q15_t sigmoidTable_q15[256];
  36. extern const q7_t sigmoidTable_q7[256];
  37. extern const q7_t tanhTable_q7[256];
  38. extern const q15_t tanhTable_q15[256];
  39. /**
  40. * @brief 2-way tables for various activation functions
  41. *
  42. * 2-way table, H table for value larger than 1/4
  43. * L table for value smaller than 1/4, H table for remaining
  44. * We have this only for the q15_t version. It does not make
  45. * sense to have it for q7_t type
  46. */
  47. extern const q15_t sigmoidHTable_q15[192];
  48. extern const q15_t sigmoidLTable_q15[128];
  49. extern const q15_t sigmoidLTable_q15[128];
  50. extern const q15_t sigmoidHTable_q15[192];
  51. #endif /* ARM_NN_TABLES_H */