Skip to content

Commit

Permalink
Pulled tflite to master
Browse files Browse the repository at this point in the history
  • Loading branch information
jomjol committed Sep 30, 2024
1 parent f928277 commit 2e0e084
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/components/esp-tflite-micro
Submodule esp-tflite-micro updated 42 files
+2 −14 .gitlab-ci.yml
+20 −4 CMakeLists.txt
+15 −3 README.md
+4 −3 examples/person_detection/main/main_functions.cc
+2 −3 idf_component.yml
+21 −0 tensorflow/compiler/mlir/lite/kernels/internal/compatibility_macros.h
+22 −0 tensorflow/compiler/mlir/lite/schema/schema_generated.h
+2 −2 tensorflow/compiler/mlir/lite/schema/schema_utils.cc
+33 −0 tensorflow/compiler/mlir/lite/schema/schema_utils.h
+2 −0 tensorflow/lite/core/c/common.h
+0 −12 tensorflow/lite/core/macros.h
+6 −0 tensorflow/lite/kernels/internal/portable_tensor_utils.cc
+2 −2 tensorflow/lite/kernels/internal/portable_tensor_utils.h
+2 −1 tensorflow/lite/kernels/internal/quantization_util.h
+2 −0 tensorflow/lite/kernels/internal/reference/portable_tensor_utils.cc
+2 −0 tensorflow/lite/kernels/internal/reference/portable_tensor_utils_impl.h
+70 −0 tensorflow/lite/micro/compression.h
+74 −5 tensorflow/lite/micro/fake_micro_context.cc
+34 −2 tensorflow/lite/micro/fake_micro_context.h
+22 −137 tensorflow/lite/micro/kernels/batch_matmul.cc
+175 −0 tensorflow/lite/micro/kernels/batch_matmul.h
+13 −4 tensorflow/lite/micro/kernels/kernel_runner.cc
+7 −2 tensorflow/lite/micro/kernels/kernel_runner.h
+26 −1 tensorflow/lite/micro/kernels/kernel_util.h
+3 −0 tensorflow/lite/micro/kernels/maximum_minimum.cc
+2 −1 tensorflow/lite/micro/micro_allocation_info.h
+3 −1 tensorflow/lite/micro/micro_allocator.h
+152 −1 tensorflow/lite/micro/micro_context.cc
+31 −1 tensorflow/lite/micro/micro_context.h
+100 −1 tensorflow/lite/micro/micro_interpreter_context.cc
+26 −1 tensorflow/lite/micro/micro_interpreter_context.h
+62 −35 tensorflow/lite/micro/micro_interpreter_graph.cc
+10 −2 tensorflow/lite/micro/micro_interpreter_graph.h
+4 −1 tensorflow/lite/micro/micro_time.h
+7 −2 tensorflow/lite/micro/recording_micro_allocator.cc
+69 −0 tensorflow/lite/micro/span.h
+59 −0 tensorflow/lite/micro/span_test.cc
+83 −0 tensorflow/lite/micro/static_vector.h
+82 −0 tensorflow/lite/micro/static_vector_test.cc
+8 −1 tensorflow/lite/micro/testing/micro_test.h
+4 −0 tensorflow/lite/portable_type_to_tflitetype.h
+1 −14 tensorflow/lite/schema/schema_utils.h

0 comments on commit 2e0e084

Please sign in to comment.