├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── examples └── hello_world │ ├── CMakeLists.txt │ ├── constants.cpp │ ├── constants.h │ ├── hello_world.ino │ ├── main.cpp │ ├── main_functions.cpp │ ├── main_functions.h │ ├── model.cpp │ ├── model.h │ ├── output_handler.cpp │ └── output_handler.h ├── library.properties └── src ├── CMakeLists.txt ├── TensorFlowLite.h ├── tensorflow ├── core │ └── public │ │ └── version.h └── lite │ ├── c │ ├── builtin_op_data.h │ ├── c_api_types.h │ ├── common.c │ └── common.h │ ├── core │ └── api │ │ ├── error_reporter.cpp │ │ ├── error_reporter.h │ │ ├── flatbuffer_conversions.cpp │ │ ├── flatbuffer_conversions.h │ │ ├── op_resolver.cpp │ │ ├── op_resolver.h │ │ ├── tensor_utils.cpp │ │ └── tensor_utils.h │ ├── kernels │ ├── internal │ │ ├── common.h │ │ ├── compatibility.h │ │ ├── cppmath.h │ │ ├── max.h │ │ ├── min.h │ │ ├── optimized │ │ │ └── neon_check.h │ │ ├── portable_tensor.h │ │ ├── quantization_util.cpp │ │ ├── quantization_util.h │ │ ├── reference │ │ │ ├── add.h │ │ │ ├── add_n.h │ │ │ ├── arg_min_max.h │ │ │ ├── batch_to_space_nd.h │ │ │ ├── binary_function.h │ │ │ ├── ceil.h │ │ │ ├── comparisons.h │ │ │ ├── concatenation.h │ │ │ ├── conv.h │ │ │ ├── depthwiseconv_float.h │ │ │ ├── depthwiseconv_uint8.h │ │ │ ├── dequantize.h │ │ │ ├── div.h │ │ │ ├── elu.h │ │ │ ├── exp.h │ │ │ ├── fill.h │ │ │ ├── floor.h │ │ │ ├── fully_connected.h │ │ │ ├── hard_swish.h │ │ │ ├── integer_ops │ │ │ │ ├── add.h │ │ │ │ ├── conv.h │ │ │ │ ├── depthwise_conv.h │ │ │ │ ├── fully_connected.h │ │ │ │ ├── l2normalization.h │ │ │ │ ├── logistic.h │ │ │ │ ├── mean.h │ │ │ │ ├── mul.h │ │ │ │ ├── pooling.h │ │ │ │ ├── tanh.h │ │ │ │ └── transpose_conv.h │ │ │ ├── l2normalization.h │ │ │ ├── leaky_relu.h │ │ │ ├── logistic.h │ │ │ ├── maximum_minimum.h │ │ │ ├── mul.h │ │ │ ├── neg.h │ │ │ ├── pad.h │ │ │ ├── pooling.h │ │ │ ├── prelu.h │ │ │ ├── process_broadcast_shapes.h │ │ │ ├── quantize.h │ │ │ ├── reduce.h │ │ │ ├── requantize.h │ │ │ ├── resize_nearest_neighbor.h │ │ │ ├── round.h │ │ │ ├── softmax.h │ │ │ ├── space_to_batch_nd.h │ │ │ ├── strided_slice.h │ │ │ ├── sub.h │ │ │ ├── tanh.h │ │ │ └── transpose_conv.h │ │ ├── strided_slice_logic.h │ │ ├── tensor_ctypes.h │ │ └── types.h │ ├── kernel_util.cpp │ ├── kernel_util.h │ ├── op_macros.h │ └── padding.h │ ├── micro │ ├── all_ops_resolver.cpp │ ├── all_ops_resolver.h │ ├── benchmarks │ │ └── keyword_scrambled_model_data.h │ ├── compatibility.h │ ├── debug_log.cpp │ ├── debug_log.h │ ├── kernels │ │ ├── activation_utils.h │ │ ├── activations.cpp │ │ ├── add.cpp │ │ ├── add_n.cpp │ │ ├── arg_min_max.cpp │ │ ├── batch_to_space_nd.cpp │ │ ├── cast.cpp │ │ ├── ceil.cpp │ │ ├── circular_buffer.cpp │ │ ├── circular_buffer_flexbuffers_generated_data.h │ │ ├── comparisons.cpp │ │ ├── concatenation.cpp │ │ ├── conv.cpp │ │ ├── conv.h │ │ ├── conv_common.cpp │ │ ├── conv_test.h │ │ ├── depthwise_conv.cpp │ │ ├── depthwise_conv.h │ │ ├── depthwise_conv_common.cpp │ │ ├── dequantize.cpp │ │ ├── detection_postprocess.cpp │ │ ├── detection_postprocess_flexbuffers_generated_data.h │ │ ├── div.cpp │ │ ├── elementwise.cpp │ │ ├── elu.cpp │ │ ├── ethosu.cpp │ │ ├── ethosu.h │ │ ├── exp.cpp │ │ ├── expand_dims.cpp │ │ ├── fill.cpp │ │ ├── floor.cpp │ │ ├── fully_connected.cpp │ │ ├── fully_connected.h │ │ ├── fully_connected_common.cpp │ │ ├── hard_swish.cpp │ │ ├── kernel_runner.cpp │ │ ├── kernel_runner.h │ │ ├── kernel_util.cpp │ │ ├── kernel_util.h │ │ ├── l2_pool_2d.cpp │ │ ├── l2norm.cpp │ │ ├── leaky_relu.cpp │ │ ├── logical.cpp │ │ ├── logistic.cpp │ │ ├── maximum_minimum.cpp │ │ ├── micro_ops.h │ │ ├── micro_utils.h │ │ ├── mul.cpp │ │ ├── neg.cpp │ │ ├── pack.cpp │ │ ├── pad.cpp │ │ ├── pooling.cpp │ │ ├── prelu.cpp │ │ ├── quantize.cpp │ │ ├── quantize.h │ │ ├── quantize_common.cpp │ │ ├── reduce.cpp │ │ ├── reshape.cpp │ │ ├── resize_nearest_neighbor.cpp │ │ ├── round.cpp │ │ ├── shape.cpp │ │ ├── softmax.cpp │ │ ├── softmax.h │ │ ├── softmax_common.cpp │ │ ├── space_to_batch_nd.cpp │ │ ├── split.cpp │ │ ├── split_v.cpp │ │ ├── squeeze.cpp │ │ ├── strided_slice.cpp │ │ ├── sub.cpp │ │ ├── svdf.cpp │ │ ├── svdf.h │ │ ├── svdf_common.cpp │ │ ├── tanh.cpp │ │ ├── transpose_conv.cpp │ │ ├── unpack.cpp │ │ └── zeros_like.cpp │ ├── memory_helpers.cpp │ ├── memory_helpers.h │ ├── memory_planner │ │ ├── greedy_memory_planner.cpp │ │ ├── greedy_memory_planner.h │ │ ├── linear_memory_planner.cpp │ │ ├── linear_memory_planner.h │ │ └── memory_planner.h │ ├── micro_allocator.cpp │ ├── micro_allocator.h │ ├── micro_error_reporter.cpp │ ├── micro_error_reporter.h │ ├── micro_interpreter.cpp │ ├── micro_interpreter.h │ ├── micro_mutable_op_resolver.h │ ├── micro_op_resolver.h │ ├── micro_profiler.cpp │ ├── micro_profiler.h │ ├── micro_string.cpp │ ├── micro_string.h │ ├── micro_time.cpp │ ├── micro_time.h │ ├── micro_utils.cpp │ ├── micro_utils.h │ ├── recording_micro_allocator.cpp │ ├── recording_micro_allocator.h │ ├── recording_micro_interpreter.h │ ├── recording_simple_memory_allocator.cpp │ ├── recording_simple_memory_allocator.h │ ├── simple_memory_allocator.cpp │ ├── simple_memory_allocator.h │ ├── system_setup.cpp │ ├── system_setup.h │ ├── test_helpers.cpp │ ├── test_helpers.h │ └── testing │ │ ├── micro_test.h │ │ └── test_conv_model.h │ ├── portable_type_to_tflitetype.h │ ├── schema │ ├── schema_generated.h │ ├── schema_utils.cpp │ └── schema_utils.h │ └── version.h └── third_party ├── flatbuffers ├── LICENSE.txt └── include │ └── flatbuffers │ ├── base.h │ ├── flatbuffers.h │ ├── flexbuffers.h │ ├── stl_emulation.h │ └── util.h ├── gemmlowp ├── LICENSE ├── fixedpoint │ ├── fixedpoint.h │ ├── fixedpoint_neon.h │ └── fixedpoint_sse.h └── internal │ └── detect_platform.h ├── kissfft ├── COPYING ├── _kiss_fft_guts.h ├── kiss_fft.h └── tools │ └── kiss_fftr.h └── ruy └── ruy └── profiler └── instrumentation.h /.gitignore: -------------------------------------------------------------------------------- 1 | debug.log 2 | .vscode/ 3 | build/ 4 | 5 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/README.md -------------------------------------------------------------------------------- /examples/hello_world/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/examples/hello_world/CMakeLists.txt -------------------------------------------------------------------------------- /examples/hello_world/constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/examples/hello_world/constants.cpp -------------------------------------------------------------------------------- /examples/hello_world/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/examples/hello_world/constants.h -------------------------------------------------------------------------------- /examples/hello_world/hello_world.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/examples/hello_world/hello_world.ino -------------------------------------------------------------------------------- /examples/hello_world/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/examples/hello_world/main.cpp -------------------------------------------------------------------------------- /examples/hello_world/main_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/examples/hello_world/main_functions.cpp -------------------------------------------------------------------------------- /examples/hello_world/main_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/examples/hello_world/main_functions.h -------------------------------------------------------------------------------- /examples/hello_world/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/examples/hello_world/model.cpp -------------------------------------------------------------------------------- /examples/hello_world/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/examples/hello_world/model.h -------------------------------------------------------------------------------- /examples/hello_world/output_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/examples/hello_world/output_handler.cpp -------------------------------------------------------------------------------- /examples/hello_world/output_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/examples/hello_world/output_handler.h -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/library.properties -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/TensorFlowLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/TensorFlowLite.h -------------------------------------------------------------------------------- /src/tensorflow/core/public/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/core/public/version.h -------------------------------------------------------------------------------- /src/tensorflow/lite/c/builtin_op_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/c/builtin_op_data.h -------------------------------------------------------------------------------- /src/tensorflow/lite/c/c_api_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/c/c_api_types.h -------------------------------------------------------------------------------- /src/tensorflow/lite/c/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/c/common.c -------------------------------------------------------------------------------- /src/tensorflow/lite/c/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/c/common.h -------------------------------------------------------------------------------- /src/tensorflow/lite/core/api/error_reporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/core/api/error_reporter.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/core/api/error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/core/api/error_reporter.h -------------------------------------------------------------------------------- /src/tensorflow/lite/core/api/flatbuffer_conversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/core/api/flatbuffer_conversions.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/core/api/flatbuffer_conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/core/api/flatbuffer_conversions.h -------------------------------------------------------------------------------- /src/tensorflow/lite/core/api/op_resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/core/api/op_resolver.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/core/api/op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/core/api/op_resolver.h -------------------------------------------------------------------------------- /src/tensorflow/lite/core/api/tensor_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/core/api/tensor_utils.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/core/api/tensor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/core/api/tensor_utils.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/common.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/compatibility.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/cppmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/cppmath.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/max.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/min.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/optimized/neon_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/optimized/neon_check.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/portable_tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/portable_tensor.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/quantization_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/quantization_util.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/quantization_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/quantization_util.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/add.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/add_n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/add_n.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/arg_min_max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/arg_min_max.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/batch_to_space_nd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/batch_to_space_nd.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/binary_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/binary_function.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/ceil.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/comparisons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/comparisons.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/concatenation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/concatenation.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/conv.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/depthwiseconv_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/depthwiseconv_float.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/depthwiseconv_uint8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/depthwiseconv_uint8.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/dequantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/dequantize.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/div.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/elu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/elu.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/exp.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/fill.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/floor.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/fully_connected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/fully_connected.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/hard_swish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/hard_swish.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/integer_ops/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/integer_ops/add.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/integer_ops/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/integer_ops/conv.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/integer_ops/depthwise_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/integer_ops/depthwise_conv.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/integer_ops/fully_connected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/integer_ops/fully_connected.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/integer_ops/l2normalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/integer_ops/l2normalization.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/integer_ops/logistic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/integer_ops/logistic.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/integer_ops/mean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/integer_ops/mean.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/integer_ops/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/integer_ops/mul.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/integer_ops/pooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/integer_ops/pooling.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/integer_ops/tanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/integer_ops/tanh.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/integer_ops/transpose_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/integer_ops/transpose_conv.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/l2normalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/l2normalization.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/leaky_relu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/leaky_relu.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/logistic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/logistic.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/maximum_minimum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/maximum_minimum.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/mul.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/neg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/neg.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/pad.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/pooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/pooling.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/prelu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/prelu.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/process_broadcast_shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/process_broadcast_shapes.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/quantize.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/reduce.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/requantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/requantize.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/resize_nearest_neighbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/resize_nearest_neighbor.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/round.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/softmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/softmax.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/space_to_batch_nd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/space_to_batch_nd.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/strided_slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/strided_slice.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/sub.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/tanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/tanh.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/reference/transpose_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/reference/transpose_conv.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/strided_slice_logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/strided_slice_logic.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/tensor_ctypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/tensor_ctypes.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/internal/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/internal/types.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/kernel_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/kernel_util.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/kernel_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/kernel_util.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/op_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/op_macros.h -------------------------------------------------------------------------------- /src/tensorflow/lite/kernels/padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/kernels/padding.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/all_ops_resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/all_ops_resolver.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/all_ops_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/all_ops_resolver.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/benchmarks/keyword_scrambled_model_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/benchmarks/keyword_scrambled_model_data.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/compatibility.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/debug_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/debug_log.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/debug_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/debug_log.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/activation_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/activation_utils.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/activations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/activations.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/add.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/add_n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/add_n.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/arg_min_max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/arg_min_max.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/batch_to_space_nd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/batch_to_space_nd.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/cast.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/ceil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/ceil.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/circular_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/circular_buffer.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/circular_buffer_flexbuffers_generated_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/circular_buffer_flexbuffers_generated_data.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/comparisons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/comparisons.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/concatenation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/concatenation.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/conv.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/conv.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/conv_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/conv_common.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/conv_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/conv_test.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/depthwise_conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/depthwise_conv.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/depthwise_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/depthwise_conv.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/depthwise_conv_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/depthwise_conv_common.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/dequantize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/dequantize.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/detection_postprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/detection_postprocess.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/detection_postprocess_flexbuffers_generated_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/detection_postprocess_flexbuffers_generated_data.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/div.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/div.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/elementwise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/elementwise.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/elu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/elu.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/ethosu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/ethosu.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/ethosu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/ethosu.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/exp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/exp.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/expand_dims.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/expand_dims.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/fill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/fill.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/floor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/floor.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/fully_connected.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/fully_connected.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/fully_connected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/fully_connected.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/fully_connected_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/fully_connected_common.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/hard_swish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/hard_swish.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/kernel_runner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/kernel_runner.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/kernel_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/kernel_runner.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/kernel_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/kernel_util.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/kernel_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/kernel_util.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/l2_pool_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/l2_pool_2d.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/l2norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/l2norm.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/leaky_relu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/leaky_relu.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/logical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/logical.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/logistic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/logistic.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/maximum_minimum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/maximum_minimum.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/micro_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/micro_ops.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/micro_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/micro_utils.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/mul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/mul.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/neg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/neg.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/pack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/pack.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/pad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/pad.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/pooling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/pooling.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/prelu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/prelu.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/quantize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/quantize.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/quantize.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/quantize_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/quantize_common.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/reduce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/reduce.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/reshape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/reshape.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/resize_nearest_neighbor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/resize_nearest_neighbor.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/round.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/round.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/shape.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/softmax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/softmax.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/softmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/softmax.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/softmax_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/softmax_common.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/space_to_batch_nd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/space_to_batch_nd.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/split.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/split_v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/split_v.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/squeeze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/squeeze.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/strided_slice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/strided_slice.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/sub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/sub.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/svdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/svdf.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/svdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/svdf.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/svdf_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/svdf_common.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/tanh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/tanh.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/transpose_conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/transpose_conv.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/unpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/unpack.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/kernels/zeros_like.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/kernels/zeros_like.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/memory_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/memory_helpers.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/memory_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/memory_helpers.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/memory_planner/greedy_memory_planner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/memory_planner/greedy_memory_planner.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/memory_planner/greedy_memory_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/memory_planner/greedy_memory_planner.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/memory_planner/linear_memory_planner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/memory_planner/linear_memory_planner.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/memory_planner/linear_memory_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/memory_planner/linear_memory_planner.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/memory_planner/memory_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/memory_planner/memory_planner.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/micro_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/micro_allocator.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/micro_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/micro_allocator.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/micro_error_reporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/micro_error_reporter.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/micro_error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/micro_error_reporter.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/micro_interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/micro_interpreter.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/micro_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/micro_interpreter.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/micro_mutable_op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/micro_mutable_op_resolver.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/micro_op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/micro_op_resolver.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/micro_profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/micro_profiler.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/micro_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/micro_profiler.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/micro_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/micro_string.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/micro_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/micro_string.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/micro_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/micro_time.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/micro_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/micro_time.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/micro_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/micro_utils.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/micro_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/micro_utils.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/recording_micro_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/recording_micro_allocator.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/recording_micro_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/recording_micro_allocator.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/recording_micro_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/recording_micro_interpreter.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/recording_simple_memory_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/recording_simple_memory_allocator.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/recording_simple_memory_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/recording_simple_memory_allocator.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/simple_memory_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/simple_memory_allocator.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/simple_memory_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/simple_memory_allocator.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/system_setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/system_setup.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/system_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/system_setup.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/test_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/test_helpers.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/test_helpers.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/testing/micro_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/testing/micro_test.h -------------------------------------------------------------------------------- /src/tensorflow/lite/micro/testing/test_conv_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/micro/testing/test_conv_model.h -------------------------------------------------------------------------------- /src/tensorflow/lite/portable_type_to_tflitetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/portable_type_to_tflitetype.h -------------------------------------------------------------------------------- /src/tensorflow/lite/schema/schema_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/schema/schema_generated.h -------------------------------------------------------------------------------- /src/tensorflow/lite/schema/schema_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/schema/schema_utils.cpp -------------------------------------------------------------------------------- /src/tensorflow/lite/schema/schema_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/schema/schema_utils.h -------------------------------------------------------------------------------- /src/tensorflow/lite/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/tensorflow/lite/version.h -------------------------------------------------------------------------------- /src/third_party/flatbuffers/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/third_party/flatbuffers/LICENSE.txt -------------------------------------------------------------------------------- /src/third_party/flatbuffers/include/flatbuffers/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/third_party/flatbuffers/include/flatbuffers/base.h -------------------------------------------------------------------------------- /src/third_party/flatbuffers/include/flatbuffers/flatbuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/third_party/flatbuffers/include/flatbuffers/flatbuffers.h -------------------------------------------------------------------------------- /src/third_party/flatbuffers/include/flatbuffers/flexbuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/third_party/flatbuffers/include/flatbuffers/flexbuffers.h -------------------------------------------------------------------------------- /src/third_party/flatbuffers/include/flatbuffers/stl_emulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/third_party/flatbuffers/include/flatbuffers/stl_emulation.h -------------------------------------------------------------------------------- /src/third_party/flatbuffers/include/flatbuffers/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/third_party/flatbuffers/include/flatbuffers/util.h -------------------------------------------------------------------------------- /src/third_party/gemmlowp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/third_party/gemmlowp/LICENSE -------------------------------------------------------------------------------- /src/third_party/gemmlowp/fixedpoint/fixedpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/third_party/gemmlowp/fixedpoint/fixedpoint.h -------------------------------------------------------------------------------- /src/third_party/gemmlowp/fixedpoint/fixedpoint_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/third_party/gemmlowp/fixedpoint/fixedpoint_neon.h -------------------------------------------------------------------------------- /src/third_party/gemmlowp/fixedpoint/fixedpoint_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/third_party/gemmlowp/fixedpoint/fixedpoint_sse.h -------------------------------------------------------------------------------- /src/third_party/gemmlowp/internal/detect_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/third_party/gemmlowp/internal/detect_platform.h -------------------------------------------------------------------------------- /src/third_party/kissfft/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/third_party/kissfft/COPYING -------------------------------------------------------------------------------- /src/third_party/kissfft/_kiss_fft_guts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/third_party/kissfft/_kiss_fft_guts.h -------------------------------------------------------------------------------- /src/third_party/kissfft/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/third_party/kissfft/kiss_fft.h -------------------------------------------------------------------------------- /src/third_party/kissfft/tools/kiss_fftr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/third_party/kissfft/tools/kiss_fftr.h -------------------------------------------------------------------------------- /src/third_party/ruy/ruy/profiler/instrumentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iwatake2222/generic-tflmicro/HEAD/src/third_party/ruy/ruy/profiler/instrumentation.h --------------------------------------------------------------------------------