From a8ae883e4d49c3ba9e73979a286968d21c8a2d1f Mon Sep 17 00:00:00 2001 From: Ryan McClelland Date: Tue, 17 Sep 2024 14:16:35 -0700 Subject: [PATCH] modules: tflite-micro: add batch_matmul.cc to cmakelists.txt batch_matmul.cc was missing from the CMakeLists.txt for tflite-micro. Add it. Signed-off-by: Ryan McClelland --- modules/tflite-micro/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/tflite-micro/CMakeLists.txt b/modules/tflite-micro/CMakeLists.txt index 327038d84ae382..c0893a7d807e0a 100644 --- a/modules/tflite-micro/CMakeLists.txt +++ b/modules/tflite-micro/CMakeLists.txt @@ -91,6 +91,7 @@ if(CONFIG_TENSORFLOW_LITE_MICRO) ${TENSORFLOW_LITE_MICRO_DIR}/tensorflow/lite/micro/kernels/add_n.cc ${TENSORFLOW_LITE_MICRO_DIR}/tensorflow/lite/micro/kernels/arg_min_max.cc ${TENSORFLOW_LITE_MICRO_DIR}/tensorflow/lite/micro/kernels/assign_variable.cc + ${TENSORFLOW_LITE_MICRO_DIR}/tensorflow/lite/micro/kernels/batch_matmul.cc ${TENSORFLOW_LITE_MICRO_DIR}/tensorflow/lite/micro/kernels/batch_to_space_nd.cc ${TENSORFLOW_LITE_MICRO_DIR}/tensorflow/lite/micro/kernels/broadcast_args.cc ${TENSORFLOW_LITE_MICRO_DIR}/tensorflow/lite/micro/kernels/broadcast_to.cc