This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
commit 11519fe1cab0bae65c61374ff5abfae92fbf8573 Author: xinhaiteng <xinhait...@xiaomi.com> AuthorDate: Sat Mar 2 21:37:58 2024 +0800 Update third-party library version Tflite-micro, ruy and cmsis-nn need to be updated to a new version. Signed-off-by: xinhaiteng <xinhait...@xiaomi.com> --- math/ruy/Makefile | 4 ++-- mlearning/cmsis-nn/Makefile | 8 ++++---- mlearning/tflite-micro/Makefile | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/math/ruy/Makefile b/math/ruy/Makefile index 992c794c2..aa9b2be5e 100644 --- a/math/ruy/Makefile +++ b/math/ruy/Makefile @@ -20,7 +20,7 @@ include $(APPDIR)/Make.defs -RUY_VER = 54774a7a2cf85963777289193629d4bd42de4a59 +RUY_VER = d37128311b445e758136b8602d1bbd2a755e115d ruy.zip: $(Q) curl -L https://github.com/google/ruy/archive/$(RUY_VER).zip -o ruy.zip @@ -39,4 +39,4 @@ endif CFLAGS += ${INCDIR_PREFIX}$(APPDIR)/math/ruy/ruy CXXFLAGS += ${INCDIR_PREFIX}$(APPDIR)/math/ruy/ruy -include $(APPDIR)/Application.mk +include $(APPDIR)/Application.mk \ No newline at end of file diff --git a/mlearning/cmsis-nn/Makefile b/mlearning/cmsis-nn/Makefile index 54b374ed4..ccefca81a 100644 --- a/mlearning/cmsis-nn/Makefile +++ b/mlearning/cmsis-nn/Makefile @@ -22,7 +22,7 @@ include $(APPDIR)/Make.defs CMSIS_NN = cmsis-nn/Source -CMSIS_NN_VER = bfc54edb61e873039ec0857cacc40df36b1d644e +CMSIS_NN_VER = 72e1ebf623ab1660a3e14e4e36fdcddce46f1991 cmsis-nn.zip: $(Q) curl -L https://github.com/ARM-software/CMSIS-NN/archive/$(CMSIS_NN_VER).zip -o cmsis-nn.zip @@ -45,7 +45,7 @@ CSRCS += $(wildcard $(CMSIS_NN)/FullyConnectedFunctions/*.c) CSRCS += $(wildcard $(CMSIS_NN)/NNSupportFunctions/*.c) CSRCS += $(wildcard $(CMSIS_NN)/ConcatenationFunctions/*.c) CSRCS += $(wildcard $(CMSIS_NN)/SoftmaxFunctions/*.c) -CSRCS += $(CMSIS_NN)/LSTMFunctions/arm_lstm_unidirectional_s8_s16.c -CSRCS += $(CMSIS_NN)/ReshapeFunctions/arm_reshape_s8.c +CSRCS += $(wildcard $(CMSIS_NN)/LSTMFunctions/*.c) +CSRCS += $(wildcard $(CMSIS_NN)/ReshapeFunctions/*.c) -include $(APPDIR)/Application.mk +include $(APPDIR)/Application.mk \ No newline at end of file diff --git a/mlearning/tflite-micro/Makefile b/mlearning/tflite-micro/Makefile index f9c5849e6..7d758a84f 100644 --- a/mlearning/tflite-micro/Makefile +++ b/mlearning/tflite-micro/Makefile @@ -20,11 +20,11 @@ include $(APPDIR)/Make.defs -TFLITE_MICRO_VER = main +TFLITE_MICRO_VER = cfa4c91d1b36c37c7c104b9c664615e59f1abfe3 TFLITE_MICRO_UNPACK = tflite-micro tflite-micro.zip: - $(Q) curl -L https://github.com/tensorflow/tflite-micro/archive/refs/heads/$(TFLITE_MICRO_VER).zip -o tflite-micro.zip + $(Q) curl -L https://github.com/tensorflow/tflite-micro/archive/$(TFLITE_MICRO_VER).zip -o tflite-micro.zip $(Q) unzip -o tflite-micro.zip $(Q) mv tflite-micro-$(TFLITE_MICRO_VER) tflite-micro $(Q) patch -d $(TFLITE_MICRO_UNPACK) -p1 < tflite-micro.patch @@ -80,4 +80,4 @@ SRC_FILES := $(filter-out %test.cc, $(SRC_FILES)) CXXSRCS += $(SRC_FILES) -include $(APPDIR)/Application.mk +include $(APPDIR)/Application.mk \ No newline at end of file