This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
from 0a4170daf CI: Skip jobs arm-08 to arm-14 when a Complex PR is created / updated new 06189b556 fix: git status/git status --ignore normalization check problem new 6b6e0783c fix: git status/git status --ignore normalization check problem new bdfce937e remove:flatbuffers,gemmlowp,kissfft,ruy repos new 71cbcb261 Add configurations files. new 754d9e39a TFLM Cortex-A NEON Conv new a37ca36a8 Neon optimized Conv operator new fb17e3389 Neon optimized Add operator new 11519fe1c Update third-party library version new 67f495e36 Added Cortex-A compilation environment. new 14a591fab ml: tflm dequantize optimization patch new 570102c50 delete the neon conv2D new 068b2b16b ml: tflm quantize optimization patch new dda8cab33 ml: tflm mean optimization patch new 8dfd998db cmake:add cmsis-nn CMake build new eb56c62dc cmake:add tflite-micro CMake build new 958d8e03e Modify the usage error of neon instruction set new c585aa147 ml: clean tflite Makefile new b15e71cd2 ml: update Makefile new f2eb5cd3c ml: tflite extra hardware support. new b91adbb9f ml: useful tflm debug options new 7d87768f7 ml: a cmdline tool to use tflite-micro. new 25937282e ml: follow nxstyle The 22 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: audioutils/Makefile => math/gemmlowp/Kconfig | 10 +- {examples/adc => math/gemmlowp}/Make.defs | 6 +- {testing/fff => math/gemmlowp}/Makefile | 25 +- audioutils/Makefile => math/kissfft/Kconfig | 10 +- {examples/adc => math/kissfft}/Make.defs | 6 +- {testing/fff => math/kissfft}/Makefile | 29 +- math/kissfft/kissfft.patch | 116 ++++++ boot/Make.defs => math/ruy/Kconfig | 8 +- {nshlib => math/ruy}/Make.defs | 6 +- {testing/fff => math/ruy}/Makefile | 28 +- mlearning/cmsis-nn/.gitignore | 1 + .../inih => mlearning/cmsis-nn}/CMakeLists.txt | 82 +++-- audioutils/Makefile => mlearning/cmsis-nn/Kconfig | 10 +- .../mml_parser => mlearning/cmsis-nn}/Make.defs | 8 +- mlearning/cmsis-nn/Makefile | 60 +++ mlearning/tflite-micro/.gitignore | 1 + mlearning/tflite-micro/0001-dequantize-int8.patch | 101 +++++ mlearning/tflite-micro/0002-quantize-int8.patch | 108 ++++++ mlearning/tflite-micro/0003-mean-int8.patch | 112 ++++++ mlearning/tflite-micro/CMakeLists.txt | 164 +++++++++ .../Make.defs => mlearning/tflite-micro/Kconfig | 28 +- .../libmad => mlearning/tflite-micro}/Make.defs | 6 +- mlearning/tflite-micro/Makefile | 112 ++++++ .../tflite-micro/operators/neon/arm_convolve_s8.c | 226 ++++++++++++ .../operators/neon/arm_elementwise_add_s8.c | 173 +++++++++ .../operators/neon/arm_nn_mat_mult_kernel_s8_s16.c | 410 +++++++++++++++++++++ .../operators/neon/arm_q7_to_q15_with_offset.c | 62 ++++ mlearning/tflite-micro/tflite-micro.patch | 32 ++ mlearning/tflite-micro/tflm_tool.cc | 150 ++++++++ audioutils/Makefile => system/flatbuffers/Kconfig | 10 +- .../mml_parser => system/flatbuffers}/Make.defs | 8 +- {testing/fff => system/flatbuffers}/Makefile | 24 +- system/flatbuffers/flatbuffers.patch | 100 +++++ 33 files changed, 2109 insertions(+), 123 deletions(-) copy audioutils/Makefile => math/gemmlowp/Kconfig (89%) copy {examples/adc => math/gemmlowp}/Make.defs (89%) copy {testing/fff => math/gemmlowp}/Makefile (72%) copy audioutils/Makefile => math/kissfft/Kconfig (89%) copy {examples/adc => math/kissfft}/Make.defs (90%) copy {testing/fff => math/kissfft}/Makefile (66%) create mode 100644 math/kissfft/kissfft.patch copy boot/Make.defs => math/ruy/Kconfig (91%) copy {nshlib => math/ruy}/Make.defs (91%) copy {testing/fff => math/ruy}/Makefile (70%) create mode 100644 mlearning/cmsis-nn/.gitignore copy {fsutils/inih => mlearning/cmsis-nn}/CMakeLists.txt (50%) copy audioutils/Makefile => mlearning/cmsis-nn/Kconfig (88%) copy {audioutils/mml_parser => mlearning/cmsis-nn}/Make.defs (78%) create mode 100644 mlearning/cmsis-nn/Makefile create mode 100644 mlearning/tflite-micro/.gitignore create mode 100644 mlearning/tflite-micro/0001-dequantize-int8.patch create mode 100644 mlearning/tflite-micro/0002-quantize-int8.patch create mode 100644 mlearning/tflite-micro/0003-mean-int8.patch create mode 100644 mlearning/tflite-micro/CMakeLists.txt copy system/termcurses/Make.defs => mlearning/tflite-micro/Kconfig (66%) copy {audioutils/libmad => mlearning/tflite-micro}/Make.defs (88%) create mode 100644 mlearning/tflite-micro/Makefile create mode 100644 mlearning/tflite-micro/operators/neon/arm_convolve_s8.c create mode 100644 mlearning/tflite-micro/operators/neon/arm_elementwise_add_s8.c create mode 100644 mlearning/tflite-micro/operators/neon/arm_nn_mat_mult_kernel_s8_s16.c create mode 100644 mlearning/tflite-micro/operators/neon/arm_q7_to_q15_with_offset.c create mode 100644 mlearning/tflite-micro/tflite-micro.patch create mode 100644 mlearning/tflite-micro/tflm_tool.cc copy audioutils/Makefile => system/flatbuffers/Kconfig (88%) copy {audioutils/mml_parser => system/flatbuffers}/Make.defs (77%) copy {testing/fff => system/flatbuffers}/Makefile (68%) create mode 100644 system/flatbuffers/flatbuffers.patch