/cmsis-nn-latest/Source/NNSupportFunctions/ |
D | arm_q7_to_q15_with_offset.c | 48 int16x8_t source; in arm_q7_to_q15_with_offset() local 54 source = vldrbq_s16(src); in arm_q7_to_q15_with_offset() 55 source = vaddq_s16(source, source_offset); in arm_q7_to_q15_with_offset() 56 vstrhq_s16(dst, source); in arm_q7_to_q15_with_offset()
|
D | CMakeLists.txt | 2 # SPDX-FileCopyrightText: Copyright 2019-2023 Arm Limited and/or its affiliates <open-source-office…
|
/cmsis-nn-latest/Source/PoolingFunctions/ |
D | arm_max_pool_s16.c | 85 static void clamp_output(int16_t *source, int32_t length, const int16_t act_min, const int16_t act_… in clamp_output() argument 96 const int16x8_t src = vldrhq_z_s16(source, p); in clamp_output() 99 vstrhq_p_s16(source, res, p); in clamp_output() 100 source += 8; in clamp_output() 108 in.word = arm_nn_read_s16x2(source); in clamp_output() 115 arm_nn_write_q15x2_ia(&source, in.word); in clamp_output() 121 int16_t comp = *source; in clamp_output() 124 *source = comp; in clamp_output()
|
D | arm_max_pool_s8.c | 97 static void clamp_output(int8_t *source, int32_t length, const int32_t act_min, const int32_t act_m… in clamp_output() argument 108 const int8x16_t src = vldrbq_z_s8(source, p); in clamp_output() 111 vstrbq_p_s8(source, res, p); in clamp_output() 112 source += 16; in clamp_output() 120 in.word = arm_nn_read_s8x4(source); in clamp_output() 131 arm_nn_write_s8x4_ia(&source, in.word); in clamp_output() 138 int32_t comp = *source; in clamp_output() 141 *source++ = (int8_t)comp; in clamp_output()
|
/cmsis-nn-latest/Documentation/ |
D | README.md | 7 …he documentation source is maintained in `Documentation/Doxygen/` folder as a mixture of markdown … 9 Generating the HTML-formatted documentation from the source is done with `gen_doc.sh` script:
|
/cmsis-nn-latest/Include/ |
D | arm_nnsupportfunctions.h | 1005 __STATIC_FORCEINLINE void read_and_pad_s4(const int8_t *source, int32_t *out1, int32_t *out2) in read_and_pad_s4() argument 1007 int16_t in = arm_nn_read_s8x2(source); in read_and_pad_s4() 1026 __STATIC_FORCEINLINE void read_and_pad_s4_uneven(const int8_t *source, int32_t *out1, int32_t *out2) in read_and_pad_s4_uneven() argument 1028 int32_t inA1 = (source[0] & 0xFF) | ((source[1] & 0xFF) << 16); in read_and_pad_s4_uneven() 1029 int32_t inA2 = (source[1] & 0xFF) | ((source[2] & 0xFF) << 16); in read_and_pad_s4_uneven() 1038 __STATIC_FORCEINLINE void read_and_pad_s4_ordered(const int8_t *source, int32_t *out1, int32_t *out… in read_and_pad_s4_ordered() argument 1040 int16_t in = arm_nn_read_s8x2(source); in read_and_pad_s4_ordered() 1056 __STATIC_FORCEINLINE const int8_t *read_and_pad(const int8_t *source, int32_t *out1, int32_t *out2) in read_and_pad() argument 1058 int32_t inA = arm_nn_read_s8x4_ia(&source); in read_and_pad() 1070 return source; in read_and_pad() [all …]
|
/cmsis-nn-latest/Examples/ |
D | README.md | 9 …master/tflm-cmsisnn-mbed-image-recognition) for more information and the source code. There is als…
|
/cmsis-nn-latest/Tests/UnitTest/TestCases/test_arm_convolve_1_x_n_s8/ |
D | CMakeLists.txt | 2 # SPDX-FileCopyrightText: Copyright 2023 Arm Limited and/or its affiliates <open-source-office@arm.…
|
/cmsis-nn-latest/Tests/UnitTest/TestCases/test_arm_convolve_1x1_s4_fast/ |
D | CMakeLists.txt | 2 # SPDX-FileCopyrightText: Copyright 2023 Arm Limited and/or its affiliates <open-source-office@arm.…
|
/cmsis-nn-latest/Tests/UnitTest/TestCases/test_arm_lstm_unidirectional_s16/ |
D | CMakeLists.txt | 2 # SPDX-FileCopyrightText: Copyright 2010-2022, 2024 Arm Limited and/or its affiliates <open-source-…
|
/cmsis-nn-latest/Tests/UnitTest/TestCases/test_arm_convolve_s4/ |
D | CMakeLists.txt | 2 # SPDX-FileCopyrightText: Copyright 2023 Arm Limited and/or its affiliates <open-source-office@arm.…
|
/cmsis-nn-latest/Tests/UnitTest/TestCases/test_arm_ds_cnn_l_s8/ |
D | CMakeLists.txt | 2 # SPDX-FileCopyrightText: Copyright 2022 Arm Limited and/or its affiliates <open-source-office@arm.…
|
/cmsis-nn-latest/Tests/UnitTest/TestCases/test_arm_ds_cnn_s_s8/ |
D | CMakeLists.txt | 2 # SPDX-FileCopyrightText: Copyright 2022 Arm Limited and/or its affiliates <open-source-office@arm.…
|
/cmsis-nn-latest/Tests/UnitTest/TestCases/test_arm_lstm_unidirectional_s8/ |
D | CMakeLists.txt | 2 # SPDX-FileCopyrightText: Copyright 2010-2022, 2024 Arm Limited and/or its affiliates <open-source-…
|
/cmsis-nn-latest/Tests/UnitTest/TestCases/test_arm_transpose_conv_s8/ |
D | CMakeLists.txt | 2 # SPDX-FileCopyrightText: Copyright 2023 Arm Limited and/or its affiliates <open-source-office@arm.…
|
/cmsis-nn-latest/Source/ActivationFunctions/ |
D | CMakeLists.txt | 2 # SPDX-FileCopyrightText: Copyright 2019-2023 Arm Limited and/or its affiliates <open-source-office…
|
/cmsis-nn-latest/Source/LSTMFunctions/ |
D | CMakeLists.txt | 2 # SPDX-FileCopyrightText: Copyright 2019-2022, 2024 Arm Limited and/or its affiliates <open-source-…
|
/cmsis-nn-latest/ |
D | CMakeLists.txt | 2 # SPDX-FileCopyrightText: Copyright 2010-2023 Arm Limited and/or its affiliates <open-source-office…
|
D | .clang-format | 2 # SPDX-FileCopyrightText: Copyright 2010-2021, 2023 Arm Limited and/or its affiliates <open-source-…
|
D | LICENSE | 27 including but not limited to software source code, documentation 28 source, and configuration files. 56 communication on electronic mailing lists, source code control systems,
|
/cmsis-nn-latest/Source/ConvolutionFunctions/ |
D | CMakeLists.txt | 2 # SPDX-FileCopyrightText: Copyright 2019-2023 Arm Limited and/or its affiliates <open-source-office…
|
/cmsis-nn-latest/Source/FullyConnectedFunctions/ |
D | CMakeLists.txt | 2 …Text: Copyright 2019-2021, 2023-2024 Arm Limited and/or its affiliates <open-source-office@arm.com>
|
/cmsis-nn-latest/Source/ |
D | CMakeLists.txt | 2 # SPDX-FileCopyrightText: Copyright 2019-2022 Arm Limited and/or its affiliates <open-source-office…
|
/cmsis-nn-latest/Documentation/Doxygen/src/ |
D | mainpage.md | 73 SPDX-FileCopyrightText: Copyright 2010-2023 Arm Limited and/or its affiliates <open-source-office@a…
|
/cmsis-nn-latest/Documentation/Doxygen/ |
D | nn.dxy.in | 1 # SPDX-FileCopyrightText: Copyright 2022-2024 Arm Limited and/or its affiliates <open-source-office… 91 # option can be useful when feeding doxygen a huge amount of source files, where 546 # locally in source files will be included in the documentation. If set to NO, 932 # documented source files. You may enter file names like myfile.cpp or 943 # This tag can be used to specify the character encoding of the source files 953 # This tag can be used to specify the character encoding of the source files 965 # *.h) to filter out the source-files in the directories. 1035 # excluded from the INPUT source files. This way you can easily exclude a 1089 # *.h) to filter out the source-files in the directories. If left blank all 1148 # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). [all …]
|