summaryrefslogtreecommitdiff
path: root/fw/midi-dials/Drivers/CMSIS/NN/Include/arm_nn_tables.h
diff options
context:
space:
mode:
authorjaseg <git@jaseg.de>2020-12-20 15:18:02 +0100
committerjaseg <git@jaseg.de>2020-12-20 15:18:02 +0100
commit94f94260ace13688285fc8c62687079b26c18854 (patch)
tree4691249052e28be4d3515c6d2ed4b40545c21ea7 /fw/midi-dials/Drivers/CMSIS/NN/Include/arm_nn_tables.h
parent3559d845d29272050d4d44e18e0bb84e676e48ff (diff)
downloadminikbd-94f94260ace13688285fc8c62687079b26c18854.tar.gz
minikbd-94f94260ace13688285fc8c62687079b26c18854.tar.bz2
minikbd-94f94260ace13688285fc8c62687079b26c18854.zip
Submodule-cache WIP
Diffstat (limited to 'fw/midi-dials/Drivers/CMSIS/NN/Include/arm_nn_tables.h')
-rw-r--r--fw/midi-dials/Drivers/CMSIS/NN/Include/arm_nn_tables.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/fw/midi-dials/Drivers/CMSIS/NN/Include/arm_nn_tables.h b/fw/midi-dials/Drivers/CMSIS/NN/Include/arm_nn_tables.h
deleted file mode 100644
index 9357424..0000000
--- a/fw/midi-dials/Drivers/CMSIS/NN/Include/arm_nn_tables.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/* ----------------------------------------------------------------------
- * Project: CMSIS NN Library
- * Title: arm_nn_tables.h
- * Description: Extern declaration for NN tables
- *
- * $Date: 17. January 2018
- * $Revision: V.1.0.0
- *
- * Target Processor: Cortex-M cores
- * -------------------------------------------------------------------- */
-/*
- * Copyright (C) 2010-2018 Arm Limited or its affiliates. All rights reserved.
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Licensed under the Apache License, Version 2.0 (the License); you may
- * not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an AS IS BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#ifndef _ARM_NN_TABLES_H
-#define _ARM_NN_TABLES_H
-
-#include "arm_math.h"
-
-/**
-* @brief tables for various activation functions
-*
-*/
-
-extern const q15_t sigmoidTable_q15[256];
-extern const q7_t sigmoidTable_q7[256];
-
-extern const q7_t tanhTable_q7[256];
-extern const q15_t tanhTable_q15[256];
-
- /**
- * @brief 2-way tables for various activation functions
- *
- * 2-way table, H table for value larger than 1/4
- * L table for value smaller than 1/4, H table for remaining
- * We have this only for the q15_t version. It does not make
- * sense to have it for q7_t type
- */
-extern const q15_t sigmoidHTable_q15[192];
-extern const q15_t sigmoidLTable_q15[128];
-
-extern const q15_t sigmoidLTable_q15[128];
-extern const q15_t sigmoidHTable_q15[192];
-
-#endif /* ARM_NN_TABLES_H */