├── ACKNOWLEDGMENTS ├── AUTHORS ├── BUILD ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUES.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── README_en.md ├── RELEASE.md ├── SECURITY.md ├── WORKSPACE ├── arm_compiler.BUILD ├── configure ├── configure.cmd ├── configure.py ├── docs └── environment setup.md ├── models.BUILD ├── tensorflow ├── .clang-format ├── BUILD ├── __init__.py ├── api_template.__init__.py ├── api_template_v1.__init__.py ├── compat_template.__init__.py ├── compat_template_v1.__init__.py ├── core │ ├── BUILD │ ├── kernels │ │ ├── eigen_convolution_helpers.h │ │ └── eigen_spatial_convolutions-inl.h │ ├── platform │ │ ├── abi.cc │ │ ├── abi.h │ │ ├── bfloat16.h │ │ ├── blocking_counter.h │ │ ├── byte_order.h │ │ ├── context.h │ │ ├── cord.h │ │ ├── cpu_info.cc │ │ ├── cpu_info.h │ │ ├── ctstring.h │ │ ├── ctstring_internal.h │ │ ├── default │ │ │ ├── context.h │ │ │ ├── cord.h │ │ │ ├── integral_types.h │ │ │ ├── logging.cc │ │ │ ├── logging.h │ │ │ ├── mutex.cc │ │ │ ├── mutex.h │ │ │ ├── mutex_data.h │ │ │ ├── stacktrace.h │ │ │ ├── subprocess.cc │ │ │ ├── subprocess.h │ │ │ └── tracing_impl.h │ │ ├── denormal.cc │ │ ├── denormal.h │ │ ├── env.cc │ │ ├── env.h │ │ ├── env_time.h │ │ ├── errors.h │ │ ├── file_statistics.h │ │ ├── file_system.cc │ │ ├── file_system.h │ │ ├── file_system_helper.cc │ │ ├── file_system_helper.h │ │ ├── hash.cc │ │ ├── hash.h │ │ ├── host_info.h │ │ ├── init_main.h │ │ ├── logging.h │ │ ├── macros.h │ │ ├── mutex.h │ │ ├── null_file_system.h │ │ ├── numa.h │ │ ├── numbers.cc │ │ ├── numbers.h │ │ ├── path.cc │ │ ├── path.h │ │ ├── platform.h │ │ ├── protobuf.cc │ │ ├── protobuf.h │ │ ├── raw_coding.h │ │ ├── regexp.h │ │ ├── resource_loader.h │ │ ├── scanner.cc │ │ ├── scanner.h │ │ ├── setround.cc │ │ ├── setround.h │ │ ├── stacktrace.h │ │ ├── status.cc │ │ ├── status.h │ │ ├── str_util.cc │ │ ├── str_util.h │ │ ├── strcat.cc │ │ ├── strcat.h │ │ ├── stringpiece.h │ │ ├── stringprintf.cc │ │ ├── stringprintf.h │ │ ├── subprocess.h │ │ ├── test.h │ │ ├── thread_annotations.h │ │ ├── threadpool.cc │ │ ├── threadpool.h │ │ ├── threadpool_interface.h │ │ ├── tracing.cc │ │ ├── tracing.h │ │ ├── tstring.h │ │ ├── types.h │ │ └── windows │ │ │ ├── stacktrace.cc │ │ │ ├── stacktrace.h │ │ │ ├── subprocess.cc │ │ │ ├── subprocess.h │ │ │ ├── wide_char.cc │ │ │ └── wide_char.h │ ├── public │ │ ├── BUILD │ │ ├── README.md │ │ └── version.h │ └── util │ │ ├── stat_summarizer_options.h │ │ ├── stats_calculator.cc │ │ └── stats_calculator.h ├── lite │ ├── BUILD │ ├── CMakeLists.txt │ ├── README.md │ ├── abuild.bat │ ├── allocation.cc │ ├── allocation.h │ ├── arena_planner.cc │ ├── arena_planner.h │ ├── arena_planner_test.cc │ ├── build_def.bzl │ ├── builtin_op_data.h │ ├── builtin_ops.h │ ├── c │ │ ├── BUILD │ │ ├── README.md │ │ ├── builtin_op_data.h │ │ ├── builtin_op_data_test.cc │ │ ├── c_api.cc │ │ ├── c_api.h │ │ ├── c_api_experimental.cc │ │ ├── c_api_experimental.h │ │ ├── c_api_experimental_test.cc │ │ ├── c_api_internal.h │ │ ├── c_api_test.cc │ │ ├── c_test.c │ │ ├── common.c │ │ ├── common.h │ │ ├── common_test.cc │ │ ├── exported_symbols.lds │ │ └── version_script.lds │ ├── context.h │ ├── context_util.h │ ├── core │ │ ├── api │ │ │ ├── BUILD │ │ │ ├── error_reporter.cc │ │ │ ├── error_reporter.h │ │ │ ├── error_reporter_test.cc │ │ │ ├── flatbuffer_conversions.cc │ │ │ ├── flatbuffer_conversions.h │ │ │ ├── flatbuffer_conversions_test.cc │ │ │ ├── op_resolver.cc │ │ │ ├── op_resolver.h │ │ │ ├── op_resolver_test.cc │ │ │ ├── profiler.h │ │ │ ├── tensor_utils.cc │ │ │ ├── tensor_utils.h │ │ │ └── verifier.h │ │ ├── macros.h │ │ ├── subgraph.cc │ │ └── subgraph.h │ ├── delegates │ │ ├── BUILD │ │ ├── delegate_test.cc │ │ ├── external │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── external_delegate.cc │ │ │ └── external_delegate.h │ │ ├── flex │ │ │ ├── BUILD │ │ │ ├── allowlisted_flex_ops.cc │ │ │ ├── allowlisted_flex_ops.h │ │ │ ├── allowlisted_flex_ops_internal.h │ │ │ ├── allowlisted_flex_ops_test.cc │ │ │ ├── buffer_map.cc │ │ │ ├── buffer_map.h │ │ │ ├── buffer_map_test.cc │ │ │ ├── build_def.bzl │ │ │ ├── delegate.cc │ │ │ ├── delegate.h │ │ │ ├── delegate_data.cc │ │ │ ├── delegate_data.h │ │ │ ├── delegate_data_test.cc │ │ │ ├── delegate_test.cc │ │ │ ├── java │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ └── lite │ │ │ │ │ │ └── flex │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── FlexDelegate.java │ │ │ │ │ └── native │ │ │ │ │ ├── BUILD │ │ │ │ │ └── flex_delegate_jni.cc │ │ │ ├── kernel.cc │ │ │ ├── kernel.h │ │ │ ├── kernel_test.cc │ │ │ ├── test │ │ │ │ └── BUILD │ │ │ ├── test_util.cc │ │ │ ├── test_util.h │ │ │ ├── util.cc │ │ │ ├── util.h │ │ │ └── util_test.cc │ │ ├── gpu │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── api.cc │ │ │ ├── api.h │ │ │ ├── cl │ │ │ │ ├── BUILD │ │ │ │ ├── api.cc │ │ │ │ ├── api.h │ │ │ │ ├── arguments.cc │ │ │ │ ├── arguments.h │ │ │ │ ├── arguments_test.cc │ │ │ │ ├── buffer.cc │ │ │ │ ├── buffer.h │ │ │ │ ├── buffer_test.cc │ │ │ │ ├── cl_command_queue.cc │ │ │ │ ├── cl_command_queue.h │ │ │ │ ├── cl_context.cc │ │ │ │ ├── cl_context.h │ │ │ │ ├── cl_device.cc │ │ │ │ ├── cl_device.h │ │ │ │ ├── cl_errors.h │ │ │ │ ├── cl_event.cc │ │ │ │ ├── cl_event.h │ │ │ │ ├── cl_image_format.cc │ │ │ │ ├── cl_image_format.h │ │ │ │ ├── cl_kernel.cc │ │ │ │ ├── cl_kernel.h │ │ │ │ ├── cl_memory.cc │ │ │ │ ├── cl_memory.h │ │ │ │ ├── cl_program.cc │ │ │ │ ├── cl_program.h │ │ │ │ ├── cl_test.h │ │ │ │ ├── compiled_program_cache.fbs │ │ │ │ ├── compiled_program_cache_generated.h │ │ │ │ ├── device_info.cc │ │ │ │ ├── device_info.h │ │ │ │ ├── egl_sync.cc │ │ │ │ ├── egl_sync.h │ │ │ │ ├── environment.cc │ │ │ │ ├── environment.h │ │ │ │ ├── gl_interop.cc │ │ │ │ ├── gl_interop.h │ │ │ │ ├── gpu_api_delegate.cc │ │ │ │ ├── gpu_api_delegate.h │ │ │ │ ├── gpu_object.cc │ │ │ │ ├── gpu_object.h │ │ │ │ ├── inference_context.cc │ │ │ │ ├── inference_context.h │ │ │ │ ├── kernels │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── add.cc │ │ │ │ │ ├── add.h │ │ │ │ │ ├── add_test.cc │ │ │ │ │ ├── cl_test.cc │ │ │ │ │ ├── cl_test.h │ │ │ │ │ ├── concat_test.cc │ │ │ │ │ ├── concat_xy.cc │ │ │ │ │ ├── concat_xy.h │ │ │ │ │ ├── concat_z.cc │ │ │ │ │ ├── concat_z.h │ │ │ │ │ ├── conv_buffer_1x1.cc │ │ │ │ │ ├── conv_buffer_1x1.h │ │ │ │ │ ├── conv_buffer_1x1_test.cc │ │ │ │ │ ├── conv_common.h │ │ │ │ │ ├── conv_constants.cc │ │ │ │ │ ├── conv_constants.h │ │ │ │ │ ├── conv_constants_test.cc │ │ │ │ │ ├── conv_powervr.cc │ │ │ │ │ ├── conv_powervr.h │ │ │ │ │ ├── conv_powervr_test.cc │ │ │ │ │ ├── conv_weights_converter.cc │ │ │ │ │ ├── conv_weights_converter.h │ │ │ │ │ ├── converter.cc │ │ │ │ │ ├── converter.h │ │ │ │ │ ├── convolution_transposed.cc │ │ │ │ │ ├── convolution_transposed.h │ │ │ │ │ ├── convolution_transposed_3x3.cc │ │ │ │ │ ├── convolution_transposed_3x3.h │ │ │ │ │ ├── convolution_transposed_3x3_test.cc │ │ │ │ │ ├── convolution_transposed_3x3_thin.cc │ │ │ │ │ ├── convolution_transposed_3x3_thin.h │ │ │ │ │ ├── convolution_transposed_3x3_thin_test.cc │ │ │ │ │ ├── convolution_transposed_4x4.cc │ │ │ │ │ ├── convolution_transposed_4x4.h │ │ │ │ │ ├── convolution_transposed_4x4_test.cc │ │ │ │ │ ├── convolution_transposed_test.cc │ │ │ │ │ ├── convolution_transposed_thin.cc │ │ │ │ │ ├── convolution_transposed_thin.h │ │ │ │ │ ├── convolution_transposed_thin_test.cc │ │ │ │ │ ├── depthwise_conv.cc │ │ │ │ │ ├── depthwise_conv.h │ │ │ │ │ ├── depthwise_conv_3x3.cc │ │ │ │ │ ├── depthwise_conv_3x3.h │ │ │ │ │ ├── depthwise_conv_3x3_test.cc │ │ │ │ │ ├── depthwise_conv_test.cc │ │ │ │ │ ├── elementwise.cc │ │ │ │ │ ├── elementwise.h │ │ │ │ │ ├── elementwise_test.cc │ │ │ │ │ ├── fully_connected.cc │ │ │ │ │ ├── fully_connected.h │ │ │ │ │ ├── fully_connected_test.cc │ │ │ │ │ ├── gpu_operation.cc │ │ │ │ │ ├── gpu_operation.h │ │ │ │ │ ├── lstm.cc │ │ │ │ │ ├── lstm.h │ │ │ │ │ ├── lstm_full_test.cc │ │ │ │ │ ├── lstm_test.cc │ │ │ │ │ ├── max_unpooling.cc │ │ │ │ │ ├── max_unpooling.h │ │ │ │ │ ├── max_unpooling_test.cc │ │ │ │ │ ├── mean.cc │ │ │ │ │ ├── mean.h │ │ │ │ │ ├── mean_stddev_normalization.cc │ │ │ │ │ ├── mean_stddev_normalization.h │ │ │ │ │ ├── mean_stddev_normalization_test.cc │ │ │ │ │ ├── mean_test.cc │ │ │ │ │ ├── padding.cc │ │ │ │ │ ├── padding.h │ │ │ │ │ ├── padding_test.cc │ │ │ │ │ ├── pooling.cc │ │ │ │ │ ├── pooling.h │ │ │ │ │ ├── pooling_test.cc │ │ │ │ │ ├── prelu.cc │ │ │ │ │ ├── prelu.h │ │ │ │ │ ├── prelu_test.cc │ │ │ │ │ ├── quantize_and_dequantize.cc │ │ │ │ │ ├── quantize_and_dequantize.h │ │ │ │ │ ├── quantize_and_dequantize_test.cc │ │ │ │ │ ├── reduce.cc │ │ │ │ │ ├── reduce.h │ │ │ │ │ ├── reduce_test.cc │ │ │ │ │ ├── relu.cc │ │ │ │ │ ├── relu.h │ │ │ │ │ ├── relu_test.cc │ │ │ │ │ ├── reshape.cc │ │ │ │ │ ├── reshape.h │ │ │ │ │ ├── reshape_test.cc │ │ │ │ │ ├── reshapex4.cc │ │ │ │ │ ├── reshapex4.h │ │ │ │ │ ├── reshapex4_test.cc │ │ │ │ │ ├── resize.cc │ │ │ │ │ ├── resize.h │ │ │ │ │ ├── resize_test.cc │ │ │ │ │ ├── softmax.cc │ │ │ │ │ ├── softmax.h │ │ │ │ │ ├── softmax1x1.cc │ │ │ │ │ ├── softmax1x1.h │ │ │ │ │ ├── softmax1x1_test.cc │ │ │ │ │ ├── softmax_test.cc │ │ │ │ │ ├── space_to_depth.cc │ │ │ │ │ ├── space_to_depth.h │ │ │ │ │ ├── space_to_depth_test.cc │ │ │ │ │ ├── special │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── depthwise_conv_plus_1x1_conv.cc │ │ │ │ │ │ ├── depthwise_conv_plus_1x1_conv.h │ │ │ │ │ │ ├── fc_fc_add.cc │ │ │ │ │ │ └── fc_fc_add.h │ │ │ │ │ ├── strided_slice.cc │ │ │ │ │ ├── strided_slice.h │ │ │ │ │ ├── strided_slice_test.cc │ │ │ │ │ ├── transpose.cc │ │ │ │ │ ├── transpose.h │ │ │ │ │ ├── transpose_test.cc │ │ │ │ │ ├── tuning_parameters.h │ │ │ │ │ ├── util.cc │ │ │ │ │ ├── util.h │ │ │ │ │ ├── winograd.cc │ │ │ │ │ ├── winograd.h │ │ │ │ │ ├── winograd_test.cc │ │ │ │ │ ├── work_group_picking.cc │ │ │ │ │ └── work_group_picking.h │ │ │ │ ├── linear_storage.cc │ │ │ │ ├── linear_storage.h │ │ │ │ ├── model_hints.h │ │ │ │ ├── opencl_wrapper.cc │ │ │ │ ├── opencl_wrapper.h │ │ │ │ ├── precision.cc │ │ │ │ ├── precision.h │ │ │ │ ├── program_cache.cc │ │ │ │ ├── program_cache.h │ │ │ │ ├── run_tests.sh │ │ │ │ ├── selectors │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── convolution_selector.cc │ │ │ │ │ ├── convolution_selector.h │ │ │ │ │ ├── convolution_transposed_selector.cc │ │ │ │ │ ├── convolution_transposed_selector.h │ │ │ │ │ ├── default │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── default_selector.cc │ │ │ │ │ ├── default_selector.h │ │ │ │ │ ├── dw_convolution_selector.cc │ │ │ │ │ ├── dw_convolution_selector.h │ │ │ │ │ ├── fully_connected_selector.cc │ │ │ │ │ ├── fully_connected_selector.h │ │ │ │ │ ├── operation_selector.cc │ │ │ │ │ ├── operation_selector.h │ │ │ │ │ ├── simple_selectors.cc │ │ │ │ │ ├── simple_selectors.h │ │ │ │ │ ├── special_selector.cc │ │ │ │ │ ├── special_selector.h │ │ │ │ │ ├── subgraph.cc │ │ │ │ │ └── subgraph.h │ │ │ │ ├── serialization.cc │ │ │ │ ├── serialization.fbs │ │ │ │ ├── serialization.h │ │ │ │ ├── storage_type_util.cc │ │ │ │ ├── storage_type_util.h │ │ │ │ ├── tensor.cc │ │ │ │ ├── tensor.h │ │ │ │ ├── tensor_test.cc │ │ │ │ ├── tensor_type.cc │ │ │ │ ├── tensor_type.h │ │ │ │ ├── tensor_type_util.cc │ │ │ │ ├── tensor_type_util.h │ │ │ │ ├── testing │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── delegate_testing.cc │ │ │ │ │ ├── internal_api_samples.cc │ │ │ │ │ ├── performance_profiling.cc │ │ │ │ │ ├── run_delegate_testing.sh │ │ │ │ │ ├── run_internal_api_samples.sh │ │ │ │ │ └── run_performance_profiling.sh │ │ │ │ ├── texture2d.cc │ │ │ │ ├── texture2d.h │ │ │ │ ├── texture2d_test.cc │ │ │ │ ├── util.cc │ │ │ │ └── util.h │ │ │ ├── common │ │ │ │ ├── BUILD │ │ │ │ ├── access_type.h │ │ │ │ ├── convert.cc │ │ │ │ ├── convert.h │ │ │ │ ├── custom_parsers.h │ │ │ │ ├── custom_transformations.h │ │ │ │ ├── data_type.cc │ │ │ │ ├── data_type.h │ │ │ │ ├── default │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── custom_parsers.cc │ │ │ │ │ └── custom_transformations.cc │ │ │ │ ├── gpu_info.cc │ │ │ │ ├── gpu_info.h │ │ │ │ ├── lstm_parser.cc │ │ │ │ ├── lstm_parser.h │ │ │ │ ├── memory_management.cc │ │ │ │ ├── memory_management.h │ │ │ │ ├── memory_management │ │ │ │ │ ├── equality_assignment.h │ │ │ │ │ ├── greedy_by_breadth_assignment.cc │ │ │ │ │ ├── greedy_by_breadth_assignment.h │ │ │ │ │ ├── greedy_by_size_assignment.cc │ │ │ │ │ ├── greedy_by_size_assignment.h │ │ │ │ │ ├── greedy_in_order_assignment.h │ │ │ │ │ ├── internal.cc │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── internal_test.cc │ │ │ │ │ ├── min_cost_flow_assignment.cc │ │ │ │ │ ├── min_cost_flow_assignment.h │ │ │ │ │ ├── naive_assignment.h │ │ │ │ │ ├── types.cc │ │ │ │ │ ├── types.h │ │ │ │ │ └── types_test.cc │ │ │ │ ├── memory_management_test.cc │ │ │ │ ├── model.cc │ │ │ │ ├── model.h │ │ │ │ ├── model_builder.cc │ │ │ │ ├── model_builder.h │ │ │ │ ├── model_builder_helper.cc │ │ │ │ ├── model_builder_helper.h │ │ │ │ ├── model_builder_test.cc │ │ │ │ ├── model_test.cc │ │ │ │ ├── model_transformer.cc │ │ │ │ ├── model_transformer.h │ │ │ │ ├── object_reader.cc │ │ │ │ ├── object_reader.h │ │ │ │ ├── operations.cc │ │ │ │ ├── operations.h │ │ │ │ ├── quantization_util.cc │ │ │ │ ├── quantization_util.h │ │ │ │ ├── quantization_util_test.cc │ │ │ │ ├── shape.cc │ │ │ │ ├── shape.h │ │ │ │ ├── shape_test.cc │ │ │ │ ├── status.h │ │ │ │ ├── tensor.h │ │ │ │ ├── testing │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── feature_parity │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── feature_parity.h │ │ │ │ │ │ ├── generators │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ ├── add.cc │ │ │ │ │ │ │ └── add.h │ │ │ │ │ │ ├── opencl_test.cc │ │ │ │ │ │ ├── opengl_test.cc │ │ │ │ │ │ ├── utils.cc │ │ │ │ │ │ ├── utils.h │ │ │ │ │ │ └── xnnpack_test.cc │ │ │ │ │ ├── interpreter_utils.cc │ │ │ │ │ ├── interpreter_utils.h │ │ │ │ │ ├── tflite_model_reader.cc │ │ │ │ │ └── tflite_model_reader.h │ │ │ │ ├── transformations │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── add_bias.cc │ │ │ │ │ ├── add_bias.h │ │ │ │ │ ├── add_quant_adjustments.cc │ │ │ │ │ ├── add_quant_adjustments.h │ │ │ │ │ ├── add_quant_adjustments_test.cc │ │ │ │ │ ├── fuse_add_to_conv.cc │ │ │ │ │ ├── fuse_add_to_conv.h │ │ │ │ │ ├── fuse_add_to_conv_test.cc │ │ │ │ │ ├── fuse_mul_to_conv.cc │ │ │ │ │ ├── fuse_mul_to_conv.h │ │ │ │ │ ├── fuse_mul_to_conv_test.cc │ │ │ │ │ ├── make_fully_connected.cc │ │ │ │ │ ├── make_fully_connected.h │ │ │ │ │ ├── make_fully_connected_test.cc │ │ │ │ │ ├── make_padding.cc │ │ │ │ │ ├── make_padding.h │ │ │ │ │ ├── make_padding_test.cc │ │ │ │ │ ├── matching.h │ │ │ │ │ ├── merge_padding_with.cc │ │ │ │ │ ├── merge_padding_with.h │ │ │ │ │ ├── merge_padding_with_test.cc │ │ │ │ │ ├── model_transformations.cc │ │ │ │ │ ├── model_transformations.h │ │ │ │ │ ├── remove_noop.cc │ │ │ │ │ ├── remove_noop.h │ │ │ │ │ └── remove_noop_test.cc │ │ │ │ ├── types.h │ │ │ │ ├── util.h │ │ │ │ ├── util_test.cc │ │ │ │ ├── winograd_util.cc │ │ │ │ ├── winograd_util.h │ │ │ │ ├── workgroup_selection.cc │ │ │ │ └── workgroup_selection.h │ │ │ ├── delegate.cc │ │ │ ├── delegate.h │ │ │ ├── gl │ │ │ │ ├── BUILD │ │ │ │ ├── api.cc │ │ │ │ ├── api.h │ │ │ │ ├── api2.cc │ │ │ │ ├── api2.h │ │ │ │ ├── command_queue.cc │ │ │ │ ├── command_queue.h │ │ │ │ ├── common.fbs │ │ │ │ ├── compiled_model.fbs │ │ │ │ ├── compiler.cc │ │ │ │ ├── compiler.h │ │ │ │ ├── compiler │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── compiled_node.cc │ │ │ │ │ ├── compiled_node.h │ │ │ │ │ ├── fuse_auto_input.cc │ │ │ │ │ ├── fuse_auto_input.h │ │ │ │ │ ├── fuse_auto_input_test.cc │ │ │ │ │ ├── fuse_inline.cc │ │ │ │ │ ├── fuse_inline.h │ │ │ │ │ ├── fuse_inplace.cc │ │ │ │ │ ├── fuse_inplace.h │ │ │ │ │ ├── object_accessor.cc │ │ │ │ │ ├── object_accessor.h │ │ │ │ │ ├── object_accessor_test.cc │ │ │ │ │ ├── preprocessor.cc │ │ │ │ │ ├── preprocessor.h │ │ │ │ │ ├── preprocessor_test.cc │ │ │ │ │ ├── rename.cc │ │ │ │ │ ├── rename.h │ │ │ │ │ ├── shader_code.h │ │ │ │ │ ├── shader_codegen.cc │ │ │ │ │ ├── shader_codegen.h │ │ │ │ │ ├── variable_accessor.cc │ │ │ │ │ ├── variable_accessor.h │ │ │ │ │ └── variable_accessor_test.cc │ │ │ │ ├── compiler_options.h │ │ │ │ ├── converters │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── bhwc_to_phwc4.cc │ │ │ │ │ ├── bhwc_to_phwc4.h │ │ │ │ │ ├── bhwc_to_phwc4_test.cc │ │ │ │ │ ├── phwc4_to_bhwc.cc │ │ │ │ │ ├── phwc4_to_bhwc.h │ │ │ │ │ ├── phwc4_to_bhwc_test.cc │ │ │ │ │ └── util.h │ │ │ │ ├── egl_context.cc │ │ │ │ ├── egl_context.h │ │ │ │ ├── egl_environment.cc │ │ │ │ ├── egl_environment.h │ │ │ │ ├── egl_surface.cc │ │ │ │ ├── egl_surface.h │ │ │ │ ├── float16_conversions.cc │ │ │ │ ├── float16_conversions.h │ │ │ │ ├── gl_buffer.cc │ │ │ │ ├── gl_buffer.h │ │ │ │ ├── gl_buffer_test.cc │ │ │ │ ├── gl_call.h │ │ │ │ ├── gl_errors.cc │ │ │ │ ├── gl_errors.h │ │ │ │ ├── gl_program.cc │ │ │ │ ├── gl_program.h │ │ │ │ ├── gl_shader.cc │ │ │ │ ├── gl_shader.h │ │ │ │ ├── gl_sync.cc │ │ │ │ ├── gl_sync.h │ │ │ │ ├── gl_texture.cc │ │ │ │ ├── gl_texture.h │ │ │ │ ├── kernels │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── add.cc │ │ │ │ │ ├── add.h │ │ │ │ │ ├── add_test.cc │ │ │ │ │ ├── concat.cc │ │ │ │ │ ├── concat.h │ │ │ │ │ ├── concat_test.cc │ │ │ │ │ ├── conv.cc │ │ │ │ │ ├── conv.h │ │ │ │ │ ├── conv_test.cc │ │ │ │ │ ├── converter.cc │ │ │ │ │ ├── converter.h │ │ │ │ │ ├── converter_test.cc │ │ │ │ │ ├── custom_registry.cc │ │ │ │ │ ├── custom_registry.h │ │ │ │ │ ├── depthwise_conv.cc │ │ │ │ │ ├── depthwise_conv.h │ │ │ │ │ ├── depthwise_conv_test.cc │ │ │ │ │ ├── elementwise.cc │ │ │ │ │ ├── elementwise.h │ │ │ │ │ ├── elementwise_test.cc │ │ │ │ │ ├── fully_connected.cc │ │ │ │ │ ├── fully_connected.h │ │ │ │ │ ├── fully_connected_test.cc │ │ │ │ │ ├── lstm.cc │ │ │ │ │ ├── lstm.h │ │ │ │ │ ├── lstm_test.cc │ │ │ │ │ ├── max_unpooling.cc │ │ │ │ │ ├── max_unpooling.h │ │ │ │ │ ├── max_unpooling_test.cc │ │ │ │ │ ├── mean.cc │ │ │ │ │ ├── mean.h │ │ │ │ │ ├── mean_test.cc │ │ │ │ │ ├── mul.cc │ │ │ │ │ ├── mul.h │ │ │ │ │ ├── mul_test.cc │ │ │ │ │ ├── pad.cc │ │ │ │ │ ├── pad.h │ │ │ │ │ ├── pad_test.cc │ │ │ │ │ ├── pooling.cc │ │ │ │ │ ├── pooling.h │ │ │ │ │ ├── pooling_test.cc │ │ │ │ │ ├── prelu.cc │ │ │ │ │ ├── prelu.h │ │ │ │ │ ├── prelu_test.cc │ │ │ │ │ ├── quantize_and_dequantize.cc │ │ │ │ │ ├── quantize_and_dequantize.h │ │ │ │ │ ├── quantize_and_dequantize_test.cc │ │ │ │ │ ├── registry.cc │ │ │ │ │ ├── registry.h │ │ │ │ │ ├── relu.cc │ │ │ │ │ ├── relu.h │ │ │ │ │ ├── relu_test.cc │ │ │ │ │ ├── reshape.cc │ │ │ │ │ ├── reshape.h │ │ │ │ │ ├── reshape_test.cc │ │ │ │ │ ├── resize.cc │ │ │ │ │ ├── resize.h │ │ │ │ │ ├── resize_test.cc │ │ │ │ │ ├── slice.cc │ │ │ │ │ ├── slice.h │ │ │ │ │ ├── slice_test.cc │ │ │ │ │ ├── softmax.cc │ │ │ │ │ ├── softmax.h │ │ │ │ │ ├── softmax_test.cc │ │ │ │ │ ├── space_to_depth.cc │ │ │ │ │ ├── space_to_depth.h │ │ │ │ │ ├── space_to_depth_test.cc │ │ │ │ │ ├── test_util.cc │ │ │ │ │ ├── test_util.h │ │ │ │ │ ├── transpose_conv.cc │ │ │ │ │ ├── transpose_conv.h │ │ │ │ │ └── transpose_conv_test.cc │ │ │ │ ├── metadata.fbs │ │ │ │ ├── node_shader.h │ │ │ │ ├── object.h │ │ │ │ ├── object_manager.cc │ │ │ │ ├── object_manager.h │ │ │ │ ├── portable_egl.h │ │ │ │ ├── portable_gl31.h │ │ │ │ ├── request_gpu_info.cc │ │ │ │ ├── request_gpu_info.h │ │ │ │ ├── runtime.cc │ │ │ │ ├── runtime.h │ │ │ │ ├── runtime │ │ │ │ │ ├── BUILD │ │ │ │ │ └── shared_buffer.h │ │ │ │ ├── runtime_options.h │ │ │ │ ├── serialization.cc │ │ │ │ ├── serialization.h │ │ │ │ ├── serialization_test.cc │ │ │ │ ├── stats.h │ │ │ │ ├── variable.h │ │ │ │ ├── workgroups.fbs │ │ │ │ └── workgroups │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── best_effort_calculator.cc │ │ │ │ │ ├── best_effort_calculator.h │ │ │ │ │ ├── calculator.cc │ │ │ │ │ ├── calculator.h │ │ │ │ │ ├── calculator_from_metadata.cc │ │ │ │ │ ├── calculator_from_metadata.h │ │ │ │ │ ├── default_calculator.cc │ │ │ │ │ ├── default_calculator.h │ │ │ │ │ ├── ideal_workgroup_picker.cc │ │ │ │ │ └── ideal_workgroup_picker.h │ │ │ ├── gl_delegate.cc │ │ │ ├── gl_delegate.h │ │ │ ├── java │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ └── lite │ │ │ │ │ │ └── gpu │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── CompatibilityList.java │ │ │ │ │ │ └── GpuDelegate.java │ │ │ │ │ └── native │ │ │ │ │ ├── BUILD │ │ │ │ │ └── gpu_delegate_jni.cc │ │ │ ├── metal │ │ │ │ ├── BUILD │ │ │ │ ├── ComponentsTests.tulsiproj │ │ │ │ │ ├── Configs │ │ │ │ │ │ └── ComponentsTests.tulsigen │ │ │ │ │ └── project.tulsiconf │ │ │ │ ├── Info.plist │ │ │ │ ├── api.cc │ │ │ │ ├── api.h │ │ │ │ ├── arguments.cc │ │ │ │ ├── arguments.h │ │ │ │ ├── buffer_convert.h │ │ │ │ ├── buffer_convert.mm │ │ │ │ ├── common.h │ │ │ │ ├── common.mm │ │ │ │ ├── common_test.mm │ │ │ │ ├── compiled_model.cc │ │ │ │ ├── compiled_model.h │ │ │ │ ├── compiled_model_test.mm │ │ │ │ ├── compute_task.h │ │ │ │ ├── compute_task.mm │ │ │ │ ├── compute_task_descriptor.cc │ │ │ │ ├── compute_task_descriptor.h │ │ │ │ ├── environment.h │ │ │ │ ├── environment.mm │ │ │ │ ├── host.m │ │ │ │ ├── inference_context.h │ │ │ │ ├── inference_context.mm │ │ │ │ ├── inference_context_test.mm │ │ │ │ ├── kernels │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── add.cc │ │ │ │ │ ├── add.h │ │ │ │ │ ├── add_test.mm │ │ │ │ │ ├── concat.cc │ │ │ │ │ ├── concat.h │ │ │ │ │ ├── concat_test.mm │ │ │ │ │ ├── conv.cc │ │ │ │ │ ├── conv.h │ │ │ │ │ ├── conv_test.mm │ │ │ │ │ ├── custom_registry.cc │ │ │ │ │ ├── custom_registry.h │ │ │ │ │ ├── depthwise_conv.cc │ │ │ │ │ ├── depthwise_conv.h │ │ │ │ │ ├── depthwise_conv_test.mm │ │ │ │ │ ├── elementwise.cc │ │ │ │ │ ├── elementwise.h │ │ │ │ │ ├── elementwise_test.mm │ │ │ │ │ ├── fully_connected.cc │ │ │ │ │ ├── fully_connected.h │ │ │ │ │ ├── fully_connected_test.mm │ │ │ │ │ ├── max_unpooling.cc │ │ │ │ │ ├── max_unpooling.h │ │ │ │ │ ├── max_unpooling_test.mm │ │ │ │ │ ├── mean.cc │ │ │ │ │ ├── mean.h │ │ │ │ │ ├── mean_test.mm │ │ │ │ │ ├── padding.cc │ │ │ │ │ ├── padding.h │ │ │ │ │ ├── padding_test.mm │ │ │ │ │ ├── pooling.cc │ │ │ │ │ ├── pooling.h │ │ │ │ │ ├── pooling_test.mm │ │ │ │ │ ├── prelu.cc │ │ │ │ │ ├── prelu.h │ │ │ │ │ ├── prelu_test.mm │ │ │ │ │ ├── quantize_and_dequantize.cc │ │ │ │ │ ├── quantize_and_dequantize.h │ │ │ │ │ ├── quantize_and_dequantize_test.mm │ │ │ │ │ ├── relu.cc │ │ │ │ │ ├── relu.h │ │ │ │ │ ├── relu_test.mm │ │ │ │ │ ├── reshape.cc │ │ │ │ │ ├── reshape.h │ │ │ │ │ ├── reshape_test.mm │ │ │ │ │ ├── resize.cc │ │ │ │ │ ├── resize.h │ │ │ │ │ ├── resize_test.mm │ │ │ │ │ ├── slice.cc │ │ │ │ │ ├── slice.h │ │ │ │ │ ├── slice_test.mm │ │ │ │ │ ├── softmax.cc │ │ │ │ │ ├── softmax.h │ │ │ │ │ ├── softmax_test.mm │ │ │ │ │ ├── space_to_depth.cc │ │ │ │ │ ├── space_to_depth.h │ │ │ │ │ ├── space_to_depth_test.mm │ │ │ │ │ ├── test_util.h │ │ │ │ │ ├── test_util.mm │ │ │ │ │ ├── transpose_conv.cc │ │ │ │ │ ├── transpose_conv.h │ │ │ │ │ ├── transpose_conv_test.mm │ │ │ │ │ ├── util.cc │ │ │ │ │ ├── util.h │ │ │ │ │ ├── winograd.cc │ │ │ │ │ ├── winograd.h │ │ │ │ │ └── winograd_test.mm │ │ │ │ ├── metal_arguments.h │ │ │ │ ├── metal_arguments.mm │ │ │ │ └── runtime_options.h │ │ │ ├── metal_delegate.h │ │ │ ├── metal_delegate.mm │ │ │ ├── metal_delegate_internal.h │ │ │ └── spi.h │ │ ├── hexagon │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── builders │ │ │ │ ├── BUILD │ │ │ │ ├── activation_builder.cc │ │ │ │ ├── activation_builder.h │ │ │ │ ├── arg_min_max_builder.cc │ │ │ │ ├── arg_min_max_builder.h │ │ │ │ ├── arithmetic_builder.cc │ │ │ │ ├── arithmetic_builder.h │ │ │ │ ├── batch_seq_builder.cc │ │ │ │ ├── batch_seq_builder.h │ │ │ │ ├── cast_builder.cc │ │ │ │ ├── cast_builder.h │ │ │ │ ├── concat_builder.cc │ │ │ │ ├── concat_builder.h │ │ │ │ ├── conv_2d_builder.cc │ │ │ │ ├── conv_2d_builder.h │ │ │ │ ├── conv_2d_helpers.cc │ │ │ │ ├── hardswish_builder.cc │ │ │ │ ├── hardswish_builder.h │ │ │ │ ├── l2_normalization_builder.cc │ │ │ │ ├── l2_normalization_builder.h │ │ │ │ ├── matmul_builder.cc │ │ │ │ ├── matmul_builder.h │ │ │ │ ├── min_max_builder.cc │ │ │ │ ├── min_max_builder.h │ │ │ │ ├── mirror_pad_builder.cc │ │ │ │ ├── mirror_pad_builder.h │ │ │ │ ├── neg_op_builder.cc │ │ │ │ ├── neg_op_builder.h │ │ │ │ ├── op_builder.cc │ │ │ │ ├── op_builder.h │ │ │ │ ├── op_factory.h │ │ │ │ ├── pack_builder.cc │ │ │ │ ├── pack_builder.h │ │ │ │ ├── pad_builder.cc │ │ │ │ ├── pad_builder.h │ │ │ │ ├── pool_2d_builder.cc │ │ │ │ ├── pool_2d_builder.h │ │ │ │ ├── quantize_builder.cc │ │ │ │ ├── quantize_builder.h │ │ │ │ ├── reduce_builder.cc │ │ │ │ ├── reduce_builder.h │ │ │ │ ├── reshape_builder.cc │ │ │ │ ├── reshape_builder.h │ │ │ │ ├── resize_bilinear_builder.cc │ │ │ │ ├── resize_bilinear_builder.h │ │ │ │ ├── resize_nearest_neighbor_builder.cc │ │ │ │ ├── resize_nearest_neighbor_builder.h │ │ │ │ ├── slice_builder.cc │ │ │ │ ├── slice_builder.h │ │ │ │ ├── softmax_builder.cc │ │ │ │ ├── softmax_builder.h │ │ │ │ ├── space_to_depth_builder.cc │ │ │ │ ├── space_to_depth_builder.h │ │ │ │ ├── split_builder.cc │ │ │ │ ├── split_builder.h │ │ │ │ ├── strided_slice_builder.cc │ │ │ │ ├── strided_slice_builder.h │ │ │ │ ├── tests │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── README.md │ │ │ │ │ ├── activations_test.cc │ │ │ │ │ ├── arg_min_max_test.cc │ │ │ │ │ ├── arithmetic_test.cc │ │ │ │ │ ├── batch_seq_config_test.cc │ │ │ │ │ ├── concat_test.cc │ │ │ │ │ ├── conv_test.cc │ │ │ │ │ ├── hexagon_delegate_op_model.h │ │ │ │ │ ├── l2_norm_test.cc │ │ │ │ │ ├── matmul_test.cc │ │ │ │ │ ├── min_max_builder_test.cc │ │ │ │ │ ├── mirror_pad_test.cc │ │ │ │ │ ├── mul_test.cc │ │ │ │ │ ├── neg_test.cc │ │ │ │ │ ├── pack_test.cc │ │ │ │ │ ├── pad_test.cc │ │ │ │ │ ├── pool_test.cc │ │ │ │ │ ├── quantize_test.cc │ │ │ │ │ ├── reduce_test.cc │ │ │ │ │ ├── reshape_test.cc │ │ │ │ │ ├── resize_test.cc │ │ │ │ │ ├── run_tests.sh │ │ │ │ │ ├── slice_test.cc │ │ │ │ │ ├── softmax_test.cc │ │ │ │ │ ├── space_to_depth_test.cc │ │ │ │ │ ├── split_test.cc │ │ │ │ │ ├── strided_slice_test.cc │ │ │ │ │ ├── tests.bzl │ │ │ │ │ ├── transpose_conv_test.cc │ │ │ │ │ └── transpose_test.cc │ │ │ │ ├── transpose_builder.cc │ │ │ │ ├── transpose_builder.h │ │ │ │ ├── transpose_conv_2d_builder.cc │ │ │ │ └── transpose_conv_2d_builder.h │ │ │ ├── hexagon_delegate.cc │ │ │ ├── hexagon_delegate.h │ │ │ ├── hexagon_delegate_kernel.cc │ │ │ ├── hexagon_delegate_kernel.h │ │ │ ├── hexagon_implementation.cc │ │ │ ├── hexagon_implementation.h │ │ │ ├── hexagon_nn │ │ │ │ ├── BUILD │ │ │ │ ├── hexagon_nn.h │ │ │ │ ├── hexagon_nn_init.h │ │ │ │ └── version_scripts.lds │ │ │ ├── hexagon_nn_interface.h │ │ │ ├── java │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── BUILD │ │ │ │ ├── proguard.flags │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ └── lite │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── HexagonDelegate.java │ │ │ │ │ └── native │ │ │ │ │ ├── BUILD │ │ │ │ │ └── hexagon_delegate_jni.cc │ │ │ ├── utils.cc │ │ │ ├── utils.h │ │ │ ├── utils_test.cc │ │ │ └── version_script.lds │ │ ├── interpreter_utils.cc │ │ ├── interpreter_utils.h │ │ ├── nnapi │ │ │ ├── BUILD │ │ │ ├── acceleration_test_list.cc │ │ │ ├── acceleration_test_util.cc │ │ │ ├── acceleration_test_util.h │ │ │ ├── java │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ └── lite │ │ │ │ │ │ └── nnapi │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── NnApiDelegate.java │ │ │ │ │ └── native │ │ │ │ │ ├── BUILD │ │ │ │ │ └── nnapi_delegate_jni.cc │ │ │ ├── nnapi_delegate.cc │ │ │ ├── nnapi_delegate.h │ │ │ ├── nnapi_delegate_device_selection_test.cc │ │ │ ├── nnapi_delegate_disabled.cc │ │ │ ├── nnapi_delegate_errno_test.cc │ │ │ ├── nnapi_delegate_kernel.h │ │ │ ├── nnapi_delegate_mock_test.h │ │ │ ├── nnapi_delegate_signed_quantization_test.cc │ │ │ ├── nnapi_delegate_test.cc │ │ │ ├── quant_lstm_sup.cc │ │ │ ├── quant_lstm_sup.h │ │ │ └── quant_lstm_sup_test.cc │ │ ├── status.h │ │ ├── utils.cc │ │ ├── utils.h │ │ ├── utils │ │ │ ├── BUILD │ │ │ ├── dummy_delegate │ │ │ │ ├── BUILD │ │ │ │ ├── README.md │ │ │ │ ├── dummy_delegate.cc │ │ │ │ ├── dummy_delegate.h │ │ │ │ ├── dummy_delegate_provider.cc │ │ │ │ └── external_delegate_adaptor.cc │ │ │ ├── simple_delegate.cc │ │ │ ├── simple_delegate.h │ │ │ └── simple_delegate_test.cc │ │ ├── utils_test.cc │ │ └── xnnpack │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── abs_test.cc │ │ │ ├── add_test.cc │ │ │ ├── average_pool_2d_test.cc │ │ │ ├── binary_elementwise_tester.cc │ │ │ ├── binary_elementwise_tester.h │ │ │ ├── ceil_test.cc │ │ │ ├── conv_2d_test.cc │ │ │ ├── conv_2d_tester.cc │ │ │ ├── conv_2d_tester.h │ │ │ ├── depthwise_conv_2d_test.cc │ │ │ ├── depthwise_conv_2d_tester.cc │ │ │ ├── depthwise_conv_2d_tester.h │ │ │ ├── div_test.cc │ │ │ ├── floor_test.cc │ │ │ ├── fully_connected_test.cc │ │ │ ├── fully_connected_tester.cc │ │ │ ├── fully_connected_tester.h │ │ │ ├── hard_swish_test.cc │ │ │ ├── leaky_relu_test.cc │ │ │ ├── leaky_relu_tester.cc │ │ │ ├── leaky_relu_tester.h │ │ │ ├── logistic_test.cc │ │ │ ├── max_pool_2d_test.cc │ │ │ ├── maximum_test.cc │ │ │ ├── mean_test.cc │ │ │ ├── minimum_test.cc │ │ │ ├── mul_test.cc │ │ │ ├── neg_test.cc │ │ │ ├── pad_test.cc │ │ │ ├── pad_tester.cc │ │ │ ├── pad_tester.h │ │ │ ├── pool_2d_tester.cc │ │ │ ├── pool_2d_tester.h │ │ │ ├── prelu_test.cc │ │ │ ├── prelu_tester.cc │ │ │ ├── prelu_tester.h │ │ │ ├── reduce_tester.cc │ │ │ ├── reduce_tester.h │ │ │ ├── relu6_test.cc │ │ │ ├── relu_n1_to_1_test.cc │ │ │ ├── relu_test.cc │ │ │ ├── reshape_test.cc │ │ │ ├── reshape_tester.cc │ │ │ ├── reshape_tester.h │ │ │ ├── resize_bilinear_test.cc │ │ │ ├── resize_bilinear_tester.cc │ │ │ ├── resize_bilinear_tester.h │ │ │ ├── round_test.cc │ │ │ ├── softmax_test.cc │ │ │ ├── softmax_tester.cc │ │ │ ├── softmax_tester.h │ │ │ ├── sqrt_test.cc │ │ │ ├── square_test.cc │ │ │ ├── squared_difference_test.cc │ │ │ ├── sub_test.cc │ │ │ ├── unary_elementwise_tester.cc │ │ │ ├── unary_elementwise_tester.h │ │ │ ├── xnnpack_delegate.cc │ │ │ └── xnnpack_delegate.h │ ├── error_reporter.h │ ├── examples │ │ ├── android │ │ │ └── app │ │ │ │ └── README.md │ │ ├── experimental_new_converter │ │ │ ├── BUILD │ │ │ ├── Keras_LSTM_fusion_Codelab.ipynb │ │ │ ├── keras_lstm.ipynb │ │ │ ├── keras_lstm.png │ │ │ └── stack_trace_example.py │ │ ├── ios │ │ │ ├── camera │ │ │ │ ├── .gitignore │ │ │ │ ├── CameraExampleAppDelegate.h │ │ │ │ ├── CameraExampleAppDelegate.m │ │ │ │ ├── CameraExampleViewController.h │ │ │ │ ├── CameraExampleViewController.mm │ │ │ │ ├── Info.plist │ │ │ │ ├── MainStoryboard_iPhone.storyboard │ │ │ │ ├── Podfile │ │ │ │ ├── README.md │ │ │ │ ├── data │ │ │ │ │ └── .gitignore │ │ │ │ └── main.mm │ │ │ ├── download_models.sh │ │ │ └── simple │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.mm │ │ │ │ ├── Podfile │ │ │ │ ├── RunModel-Info.plist │ │ │ │ ├── RunModelViewController.h │ │ │ │ ├── RunModelViewController.mm │ │ │ │ ├── RunModelViewController.xib │ │ │ │ ├── data │ │ │ │ └── grace_hopper.jpg │ │ │ │ ├── ios_image_load.h │ │ │ │ ├── ios_image_load.mm │ │ │ │ └── main.mm │ │ ├── label_image │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── bitmap_helpers.cc │ │ │ ├── bitmap_helpers.h │ │ │ ├── bitmap_helpers_impl.h │ │ │ ├── get_top_n.h │ │ │ ├── get_top_n_impl.h │ │ │ ├── label_image.cc │ │ │ ├── label_image.h │ │ │ ├── label_image_test.cc │ │ │ └── testdata │ │ │ │ └── grace_hopper.bmp │ │ ├── minimal │ │ │ ├── BUILD │ │ │ └── minimal.cc │ │ ├── python │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ └── label_image.py │ │ └── reg_test │ │ │ └── reg_test.cc │ ├── experimental │ │ ├── acceleration │ │ │ ├── README.md │ │ │ ├── compatibility │ │ │ │ ├── BUILD │ │ │ │ ├── README.md │ │ │ │ ├── android_info.cc │ │ │ │ ├── android_info.h │ │ │ │ ├── convert_binary_to_cc_source.py │ │ │ │ ├── database.fbs │ │ │ │ ├── devicedb-sample.json │ │ │ │ ├── devicedb.cc │ │ │ │ ├── devicedb.h │ │ │ │ ├── devicedb_test.cc │ │ │ │ ├── gpu_compatibility.bin │ │ │ │ ├── gpu_compatibility.cc │ │ │ │ ├── gpu_compatibility.h │ │ │ │ ├── gpu_compatibility_test.cc │ │ │ │ ├── json_to_fb.cc │ │ │ │ └── variables.h │ │ │ └── configuration │ │ │ │ ├── BUILD │ │ │ │ ├── configuration.proto │ │ │ │ ├── delegate_registry.cc │ │ │ │ ├── delegate_registry.h │ │ │ │ ├── gpu_plugin.cc │ │ │ │ ├── hexagon_plugin.cc │ │ │ │ ├── nnapi_plugin.cc │ │ │ │ ├── nnapi_plugin_test.cc │ │ │ │ ├── proto_to_flatbuffer.cc │ │ │ │ └── proto_to_flatbuffer.h │ │ ├── c │ │ │ └── README.md │ │ ├── delegates │ │ │ ├── coreml │ │ │ │ ├── README.md │ │ │ │ ├── builders │ │ │ │ │ ├── activation_layer_builder.cc │ │ │ │ │ ├── activation_layer_builder.h │ │ │ │ │ ├── add_op_builder.cc │ │ │ │ │ ├── add_op_builder.h │ │ │ │ │ ├── concatenation_op_builder.cc │ │ │ │ │ ├── concatenation_op_builder.h │ │ │ │ │ ├── convolution_op_builder.cc │ │ │ │ │ ├── convolution_op_builder.h │ │ │ │ │ ├── dummy_op_builder.cc │ │ │ │ │ ├── dummy_op_builder.h │ │ │ │ │ ├── fully_connected_op_builder.cc │ │ │ │ │ ├── fully_connected_op_builder.h │ │ │ │ │ ├── hardswish_op_builder.cc │ │ │ │ │ ├── hardswish_op_builder.h │ │ │ │ │ ├── mul_op_builder.cc │ │ │ │ │ ├── mul_op_builder.h │ │ │ │ │ ├── op_builder.cc │ │ │ │ │ ├── op_builder.h │ │ │ │ │ ├── op_factory.h │ │ │ │ │ ├── op_validator.h │ │ │ │ │ ├── pad_op_builder.cc │ │ │ │ │ ├── pad_op_builder.h │ │ │ │ │ ├── pooling_layer_builder.cc │ │ │ │ │ ├── pooling_layer_builder.h │ │ │ │ │ ├── reshape_op_builder.cc │ │ │ │ │ ├── reshape_op_builder.h │ │ │ │ │ ├── resize_bilinear_op_builder.cc │ │ │ │ │ ├── resize_bilinear_op_builder.h │ │ │ │ │ ├── softmax_op_builder.cc │ │ │ │ │ ├── softmax_op_builder.h │ │ │ │ │ ├── test_util.h │ │ │ │ │ ├── test_util.mm │ │ │ │ │ ├── threshold_layer_builder.cc │ │ │ │ │ ├── threshold_layer_builder.h │ │ │ │ │ ├── util.cc │ │ │ │ │ ├── util.h │ │ │ │ │ └── util_test.cc │ │ │ │ ├── coreml_delegate.h │ │ │ │ ├── coreml_delegate.mm │ │ │ │ ├── coreml_delegate_kernel.h │ │ │ │ ├── coreml_delegate_kernel.mm │ │ │ │ ├── coreml_executor.h │ │ │ │ └── coreml_executor.mm │ │ │ └── testdata │ │ │ │ ├── BUILD │ │ │ │ └── README.txt │ │ ├── examples │ │ │ ├── lstm │ │ │ │ ├── BUILD │ │ │ │ ├── TensorFlowLite_LSTM_Keras_Tutorial.ipynb │ │ │ │ ├── bidirectional_sequence_lstm_test.py │ │ │ │ ├── bidirectional_sequence_rnn_test.py │ │ │ │ ├── g3doc │ │ │ │ │ ├── README.md │ │ │ │ │ └── images │ │ │ │ │ │ ├── exported_tflite_model.png │ │ │ │ │ │ ├── op_hint.png │ │ │ │ │ │ ├── tf_lstm.png │ │ │ │ │ │ └── tflite_lstm.png │ │ │ │ ├── input_data.py │ │ │ │ ├── rnn.py │ │ │ │ ├── rnn_cell.py │ │ │ │ ├── unidirectional_sequence_lstm_test.py │ │ │ │ └── unidirectional_sequence_rnn_test.py │ │ │ └── unity │ │ │ │ └── TensorFlowLitePlugin │ │ │ │ ├── .gitignore │ │ │ │ ├── Assets │ │ │ │ ├── TensorFlowLite.meta │ │ │ │ └── TensorFlowLite │ │ │ │ │ ├── Examples.meta │ │ │ │ │ ├── Examples │ │ │ │ │ ├── HelloTFLite.meta │ │ │ │ │ └── HelloTFLite │ │ │ │ │ │ ├── Scenes.meta │ │ │ │ │ │ ├── Scenes │ │ │ │ │ │ ├── HelloTFLite.unity │ │ │ │ │ │ ├── HelloTFLite.unity.meta │ │ │ │ │ │ ├── add.bytes │ │ │ │ │ │ └── add.bytes.meta │ │ │ │ │ │ ├── Scripts.meta │ │ │ │ │ │ └── Scripts │ │ │ │ │ │ ├── HelloTFLite.cs │ │ │ │ │ │ └── HelloTFLite.cs.meta │ │ │ │ │ ├── SDK.meta │ │ │ │ │ └── SDK │ │ │ │ │ ├── Scripts.meta │ │ │ │ │ └── Scripts │ │ │ │ │ ├── Interpreter.cs │ │ │ │ │ └── Interpreter.cs.meta │ │ │ │ ├── ProjectSettings │ │ │ │ ├── AudioManager.asset │ │ │ │ ├── ClusterInputManager.asset │ │ │ │ ├── DynamicsManager.asset │ │ │ │ ├── EditorBuildSettings.asset │ │ │ │ ├── EditorSettings.asset │ │ │ │ ├── GraphicsSettings.asset │ │ │ │ ├── InputManager.asset │ │ │ │ ├── NavMeshAreas.asset │ │ │ │ ├── NetworkManager.asset │ │ │ │ ├── Physics2DSettings.asset │ │ │ │ ├── ProjectSettings.asset │ │ │ │ ├── ProjectVersion.txt │ │ │ │ ├── QualitySettings.asset │ │ │ │ ├── TagManager.asset │ │ │ │ ├── TimeManager.asset │ │ │ │ └── UnityConnectSettings.asset │ │ │ │ ├── README.md │ │ │ │ └── UnityPackageManager │ │ │ │ └── manifest.json │ │ ├── ios │ │ │ ├── BUILD.apple │ │ │ ├── TensorFlowLiteC.md │ │ │ ├── TensorFlowLiteC.podspec │ │ │ ├── TensorFlowLiteC.podspec.template │ │ │ ├── TensorFlowLiteSelectTfOps.md │ │ │ ├── TensorFlowLiteSelectTfOps.podspec │ │ │ ├── TensorFlowLiteSelectTfOps.podspec.template │ │ │ ├── allowlist_TensorFlowLiteC.txt │ │ │ ├── allowlist_TensorFlowLiteCCoreML.txt │ │ │ ├── allowlist_TensorFlowLiteCMetal.txt │ │ │ ├── hide_symbols_with_allowlist.sh │ │ │ └── ios.bzl │ │ ├── kernels │ │ │ ├── BUILD │ │ │ ├── ctc_beam_entry.h │ │ │ ├── ctc_beam_scorer.h │ │ │ ├── ctc_beam_search.h │ │ │ ├── ctc_beam_search_decoder.cc │ │ │ ├── ctc_beam_search_decoder_test.cc │ │ │ ├── ctc_decoder.h │ │ │ ├── ctc_loss_util.h │ │ │ ├── gru_cell.cc │ │ │ ├── gru_cell.h │ │ │ ├── top_n.h │ │ │ ├── unidirectional_sequence_gru.cc │ │ │ └── unidirectional_sequence_gru_test.cc │ │ ├── microfrontend │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── audio_microfrontend.cc │ │ │ ├── audio_microfrontend.h │ │ │ ├── audio_microfrontend_test.cc │ │ │ ├── lib │ │ │ │ ├── BUILD │ │ │ │ ├── README.md │ │ │ │ ├── bits.h │ │ │ │ ├── fft.cc │ │ │ │ ├── fft.h │ │ │ │ ├── fft_io.c │ │ │ │ ├── fft_io.h │ │ │ │ ├── fft_test.cc │ │ │ │ ├── fft_util.cc │ │ │ │ ├── fft_util.h │ │ │ │ ├── filterbank.c │ │ │ │ ├── filterbank.h │ │ │ │ ├── filterbank_io.c │ │ │ │ ├── filterbank_io.h │ │ │ │ ├── filterbank_test.cc │ │ │ │ ├── filterbank_util.c │ │ │ │ ├── filterbank_util.h │ │ │ │ ├── frontend.c │ │ │ │ ├── frontend.h │ │ │ │ ├── frontend_io.c │ │ │ │ ├── frontend_io.h │ │ │ │ ├── frontend_main.c │ │ │ │ ├── frontend_memmap_generator.c │ │ │ │ ├── frontend_memmap_main.c │ │ │ │ ├── frontend_test.cc │ │ │ │ ├── frontend_util.c │ │ │ │ ├── frontend_util.h │ │ │ │ ├── log_lut.c │ │ │ │ ├── log_lut.h │ │ │ │ ├── log_scale.c │ │ │ │ ├── log_scale.h │ │ │ │ ├── log_scale_io.c │ │ │ │ ├── log_scale_io.h │ │ │ │ ├── log_scale_test.cc │ │ │ │ ├── log_scale_util.c │ │ │ │ ├── log_scale_util.h │ │ │ │ ├── noise_reduction.c │ │ │ │ ├── noise_reduction.h │ │ │ │ ├── noise_reduction_io.c │ │ │ │ ├── noise_reduction_io.h │ │ │ │ ├── noise_reduction_test.cc │ │ │ │ ├── noise_reduction_util.c │ │ │ │ ├── noise_reduction_util.h │ │ │ │ ├── pcan_gain_control.c │ │ │ │ ├── pcan_gain_control.h │ │ │ │ ├── pcan_gain_control_test.cc │ │ │ │ ├── pcan_gain_control_util.c │ │ │ │ ├── pcan_gain_control_util.h │ │ │ │ ├── window.c │ │ │ │ ├── window.h │ │ │ │ ├── window_io.c │ │ │ │ ├── window_io.h │ │ │ │ ├── window_test.cc │ │ │ │ ├── window_util.c │ │ │ │ └── window_util.h │ │ │ ├── ops │ │ │ │ └── audio_microfrontend_op.cc │ │ │ └── python │ │ │ │ ├── kernel_tests │ │ │ │ └── audio_microfrontend_op_test.py │ │ │ │ └── ops │ │ │ │ └── audio_microfrontend_op.py │ │ ├── objc │ │ │ ├── BUILD.apple │ │ │ ├── README.md │ │ │ ├── TensorFlowLite.tulsiproj │ │ │ │ ├── Configs │ │ │ │ │ └── TensorFlowLite.tulsigen │ │ │ │ └── project.tulsiconf │ │ │ ├── TensorFlowLiteObjC-nightly.podspec │ │ │ ├── TensorFlowLiteObjC.podspec │ │ │ ├── TensorFlowLiteObjC.podspec.template │ │ │ ├── apis │ │ │ │ ├── TFLCoreMLDelegate.h │ │ │ │ ├── TFLDelegate.h │ │ │ │ ├── TFLInterpreter.h │ │ │ │ ├── TFLInterpreterOptions.h │ │ │ │ ├── TFLMetalDelegate.h │ │ │ │ ├── TFLQuantizationParameters.h │ │ │ │ ├── TFLTensor.h │ │ │ │ └── TFLTensorFlowLite.h │ │ │ ├── apps │ │ │ │ └── TestApp │ │ │ │ │ ├── Podfile │ │ │ │ │ └── TestApp │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ViewController.h │ │ │ │ │ ├── ViewController.m │ │ │ │ │ └── main.m │ │ │ ├── sources │ │ │ │ ├── TFLCoreMLDelegate.m │ │ │ │ ├── TFLDelegate.m │ │ │ │ ├── TFLErrorUtil.h │ │ │ │ ├── TFLErrorUtil.m │ │ │ │ ├── TFLInterpreter+Internal.h │ │ │ │ ├── TFLInterpreter.mm │ │ │ │ ├── TFLInterpreterOptions.m │ │ │ │ ├── TFLMetalDelegate.m │ │ │ │ ├── TFLQuantizationParameters+Internal.h │ │ │ │ ├── TFLQuantizationParameters.m │ │ │ │ ├── TFLTensor+Internal.h │ │ │ │ └── TFLTensor.m │ │ │ └── tests │ │ │ │ ├── TFLCoreMLDelegateTests.m │ │ │ │ ├── TFLInterpreterOptionsTests.m │ │ │ │ ├── TFLInterpreterTests.m │ │ │ │ ├── TFLMetalDelegateTests.m │ │ │ │ └── TFLQuantizationParametersTests.m │ │ ├── resource │ │ │ ├── BUILD │ │ │ ├── lookup_interfaces.h │ │ │ ├── lookup_util.h │ │ │ ├── resource_base.h │ │ │ ├── resource_variable.cc │ │ │ ├── resource_variable.h │ │ │ ├── static_hashtable.cc │ │ │ └── static_hashtable.h │ │ ├── ruy │ │ │ └── LICENSE │ │ ├── support │ │ │ ├── BUILD │ │ │ └── README.md │ │ ├── swift │ │ │ ├── BUILD.apple │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ ├── CoreMLDelegate.swift │ │ │ │ ├── Delegate.swift │ │ │ │ ├── Interpreter.swift │ │ │ │ ├── InterpreterError.swift │ │ │ │ ├── MetalDelegate.swift │ │ │ │ ├── Model.swift │ │ │ │ ├── QuantizationParameters.swift │ │ │ │ ├── Tensor.swift │ │ │ │ └── TensorFlowLite.swift │ │ │ ├── TensorFlowLite.tulsiproj │ │ │ │ ├── Configs │ │ │ │ │ └── TensorFlowLite.tulsigen │ │ │ │ └── project.tulsiconf │ │ │ ├── TensorFlowLiteSwift-nightly.podspec │ │ │ ├── TensorFlowLiteSwift.podspec │ │ │ ├── TensorFlowLiteSwift.podspec.template │ │ │ ├── TestApp │ │ │ │ └── README.md │ │ │ └── Tests │ │ │ │ ├── InterpreterTests.swift │ │ │ │ ├── MetalDelegateTests.swift │ │ │ │ ├── ModelTests.swift │ │ │ │ ├── QuantizationParametersTests.swift │ │ │ │ ├── TensorFlowLiteTests.swift │ │ │ │ └── TensorTests.swift │ │ ├── tensorboard │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── ops_util.py │ │ │ └── ops_util_test.py │ │ ├── tflite_api_dispatcher │ │ │ ├── BUILD │ │ │ └── tflite_api_dispatcher.h │ │ └── writer │ │ │ ├── BUILD │ │ │ ├── enum_mapping.h │ │ │ ├── option_writer_generator.cc │ │ │ ├── writer.cc │ │ │ ├── writer_lib.cc │ │ │ ├── writer_lib.h │ │ │ ├── writer_lib_test.cc │ │ │ └── writer_test.cc │ ├── external_cpu_backend_context.cc │ ├── external_cpu_backend_context.h │ ├── g3doc │ │ ├── _book.yaml │ │ ├── api_docs │ │ │ └── index.md │ │ ├── convert │ │ │ ├── api_updates.md │ │ │ ├── index.md │ │ │ ├── metadata.md │ │ │ ├── operation_fusion.md │ │ │ └── rnn.md │ │ ├── guide │ │ │ ├── android.md │ │ │ ├── build_android.md │ │ │ ├── build_arm64.md │ │ │ ├── build_ios.md │ │ │ ├── build_rpi.md │ │ │ ├── faq.md │ │ │ ├── get_started.md │ │ │ ├── hosted_models.md │ │ │ ├── index.md │ │ │ ├── inference.md │ │ │ ├── ios.md │ │ │ ├── model_maker.md │ │ │ ├── ops_compatibility.md │ │ │ ├── ops_custom.md │ │ │ ├── ops_select.md │ │ │ ├── ops_version.md │ │ │ ├── python.md │ │ │ ├── reduce_binary_size.md │ │ │ └── roadmap.md │ │ ├── images │ │ │ ├── convert │ │ │ │ ├── convert.png │ │ │ │ ├── op_fusion.png │ │ │ │ ├── op_fusion_banner.jpg │ │ │ │ └── workflow.svg │ │ │ ├── ios │ │ │ │ ├── build_and_execute.png │ │ │ │ ├── bundle_identifier.png │ │ │ │ └── device_selection.png │ │ │ ├── landing-page │ │ │ │ ├── ai_in_motion.png │ │ │ │ ├── assistant_logo.png │ │ │ │ ├── detect_crop_disease_in_africa.png │ │ │ │ ├── facial_contour_detection.png │ │ │ │ ├── fishbrain_logo.png │ │ │ │ ├── fishbrain_logo_big.png │ │ │ │ ├── gboard_logo.png │ │ │ │ ├── gmail_logo.png │ │ │ │ ├── loseit_logo.png │ │ │ │ ├── loseit_logo_big.png │ │ │ │ ├── nest_logo.png │ │ │ │ ├── photos_logo.png │ │ │ │ ├── shazam_logo.png │ │ │ │ └── vsco_logo.png │ │ │ └── performance │ │ │ │ ├── accuracy_vs_latency.png │ │ │ │ ├── model_size_vs_accuracy.png │ │ │ │ ├── tflite_delegate_graph_1.png │ │ │ │ └── tflite_delegate_graph_2.png │ │ ├── inference_with_metadata │ │ │ ├── codegen.md │ │ │ ├── lite_support.md │ │ │ ├── overview.md │ │ │ └── task_library │ │ │ │ ├── bert_nl_classifier.md │ │ │ │ ├── bert_question_answerer.md │ │ │ │ ├── customized_task_api.md │ │ │ │ ├── image_classifier.md │ │ │ │ ├── image_segmenter.md │ │ │ │ ├── images │ │ │ │ ├── android_task_api.svg │ │ │ │ ├── detection-output.png │ │ │ │ ├── dogs.jpg │ │ │ │ ├── ios_task_api.svg │ │ │ │ ├── native_task_api.svg │ │ │ │ ├── plane.jpg │ │ │ │ ├── prebuilt_task_apis.svg │ │ │ │ ├── segmentation-output.png │ │ │ │ └── sparrow.jpg │ │ │ │ ├── nl_classifier.md │ │ │ │ ├── object_detector.md │ │ │ │ └── overview.md │ │ ├── microcontrollers │ │ │ ├── build_convert.md │ │ │ ├── get_started.md │ │ │ ├── index.md │ │ │ └── library.md │ │ ├── models │ │ │ ├── bert_qa │ │ │ │ ├── images │ │ │ │ │ └── screenshot.gif │ │ │ │ └── overview.md │ │ │ ├── image_classification │ │ │ │ ├── images │ │ │ │ │ ├── android_banana.png │ │ │ │ │ ├── build_and_execute.png │ │ │ │ │ ├── bundle_identifier.png │ │ │ │ │ ├── device_selection.png │ │ │ │ │ └── dog.png │ │ │ │ └── overview.md │ │ │ ├── images │ │ │ │ ├── audio.png │ │ │ │ ├── blank.png │ │ │ │ ├── camera.png │ │ │ │ ├── detection.png │ │ │ │ ├── image.png │ │ │ │ ├── object.png │ │ │ │ ├── output_stride.png │ │ │ │ ├── pose.png │ │ │ │ ├── segmentation.png │ │ │ │ ├── sentiment.png │ │ │ │ ├── smart_reply.png │ │ │ │ ├── tabular.png │ │ │ │ ├── text.png │ │ │ │ ├── tflite_models.png │ │ │ │ └── video.png │ │ │ ├── object_detection │ │ │ │ ├── images │ │ │ │ │ ├── android_apple_banana.png │ │ │ │ │ └── false_positive.png │ │ │ │ └── overview.md │ │ │ ├── pose_estimation │ │ │ │ └── overview.md │ │ │ ├── recommendation │ │ │ │ ├── images │ │ │ │ │ └── screenshot.gif │ │ │ │ └── overview.md │ │ │ ├── segmentation │ │ │ │ ├── images │ │ │ │ │ └── segmentation.gif │ │ │ │ └── overview.md │ │ │ ├── smart_reply │ │ │ │ ├── images │ │ │ │ │ └── smart_reply.gif │ │ │ │ └── overview.md │ │ │ ├── style_transfer │ │ │ │ └── overview.ipynb │ │ │ └── text_classification │ │ │ │ ├── images │ │ │ │ └── screenshot.gif │ │ │ │ └── overview.md │ │ ├── performance │ │ │ ├── best_practices.md │ │ │ ├── coreml_delegate.md │ │ │ ├── delegates.md │ │ │ ├── gpu.md │ │ │ ├── gpu_advanced.md │ │ │ ├── hexagon_delegate.md │ │ │ ├── images │ │ │ │ ├── android_gpu_demo.gif │ │ │ │ ├── as_select_profiling_mode.png │ │ │ │ ├── as_traces.png │ │ │ │ ├── delegate_runtime.png │ │ │ │ ├── iosdebug.png │ │ │ │ ├── iosmetal.png │ │ │ │ ├── iosrelease.png │ │ │ │ ├── optimization.jpg │ │ │ │ └── perfetto_traces.png │ │ │ ├── implementing_delegate.md │ │ │ ├── measurement.md │ │ │ ├── model_optimization.md │ │ │ ├── nnapi.md │ │ │ ├── post_training_float16_quant.ipynb │ │ │ ├── post_training_integer_quant.ipynb │ │ │ ├── post_training_integer_quant_16x8.ipynb │ │ │ ├── post_training_quant.ipynb │ │ │ ├── post_training_quantization.md │ │ │ └── quantization_spec.md │ │ ├── r1 │ │ │ ├── convert │ │ │ │ ├── cmdline_examples.md │ │ │ │ ├── cmdline_reference.md │ │ │ │ ├── index.md │ │ │ │ └── python_api.md │ │ │ └── images │ │ │ │ └── convert │ │ │ │ ├── sample_after.png │ │ │ │ ├── sample_before.png │ │ │ │ └── workflow.svg │ │ ├── tf_docs_reviews.gwsq │ │ ├── tools │ │ │ ├── BUILD │ │ │ ├── build_java_api_docs.py │ │ │ └── build_py_api_docs.py │ │ └── tutorials │ │ │ ├── _index.yaml │ │ │ ├── model_maker_image_classification.ipynb │ │ │ ├── model_maker_question_answer.ipynb │ │ │ └── model_maker_text_classification.ipynb │ ├── graph_info.cc │ ├── graph_info.h │ ├── graph_info_test.cc │ ├── interpreter.cc │ ├── interpreter.h │ ├── interpreter_builder.cc │ ├── interpreter_builder.h │ ├── interpreter_test.cc │ ├── java │ │ ├── AndroidManifest.xml │ │ ├── BUILD │ │ ├── aar_with_jni.bzl │ │ ├── build_aar_for_release.sh │ │ ├── demo │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── assets │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── labels_imagenet_slim.txt │ │ │ │ │ └── labels_mobilenet_quant_v1_224.txt │ │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── android │ │ │ │ │ │ └── tflitecamerademo │ │ │ │ │ │ ├── AutoFitTextureView.java │ │ │ │ │ │ ├── Camera2BasicFragment.java │ │ │ │ │ │ ├── CameraActivity.java │ │ │ │ │ │ ├── ImageClassifier.java │ │ │ │ │ │ ├── ImageClassifierFloatInception.java │ │ │ │ │ │ ├── ImageClassifierFloatMobileNet.java │ │ │ │ │ │ └── ImageClassifierQuantizedMobileNet.java │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── ic_action_info.png │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── tile.9.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ ├── ic_action_info.png │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── ic_action_info.png │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ ├── ic_action_info.png │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable │ │ │ │ │ └── item_selector.xml │ │ │ │ │ ├── layout-land │ │ │ │ │ └── fragment_camera2_basic.xml │ │ │ │ │ ├── layout-v26 │ │ │ │ │ └── fragment_camera2_basic.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── activity_camera.xml │ │ │ │ │ ├── fragment_camera2_basic.xml │ │ │ │ │ └── listview_row.xml │ │ │ │ │ ├── values-sw600dp │ │ │ │ │ ├── template-dimens.xml │ │ │ │ │ └── template-styles.xml │ │ │ │ │ ├── values-v11 │ │ │ │ │ └── template-styles.xml │ │ │ │ │ ├── values-v21 │ │ │ │ │ ├── base-colors.xml │ │ │ │ │ └── base-template-styles.xml │ │ │ │ │ └── values │ │ │ │ │ ├── base-strings.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ ├── styles.xml │ │ │ │ │ ├── template-dimens.xml │ │ │ │ │ └── template-styles.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ ├── gpu_version_script.lds │ │ ├── jni │ │ │ └── BUILD │ │ ├── ovic │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── Winner_OSS_Template.md │ │ │ ├── demo │ │ │ │ ├── app │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OvicBenchmarkerActivity.java │ │ │ │ │ ├── build.gradle │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── start_button_color.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ └── strings.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ ├── gradlew │ │ │ │ ├── gradlew.bat │ │ │ │ └── settings.gradle │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── tensorflow │ │ │ │ │ └── ovic │ │ │ │ │ ├── BoundingBox.java │ │ │ │ │ ├── OvicBenchmarker.java │ │ │ │ │ ├── OvicClassificationResult.java │ │ │ │ │ ├── OvicClassifier.java │ │ │ │ │ ├── OvicClassifierBenchmarker.java │ │ │ │ │ ├── OvicDetectionResult.java │ │ │ │ │ ├── OvicDetector.java │ │ │ │ │ ├── OvicDetectorBenchmarker.java │ │ │ │ │ └── OvicValidator.java │ │ │ │ ├── test │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── tensorflow │ │ │ │ │ └── ovic │ │ │ │ │ ├── OvicClassifierTest.java │ │ │ │ │ └── OvicDetectorTest.java │ │ │ │ └── testdata │ │ │ │ ├── BUILD │ │ │ │ ├── coco_labels.txt │ │ │ │ └── labels.txt │ │ ├── proguard.flags │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ └── lite │ │ │ │ │ │ ├── DataType.java │ │ │ │ │ │ ├── Delegate.java │ │ │ │ │ │ ├── Interpreter.java │ │ │ │ │ │ ├── NativeInterpreterWrapper.java │ │ │ │ │ │ ├── Tensor.java │ │ │ │ │ │ ├── TensorFlowLite.java │ │ │ │ │ │ ├── annotations │ │ │ │ │ │ └── UsedByReflection.java │ │ │ │ │ │ └── package-info.java │ │ │ │ └── native │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── builtin_ops_jni.cc │ │ │ │ │ ├── exported_symbols.lds │ │ │ │ │ ├── jni_utils.cc │ │ │ │ │ ├── jni_utils.h │ │ │ │ │ ├── nativeinterpreterwrapper_jni.cc │ │ │ │ │ ├── op_resolver.h │ │ │ │ │ ├── selected_ops_jni.cc │ │ │ │ │ ├── tensor_jni.cc │ │ │ │ │ ├── tensorflow_lite_jni.cc │ │ │ │ │ └── version_script.lds │ │ │ ├── test │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ └── lite │ │ │ │ │ │ ├── DataTypeTest.java │ │ │ │ │ │ ├── InterpreterCustomizedAndroidBuildTest.java │ │ │ │ │ │ ├── InterpreterFlexTest.java │ │ │ │ │ │ ├── InterpreterMobileNetTest.java │ │ │ │ │ │ ├── InterpreterTest.java │ │ │ │ │ │ ├── InterpreterTestHelper.java │ │ │ │ │ │ ├── NativeInterpreterWrapperTest.java │ │ │ │ │ │ ├── TensorFlowLiteInvalidNativeLibTest.java │ │ │ │ │ │ ├── TensorFlowLiteNoNativeLibTest.java │ │ │ │ │ │ ├── TensorFlowLiteTest.java │ │ │ │ │ │ ├── TensorTest.java │ │ │ │ │ │ ├── TestUtils.java │ │ │ │ │ │ ├── gpu │ │ │ │ │ │ ├── CompatibilityListTest.java │ │ │ │ │ │ └── GpuDelegateTest.java │ │ │ │ │ │ └── nnapi │ │ │ │ │ │ └── NnApiDelegateTest.java │ │ │ │ └── native │ │ │ │ │ ├── BUILD │ │ │ │ │ └── interpreter_test_jni.cc │ │ │ ├── testdata │ │ │ │ ├── add.bin │ │ │ │ ├── add_unknown_dimensions.bin │ │ │ │ ├── float32.bin │ │ │ │ ├── grace_hopper_224.jpg │ │ │ │ ├── int32.bin │ │ │ │ ├── int64.bin │ │ │ │ ├── invalid_model.bin │ │ │ │ ├── quantized.bin │ │ │ │ ├── string.bin │ │ │ │ ├── string_scalar.bin │ │ │ │ ├── tile_with_bool_input.bin │ │ │ │ ├── uint8.bin │ │ │ │ └── with_custom_op.lite │ │ │ └── testhelper │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── tensorflow │ │ │ │ └── lite │ │ │ │ ├── BUILD │ │ │ │ └── TestHelper.java │ │ └── tflite_version_script.lds │ ├── kernels │ │ ├── BUILD │ │ ├── acceleration_test_util.cc │ │ ├── acceleration_test_util.h │ │ ├── acceleration_test_util_internal.cc │ │ ├── acceleration_test_util_internal.h │ │ ├── acceleration_test_util_internal_test.cc │ │ ├── activations.cc │ │ ├── activations_test.cc │ │ ├── add.cc │ │ ├── add_n.cc │ │ ├── add_n_test.cc │ │ ├── add_test.cc │ │ ├── arg_min_max.cc │ │ ├── arg_min_max_test.cc │ │ ├── assign_variable.cc │ │ ├── audio_spectrogram.cc │ │ ├── audio_spectrogram_test.cc │ │ ├── basic_rnn.cc │ │ ├── basic_rnn_test.cc │ │ ├── batch_matmul.cc │ │ ├── batch_matmul_test.cc │ │ ├── batch_to_space_nd.cc │ │ ├── batch_to_space_nd_test.cc │ │ ├── bidirectional_sequence_lstm.cc │ │ ├── bidirectional_sequence_lstm_test.cc │ │ ├── bidirectional_sequence_rnn.cc │ │ ├── bidirectional_sequence_rnn_test.cc │ │ ├── builtin_op_kernels.h │ │ ├── cast.cc │ │ ├── cast_test.cc │ │ ├── ceil.cc │ │ ├── ceil_test.cc │ │ ├── comparisons.cc │ │ ├── comparisons_test.cc │ │ ├── complex_support.cc │ │ ├── complex_support_test.cc │ │ ├── concatenation.cc │ │ ├── concatenation_test.cc │ │ ├── conv.cc │ │ ├── conv_test.cc │ │ ├── cpu_backend_context.cc │ │ ├── cpu_backend_context.h │ │ ├── cpu_backend_gemm.h │ │ ├── cpu_backend_gemm_custom_gemv.h │ │ ├── cpu_backend_gemm_eigen.cc │ │ ├── cpu_backend_gemm_eigen.h │ │ ├── cpu_backend_gemm_gemmlowp.h │ │ ├── cpu_backend_gemm_params.h │ │ ├── cpu_backend_gemm_ruy.h │ │ ├── cpu_backend_gemm_test.cc │ │ ├── cpu_backend_gemm_x86.h │ │ ├── cpu_backend_threadpool.h │ │ ├── cpu_backend_threadpool_test.cc │ │ ├── cumsum.cc │ │ ├── cumsum_test.cc │ │ ├── custom_ctc_decoder.cc │ │ ├── custom_ops_register.h │ │ ├── densify.cc │ │ ├── densify_test.cc │ │ ├── depth_to_space.cc │ │ ├── depth_to_space_test.cc │ │ ├── depthwise_conv.cc │ │ ├── depthwise_conv_hybrid_test.cc │ │ ├── depthwise_conv_test.cc │ │ ├── dequantize.cc │ │ ├── dequantize.h │ │ ├── dequantize_test.cc │ │ ├── detection_postprocess.cc │ │ ├── detection_postprocess_test.cc │ │ ├── div.cc │ │ ├── div_test.cc │ │ ├── eigen_support.cc │ │ ├── eigen_support.h │ │ ├── eigen_support_test.cc │ │ ├── elementwise.cc │ │ ├── elementwise_test.cc │ │ ├── embedding_lookup.cc │ │ ├── embedding_lookup_sparse.cc │ │ ├── embedding_lookup_sparse_test.cc │ │ ├── embedding_lookup_test.cc │ │ ├── exp.cc │ │ ├── exp_test.cc │ │ ├── expand_dims.cc │ │ ├── expand_dims_test.cc │ │ ├── fake_quant.cc │ │ ├── fake_quant_test.cc │ │ ├── fill.cc │ │ ├── fill_test.cc │ │ ├── floor.cc │ │ ├── floor_div.cc │ │ ├── floor_div_test.cc │ │ ├── floor_mod.cc │ │ ├── floor_mod_test.cc │ │ ├── floor_test.cc │ │ ├── fully_connected.cc │ │ ├── fully_connected.h │ │ ├── fully_connected_test.cc │ │ ├── gather.cc │ │ ├── gather_nd.cc │ │ ├── gather_nd_test.cc │ │ ├── gather_test.cc │ │ ├── hashtable │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── hashtable.cc │ │ │ ├── hashtable_find.cc │ │ │ ├── hashtable_import.cc │ │ │ ├── hashtable_ops.cc │ │ │ ├── hashtable_ops.h │ │ │ ├── hashtable_ops_test.cc │ │ │ └── hashtable_size.cc │ │ ├── hashtable_lookup.cc │ │ ├── hashtable_lookup_test.cc │ │ ├── if.cc │ │ ├── if_test.cc │ │ ├── internal │ │ │ ├── BUILD │ │ │ ├── averagepool_quantized_test.cc │ │ │ ├── batch_to_space_nd_test.cc │ │ │ ├── common.h │ │ │ ├── compatibility.h │ │ │ ├── conv_per_channel_quantized_16x8_test.cc │ │ │ ├── cppmath.h │ │ │ ├── depthwiseconv_float_test.cc │ │ │ ├── depthwiseconv_per_channel_quantized_16x8_test.cc │ │ │ ├── depthwiseconv_per_channel_quantized_test.cc │ │ │ ├── depthwiseconv_quantized_test.cc │ │ │ ├── kernel_utils.cc │ │ │ ├── kernel_utils.h │ │ │ ├── legacy_types.h │ │ │ ├── log_quantized_test.cc │ │ │ ├── logsoftmax_quantized_test.cc │ │ │ ├── max.h │ │ │ ├── maxpool_quantized_test.cc │ │ │ ├── mfcc.cc │ │ │ ├── mfcc.h │ │ │ ├── mfcc_dct.cc │ │ │ ├── mfcc_dct.h │ │ │ ├── mfcc_mel_filterbank.cc │ │ │ ├── mfcc_mel_filterbank.h │ │ │ ├── min.h │ │ │ ├── non_max_suppression_test.cc │ │ │ ├── optimized │ │ │ │ ├── batch_matmul.h │ │ │ │ ├── cpu_check.cc │ │ │ │ ├── cpu_check.h │ │ │ │ ├── depthwiseconv_3x3_filter_common.h │ │ │ │ ├── depthwiseconv_float.h │ │ │ │ ├── depthwiseconv_multithread.h │ │ │ │ ├── depthwiseconv_uint8.h │ │ │ │ ├── depthwiseconv_uint8_3x3_filter.h │ │ │ │ ├── depthwiseconv_uint8_transitional.h │ │ │ │ ├── eigen_spatial_convolutions.h │ │ │ │ ├── eigen_tensor_reduced_instantiations_google.h │ │ │ │ ├── eigen_tensor_reduced_instantiations_oss.h │ │ │ │ ├── im2col_utils.h │ │ │ │ ├── integer_ops │ │ │ │ │ ├── README.md │ │ │ │ │ ├── add.h │ │ │ │ │ ├── conv.h │ │ │ │ │ ├── depthwise_conv.h │ │ │ │ │ ├── depthwise_conv_3x3_filter.h │ │ │ │ │ ├── depthwise_conv_hybrid.h │ │ │ │ │ ├── depthwise_conv_hybrid_3x3_filter.h │ │ │ │ │ ├── fully_connected.h │ │ │ │ │ ├── mean.h │ │ │ │ │ ├── mul.h │ │ │ │ │ ├── pooling.h │ │ │ │ │ └── transpose_conv.h │ │ │ │ ├── legacy_optimized_ops.h │ │ │ │ ├── multithreaded_conv.h │ │ │ │ ├── neon_check.h │ │ │ │ ├── neon_tensor_utils.cc │ │ │ │ ├── neon_tensor_utils.h │ │ │ │ ├── neon_tensor_utils_impl.h │ │ │ │ ├── optimized_ops.h │ │ │ │ ├── sparse_ops │ │ │ │ │ └── fully_connected.h │ │ │ │ ├── sse_check.h │ │ │ │ ├── sse_tensor_utils.cc │ │ │ │ ├── sse_tensor_utils.h │ │ │ │ └── sse_tensor_utils_impl.h │ │ │ ├── per_channel_dequantize_test.cc │ │ │ ├── portable_tensor.h │ │ │ ├── quantization_util.cc │ │ │ ├── quantization_util.h │ │ │ ├── quantization_util_test.cc │ │ │ ├── reference │ │ │ │ ├── add.h │ │ │ │ ├── arg_min_max.h │ │ │ │ ├── batch_matmul.h │ │ │ │ ├── binary_function.h │ │ │ │ ├── ceil.h │ │ │ │ ├── comparisons.h │ │ │ │ ├── concatenation.h │ │ │ │ ├── conv.h │ │ │ │ ├── densify.h │ │ │ │ ├── depthwiseconv_float.h │ │ │ │ ├── depthwiseconv_uint8.h │ │ │ │ ├── dequantize.h │ │ │ │ ├── floor.h │ │ │ │ ├── fully_connected.h │ │ │ │ ├── hard_swish.h │ │ │ │ ├── integer_ops │ │ │ │ │ ├── README.md │ │ │ │ │ ├── add.h │ │ │ │ │ ├── conv.h │ │ │ │ │ ├── depthwise_conv.h │ │ │ │ │ ├── dequantize.h │ │ │ │ │ ├── fully_connected.h │ │ │ │ │ ├── l2normalization.h │ │ │ │ │ ├── log_softmax.h │ │ │ │ │ ├── logistic.h │ │ │ │ │ ├── mean.h │ │ │ │ │ ├── mul.h │ │ │ │ │ ├── pooling.h │ │ │ │ │ ├── tanh.h │ │ │ │ │ └── transpose_conv.h │ │ │ │ ├── l2normalization.h │ │ │ │ ├── legacy_reference_ops.h │ │ │ │ ├── logistic.h │ │ │ │ ├── maximum_minimum.h │ │ │ │ ├── mul.h │ │ │ │ ├── neg.h │ │ │ │ ├── non_max_suppression.h │ │ │ │ ├── pad.h │ │ │ │ ├── pooling.h │ │ │ │ ├── portable_tensor_utils.cc │ │ │ │ ├── portable_tensor_utils.h │ │ │ │ ├── portable_tensor_utils_impl.h │ │ │ │ ├── prelu.h │ │ │ │ ├── process_broadcast_shapes.h │ │ │ │ ├── quantize.h │ │ │ │ ├── reduce.h │ │ │ │ ├── reference_ops.h │ │ │ │ ├── requantize.h │ │ │ │ ├── resize_nearest_neighbor.h │ │ │ │ ├── round.h │ │ │ │ ├── softmax.h │ │ │ │ ├── sparse_ops │ │ │ │ │ └── fully_connected.h │ │ │ │ ├── strided_slice.h │ │ │ │ ├── string_comparisons.h │ │ │ │ ├── sub.h │ │ │ │ ├── svdf.h │ │ │ │ └── tanh.h │ │ │ ├── resize_bilinear_test.cc │ │ │ ├── resize_nearest_neighbor_test.cc │ │ │ ├── softmax_quantized_test.cc │ │ │ ├── spectrogram.cc │ │ │ ├── spectrogram.h │ │ │ ├── strided_slice_logic.h │ │ │ ├── strided_slice_logic_test.cc │ │ │ ├── tensor.h │ │ │ ├── tensor_ctypes.h │ │ │ ├── tensor_test.cc │ │ │ ├── tensor_utils.cc │ │ │ ├── tensor_utils.h │ │ │ ├── tensor_utils_test.cc │ │ │ ├── test_util.cc │ │ │ ├── test_util.h │ │ │ ├── transpose_utils.cc │ │ │ ├── transpose_utils.h │ │ │ ├── transpose_utils_test.cc │ │ │ └── types.h │ │ ├── kernel_util.cc │ │ ├── kernel_util.h │ │ ├── kernel_util_test.cc │ │ ├── l2norm.cc │ │ ├── l2norm_test.cc │ │ ├── local_response_norm.cc │ │ ├── local_response_norm_test.cc │ │ ├── log_softmax_test.cc │ │ ├── logical.cc │ │ ├── logical_test.cc │ │ ├── lsh_projection.cc │ │ ├── lsh_projection_test.cc │ │ ├── lstm.cc │ │ ├── lstm_eval.cc │ │ ├── lstm_eval.h │ │ ├── lstm_eval_test.cc │ │ ├── lstm_shared.h │ │ ├── lstm_test.cc │ │ ├── matrix_diag.cc │ │ ├── matrix_diag_test.cc │ │ ├── matrix_set_diag.cc │ │ ├── matrix_set_diag_test.cc │ │ ├── maximum_minimum.cc │ │ ├── maximum_minimum_test.cc │ │ ├── mfcc.cc │ │ ├── mfcc_test.cc │ │ ├── mirror_pad.cc │ │ ├── mirror_pad_test.cc │ │ ├── mul.cc │ │ ├── mul_test.cc │ │ ├── multinomial.cc │ │ ├── multinomial_test.cc │ │ ├── neg.cc │ │ ├── neg_test.cc │ │ ├── non_max_suppression.cc │ │ ├── non_max_suppression_test.cc │ │ ├── numeric_verify.cc │ │ ├── numeric_verify_test.cc │ │ ├── one_hot.cc │ │ ├── one_hot_test.cc │ │ ├── op_macros.h │ │ ├── optional_tensor_test.cc │ │ ├── pack.cc │ │ ├── pack_test.cc │ │ ├── pad.cc │ │ ├── pad_test.cc │ │ ├── padding.h │ │ ├── pooling.cc │ │ ├── pooling_test.cc │ │ ├── pow.cc │ │ ├── pow_test.cc │ │ ├── quant_basic_lstm_test.cc │ │ ├── quantize.cc │ │ ├── quantize_test.cc │ │ ├── random_standard_normal.cc │ │ ├── random_standard_normal_test.cc │ │ ├── range.cc │ │ ├── range_test.cc │ │ ├── rank.cc │ │ ├── rank_test.cc │ │ ├── read_variable.cc │ │ ├── reduce.cc │ │ ├── reduce_test.cc │ │ ├── register.cc │ │ ├── register.h │ │ ├── register_ref.cc │ │ ├── register_ref.h │ │ ├── reshape.cc │ │ ├── reshape_test.cc │ │ ├── reshape_test_common.h │ │ ├── resize_bilinear.cc │ │ ├── resize_bilinear_test.cc │ │ ├── resize_nearest_neighbor.cc │ │ ├── resize_nearest_neighbor_test.cc │ │ ├── reverse.cc │ │ ├── reverse_sequence.cc │ │ ├── reverse_sequence_test.cc │ │ ├── reverse_test.cc │ │ ├── rfft2d.cc │ │ ├── rfft2d_test.cc │ │ ├── round.cc │ │ ├── round_test.cc │ │ ├── scatter_nd.cc │ │ ├── scatter_nd_test.cc │ │ ├── segment_sum.cc │ │ ├── segment_sum_test.cc │ │ ├── select.cc │ │ ├── select_test.cc │ │ ├── shape.cc │ │ ├── shape_test.cc │ │ ├── skip_gram.cc │ │ ├── skip_gram_test.cc │ │ ├── slice.cc │ │ ├── slice_test.cc │ │ ├── softmax_test.cc │ │ ├── space_to_batch_nd.cc │ │ ├── space_to_batch_nd_test.cc │ │ ├── space_to_depth.cc │ │ ├── space_to_depth_test.cc │ │ ├── sparse_to_dense.cc │ │ ├── sparse_to_dense_test.cc │ │ ├── split.cc │ │ ├── split_test.cc │ │ ├── split_v.cc │ │ ├── split_v_test.cc │ │ ├── squared_difference.cc │ │ ├── squared_difference_test.cc │ │ ├── squeeze.cc │ │ ├── squeeze_test.cc │ │ ├── strided_slice.cc │ │ ├── strided_slice_test.cc │ │ ├── sub.cc │ │ ├── sub_test.cc │ │ ├── subgraph_test_util.cc │ │ ├── subgraph_test_util.h │ │ ├── subgraph_test_util_test.cc │ │ ├── svdf.cc │ │ ├── svdf_test.cc │ │ ├── test_delegate_providers.cc │ │ ├── test_delegate_providers.h │ │ ├── test_delegate_providers_test.cc │ │ ├── test_main.cc │ │ ├── test_util.cc │ │ ├── test_util.h │ │ ├── test_util_test.cc │ │ ├── tile.cc │ │ ├── tile_test.cc │ │ ├── topk_v2.cc │ │ ├── topk_v2_test.cc │ │ ├── transpose.cc │ │ ├── transpose_conv.cc │ │ ├── transpose_conv_test.cc │ │ ├── transpose_test.cc │ │ ├── unidirectional_sequence_lstm.cc │ │ ├── unidirectional_sequence_lstm_test.cc │ │ ├── unidirectional_sequence_rnn.cc │ │ ├── unidirectional_sequence_rnn_test.cc │ │ ├── unique.cc │ │ ├── unique_test.cc │ │ ├── unpack.cc │ │ ├── unpack_test.cc │ │ ├── variable_ops_test.cc │ │ ├── where.cc │ │ ├── where_test.cc │ │ ├── while.cc │ │ ├── while_test.cc │ │ ├── zeros_like.cc │ │ └── zeros_like_test.cc │ ├── lib_package │ │ ├── BUILD │ │ └── concat_licenses.sh │ ├── memory_planner.h │ ├── micro │ │ ├── BUILD │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── all_ops_resolver.cc │ │ ├── all_ops_resolver.h │ │ ├── apollo3evb │ │ │ ├── debug_log.cc │ │ │ └── micro_time.cc │ │ ├── arc_emsdp │ │ │ └── debug_log.cc │ │ ├── arduino │ │ │ ├── abi.cc │ │ │ └── debug_log.cc │ │ ├── benchmarks │ │ │ ├── BUILD │ │ │ ├── Makefile.inc │ │ │ ├── README.md │ │ │ ├── keyword_benchmark.cc │ │ │ ├── keyword_scrambled_model_data.cc │ │ │ ├── keyword_scrambled_model_data.h │ │ │ ├── micro_benchmark.h │ │ │ ├── person_detection_benchmark.cc │ │ │ └── person_detection_experimental_benchmark.cc │ │ ├── bluepill │ │ │ └── debug_log.cc │ │ ├── build_def.bzl │ │ ├── chre │ │ │ └── debug_log.cc │ │ ├── compatibility.h │ │ ├── cortex_m_generic │ │ │ ├── README.md │ │ │ ├── debug_log.cc │ │ │ └── debug_log_callback.h │ │ ├── debug_log.cc │ │ ├── debug_log.h │ │ ├── docs │ │ │ ├── memory_management.md │ │ │ └── new_platform_support.md │ │ ├── ecm3531 │ │ │ └── debug_log.cc │ │ ├── examples │ │ │ ├── hello_world │ │ │ │ ├── BUILD │ │ │ │ ├── Makefile.inc │ │ │ │ ├── README.md │ │ │ │ ├── arduino │ │ │ │ │ ├── constants.cc │ │ │ │ │ ├── main.cc │ │ │ │ │ └── output_handler.cc │ │ │ │ ├── constants.cc │ │ │ │ ├── constants.h │ │ │ │ ├── create_sine_model.ipynb │ │ │ │ ├── disco_f746ng │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── constants.cc │ │ │ │ │ └── output_handler.cc │ │ │ │ ├── esp │ │ │ │ │ └── main.cc │ │ │ │ ├── hello_world_binary_test.sh │ │ │ │ ├── hello_world_test.cc │ │ │ │ ├── images │ │ │ │ │ ├── animation_on_STM32F746.gif │ │ │ │ │ ├── animation_on_arduino_mkrzero.gif │ │ │ │ │ ├── animation_on_sparkfun_edge.gif │ │ │ │ │ └── model_architecture.png │ │ │ │ ├── main.cc │ │ │ │ ├── main_functions.cc │ │ │ │ ├── main_functions.h │ │ │ │ ├── model.cc │ │ │ │ ├── model.h │ │ │ │ ├── output_handler.cc │ │ │ │ ├── output_handler.h │ │ │ │ ├── output_handler_test.cc │ │ │ │ ├── riscv32_mcu │ │ │ │ │ └── Makefile.inc │ │ │ │ ├── sparkfun_edge │ │ │ │ │ ├── constants.cc │ │ │ │ │ └── output_handler.cc │ │ │ │ ├── train │ │ │ │ │ ├── README.md │ │ │ │ │ └── train_hello_world_model.ipynb │ │ │ │ └── zephyr_riscv │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── prj.conf │ │ │ │ │ └── src │ │ │ │ │ └── assert.cc │ │ │ ├── image_recognition_experimental │ │ │ │ ├── .gitignore │ │ │ │ ├── BUILD │ │ │ │ ├── Makefile.inc │ │ │ │ ├── README.md │ │ │ │ ├── image_provider.h │ │ │ │ ├── image_recognition_model.h │ │ │ │ ├── image_recognition_test.cc │ │ │ │ ├── main.cc │ │ │ │ ├── stm32f746_discovery │ │ │ │ │ ├── display_util.cc │ │ │ │ │ ├── display_util.h │ │ │ │ │ ├── image_provider.cc │ │ │ │ │ ├── image_util.cc │ │ │ │ │ └── image_util.h │ │ │ │ └── util.h │ │ │ ├── magic_wand │ │ │ │ ├── BUILD │ │ │ │ ├── Makefile.inc │ │ │ │ ├── README.md │ │ │ │ ├── accelerometer_handler.cc │ │ │ │ ├── accelerometer_handler.h │ │ │ │ ├── accelerometer_handler_test.cc │ │ │ │ ├── arduino │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── accelerometer_handler.cc │ │ │ │ │ ├── main.cc │ │ │ │ │ └── output_handler.cc │ │ │ │ ├── constants.h │ │ │ │ ├── gesture_predictor.cc │ │ │ │ ├── gesture_predictor.h │ │ │ │ ├── gesture_predictor_test.cc │ │ │ │ ├── himax_we1_evb │ │ │ │ │ └── accelerometer_handler.cc │ │ │ │ ├── magic_wand_model_data.cc │ │ │ │ ├── magic_wand_model_data.h │ │ │ │ ├── magic_wand_test.cc │ │ │ │ ├── main.cc │ │ │ │ ├── main_functions.cc │ │ │ │ ├── main_functions.h │ │ │ │ ├── output_handler.cc │ │ │ │ ├── output_handler.h │ │ │ │ ├── output_handler_test.cc │ │ │ │ ├── ring_micro_features_data.cc │ │ │ │ ├── ring_micro_features_data.h │ │ │ │ ├── riscv32_mcu │ │ │ │ │ └── Makefile.inc │ │ │ │ ├── slope_micro_features_data.cc │ │ │ │ ├── slope_micro_features_data.h │ │ │ │ ├── sparkfun_edge │ │ │ │ │ ├── accelerometer_handler.cc │ │ │ │ │ └── output_handler.cc │ │ │ │ ├── train │ │ │ │ │ ├── README.md │ │ │ │ │ ├── data_augmentation.py │ │ │ │ │ ├── data_augmentation_test.py │ │ │ │ │ ├── data_load.py │ │ │ │ │ ├── data_load_test.py │ │ │ │ │ ├── data_prepare.py │ │ │ │ │ ├── data_prepare_test.py │ │ │ │ │ ├── data_split.py │ │ │ │ │ ├── data_split_person.py │ │ │ │ │ ├── data_split_person_test.py │ │ │ │ │ ├── data_split_test.py │ │ │ │ │ ├── netmodels │ │ │ │ │ │ └── CNN │ │ │ │ │ │ │ └── weights.h5 │ │ │ │ │ ├── requirements.txt │ │ │ │ │ ├── train.py │ │ │ │ │ ├── train_magic_wand_model.ipynb │ │ │ │ │ └── train_test.py │ │ │ │ └── zephyr_riscv │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── boards │ │ │ │ │ └── litex_vexriscv.overlay │ │ │ │ │ ├── prj.conf │ │ │ │ │ └── src │ │ │ │ │ ├── accelerometer_handler.cc │ │ │ │ │ ├── accelerometer_handler.h │ │ │ │ │ └── assert.cc │ │ │ ├── micro_speech │ │ │ │ ├── .gitignore │ │ │ │ ├── BUILD │ │ │ │ ├── CMSIS │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── README.md │ │ │ │ │ ├── create_constants.py │ │ │ │ │ ├── hanning.cc │ │ │ │ │ ├── hanning.h │ │ │ │ │ ├── sin_1k.cc │ │ │ │ │ └── sin_1k.h │ │ │ │ ├── Makefile.inc │ │ │ │ ├── README.md │ │ │ │ ├── apollo3 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _main.c │ │ │ │ │ ├── captured_data_to_wav.py │ │ │ │ │ ├── compare_1k.py │ │ │ │ │ ├── preprocessor_1k.cc │ │ │ │ │ ├── preprocessor_1k_cmsis_test.cmd │ │ │ │ │ ├── preprocessor_1k_micro_test.cmd │ │ │ │ │ ├── preprocessor_test.cmd │ │ │ │ │ ├── pushbutton_cmsis_scores.cmd │ │ │ │ │ ├── pushbutton_cmsis_voice.cmd │ │ │ │ │ ├── pushbutton_main.c │ │ │ │ │ └── pushbutton_test.cc │ │ │ │ ├── apollo3evb │ │ │ │ │ ├── audio_provider.cc │ │ │ │ │ ├── command_responder.cc │ │ │ │ │ └── micro_speech.cmd │ │ │ │ ├── arc_emsdp │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ └── emsdp.lcf │ │ │ │ ├── arduino │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── audio_provider.cc │ │ │ │ │ ├── command_responder.cc │ │ │ │ │ └── main.cc │ │ │ │ ├── audio_provider.cc │ │ │ │ ├── audio_provider.h │ │ │ │ ├── audio_provider_mock.cc │ │ │ │ ├── audio_provider_mock_test.cc │ │ │ │ ├── audio_provider_test.cc │ │ │ │ ├── ceva │ │ │ │ │ ├── audio_provider.cc │ │ │ │ │ └── main_functions.cc │ │ │ │ ├── command_responder.cc │ │ │ │ ├── command_responder.h │ │ │ │ ├── command_responder_test.cc │ │ │ │ ├── disco_f746ng │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── audio_provider.cc │ │ │ │ │ ├── command_responder.cc │ │ │ │ │ └── timer.cc │ │ │ │ ├── esp │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── audio_provider.cc │ │ │ │ │ ├── main.cc │ │ │ │ │ ├── ringbuf.c │ │ │ │ │ ├── ringbuf.h │ │ │ │ │ └── sdkconfig.defaults │ │ │ │ ├── feature_provider.cc │ │ │ │ ├── feature_provider.h │ │ │ │ ├── feature_provider_mock_test.cc │ │ │ │ ├── feature_provider_test.cc │ │ │ │ ├── himax_we1_evb │ │ │ │ │ ├── audio_provider.cc │ │ │ │ │ └── command_responder.cc │ │ │ │ ├── images │ │ │ │ │ ├── animation_on_arduino.gif │ │ │ │ │ └── model_architecture.png │ │ │ │ ├── main.cc │ │ │ │ ├── main_functions.cc │ │ │ │ ├── main_functions.h │ │ │ │ ├── micro_features │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── micro_features_generator.cc │ │ │ │ │ ├── micro_features_generator.h │ │ │ │ │ ├── micro_features_generator_test.cc │ │ │ │ │ ├── micro_model_settings.cc │ │ │ │ │ ├── micro_model_settings.h │ │ │ │ │ ├── model.cc │ │ │ │ │ ├── model.h │ │ │ │ │ ├── no_feature_data_slice.cc │ │ │ │ │ ├── no_feature_data_slice.h │ │ │ │ │ ├── no_micro_features_data.cc │ │ │ │ │ ├── no_micro_features_data.h │ │ │ │ │ ├── static_alloc.h │ │ │ │ │ ├── yes_feature_data_slice.cc │ │ │ │ │ ├── yes_feature_data_slice.h │ │ │ │ │ ├── yes_micro_features_data.cc │ │ │ │ │ └── yes_micro_features_data.h │ │ │ │ ├── micro_speech_binary_mock_test.sh │ │ │ │ ├── micro_speech_test.cc │ │ │ │ ├── no_1000ms_sample_data.cc │ │ │ │ ├── no_1000ms_sample_data.h │ │ │ │ ├── no_30ms_sample_data.cc │ │ │ │ ├── no_30ms_sample_data.h │ │ │ │ ├── nxp_k66f │ │ │ │ │ └── audio_provider.cc │ │ │ │ ├── osx │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ └── audio_provider.cc │ │ │ │ ├── recognize_commands.cc │ │ │ │ ├── recognize_commands.h │ │ │ │ ├── recognize_commands_test.cc │ │ │ │ ├── riscv32_mcu │ │ │ │ │ └── Makefile.inc │ │ │ │ ├── simple_features │ │ │ │ │ ├── CMSIS │ │ │ │ │ │ └── simple_features_generator.cc │ │ │ │ │ ├── fixed_point │ │ │ │ │ │ └── simple_features_generator.cc │ │ │ │ │ ├── model.cc │ │ │ │ │ ├── model.h │ │ │ │ │ ├── no_power_spectrum_data.cc │ │ │ │ │ ├── no_power_spectrum_data.h │ │ │ │ │ ├── no_simple_features_data.cc │ │ │ │ │ ├── no_simple_features_data.h │ │ │ │ │ ├── simple_features_generator.cc │ │ │ │ │ ├── simple_features_generator.h │ │ │ │ │ ├── simple_features_generator_test.cc │ │ │ │ │ ├── simple_model_settings.cc │ │ │ │ │ ├── simple_model_settings.h │ │ │ │ │ ├── yes_power_spectrum_data.cc │ │ │ │ │ ├── yes_power_spectrum_data.h │ │ │ │ │ ├── yes_simple_features_data.cc │ │ │ │ │ └── yes_simple_features_data.h │ │ │ │ ├── sparkfun_edge │ │ │ │ │ ├── audio_provider.cc │ │ │ │ │ └── command_responder.cc │ │ │ │ ├── train │ │ │ │ │ ├── README.md │ │ │ │ │ └── train_micro_speech_model.ipynb │ │ │ │ ├── train_speech_model.ipynb │ │ │ │ ├── yes_1000ms_sample_data.cc │ │ │ │ ├── yes_1000ms_sample_data.h │ │ │ │ ├── yes_30ms_sample_data.cc │ │ │ │ └── yes_30ms_sample_data.h │ │ │ ├── network_tester │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile.inc │ │ │ │ ├── README.md │ │ │ │ └── network_tester_test.cc │ │ │ ├── person_detection │ │ │ │ ├── BUILD │ │ │ │ ├── Makefile.inc │ │ │ │ ├── README.md │ │ │ │ ├── apollo3evb │ │ │ │ │ └── image_provider.cc │ │ │ │ ├── arc_emsdp │ │ │ │ │ └── Makefile.inc │ │ │ │ ├── arduino │ │ │ │ │ ├── HM01B0_platform.h │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── detection_responder.cc │ │ │ │ │ ├── image_provider.cc │ │ │ │ │ └── main.cc │ │ │ │ ├── detection_responder.cc │ │ │ │ ├── detection_responder.h │ │ │ │ ├── detection_responder_test.cc │ │ │ │ ├── esp │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── README_ESP.md │ │ │ │ │ ├── app_camera_esp.c │ │ │ │ │ ├── app_camera_esp.h │ │ │ │ │ ├── image_provider.cc │ │ │ │ │ ├── main.cc │ │ │ │ │ ├── main │ │ │ │ │ │ └── Kconfig.projbuild │ │ │ │ │ └── sdkconfig.defaults │ │ │ │ ├── himax_driver │ │ │ │ │ ├── HM01B0.c │ │ │ │ │ ├── HM01B0.h │ │ │ │ │ ├── HM01B0_RAW8_QVGA_8bits_lsb_5fps.h │ │ │ │ │ ├── HM01B0_Walking1s_01.h │ │ │ │ │ ├── HM01B0_Walking1s_01.txt │ │ │ │ │ ├── HM01B0_debug.c │ │ │ │ │ ├── HM01B0_debug.h │ │ │ │ │ ├── HM01B0_optimized.c │ │ │ │ │ ├── HM01B0_optimized.h │ │ │ │ │ └── Makefile.inc │ │ │ │ ├── image_provider.cc │ │ │ │ ├── image_provider.h │ │ │ │ ├── image_provider_test.cc │ │ │ │ ├── main.cc │ │ │ │ ├── main_functions.cc │ │ │ │ ├── main_functions.h │ │ │ │ ├── model_settings.cc │ │ │ │ ├── model_settings.h │ │ │ │ ├── no_person_image_data.h │ │ │ │ ├── person_detect_model_data.h │ │ │ │ ├── person_detection_binary_test.sh │ │ │ │ ├── person_detection_test.cc │ │ │ │ ├── person_image_data.h │ │ │ │ ├── riscv32_mcu │ │ │ │ │ └── Makefile.inc │ │ │ │ ├── sparkfun_edge │ │ │ │ │ ├── detection_responder.cc │ │ │ │ │ └── image_provider.cc │ │ │ │ ├── training_a_model.md │ │ │ │ └── utils │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── raw_to_bitmap.py │ │ │ │ │ └── raw_to_bitmap_test.py │ │ │ └── person_detection_experimental │ │ │ │ ├── BUILD │ │ │ │ ├── Makefile.inc │ │ │ │ ├── README.md │ │ │ │ ├── apollo3evb │ │ │ │ └── image_provider.cc │ │ │ │ ├── arc_emsdp │ │ │ │ ├── Makefile.inc │ │ │ │ └── emsdp.lcf │ │ │ │ ├── arduino │ │ │ │ ├── detection_responder.cc │ │ │ │ ├── image_provider.cc │ │ │ │ └── main.cc │ │ │ │ ├── detection_responder.cc │ │ │ │ ├── detection_responder.h │ │ │ │ ├── detection_responder_test.cc │ │ │ │ ├── himax_driver │ │ │ │ ├── HM01B0.c │ │ │ │ ├── HM01B0.h │ │ │ │ ├── HM01B0_RAW8_QVGA_8bits_lsb_5fps.h │ │ │ │ ├── HM01B0_Walking1s_01.h │ │ │ │ ├── HM01B0_Walking1s_01.txt │ │ │ │ ├── HM01B0_debug.c │ │ │ │ ├── HM01B0_debug.h │ │ │ │ ├── HM01B0_optimized.c │ │ │ │ ├── HM01B0_optimized.h │ │ │ │ ├── Makefile.inc │ │ │ │ └── platform_Sparkfun_Edge.h │ │ │ │ ├── himax_we1_evb │ │ │ │ ├── detection_responder.cc │ │ │ │ └── image_provider.cc │ │ │ │ ├── image_provider.cc │ │ │ │ ├── image_provider.h │ │ │ │ ├── image_provider_test.cc │ │ │ │ ├── main.cc │ │ │ │ ├── main_functions.cc │ │ │ │ ├── main_functions.h │ │ │ │ ├── model_settings.cc │ │ │ │ ├── model_settings.h │ │ │ │ ├── no_person_image_data.h │ │ │ │ ├── person_detect_model_data.h │ │ │ │ ├── person_detection_test.cc │ │ │ │ ├── person_image_data.h │ │ │ │ ├── sparkfun_edge │ │ │ │ ├── detection_responder.cc │ │ │ │ └── image_provider.cc │ │ │ │ └── training_a_model.md │ │ ├── hexagon │ │ │ └── micro_time.cc │ │ ├── himax_we1_evb │ │ │ └── debug_log.cc │ │ ├── kernels │ │ │ ├── BUILD │ │ │ ├── activation_utils.h │ │ │ ├── activations.cc │ │ │ ├── activations_test.cc │ │ │ ├── add.cc │ │ │ ├── add_test.cc │ │ │ ├── arc_mli │ │ │ │ ├── README.md │ │ │ │ ├── conv.cc │ │ │ │ ├── conv_slicing_test.cc │ │ │ │ ├── depthwise_conv.cc │ │ │ │ ├── depthwise_conv_slicing_test.cc │ │ │ │ ├── fully_connected.cc │ │ │ │ ├── fully_connected_slicing_test.cc │ │ │ │ ├── mli_slicers.cc │ │ │ │ ├── mli_slicers.h │ │ │ │ ├── mli_tf_utils.h │ │ │ │ ├── pooling.cc │ │ │ │ ├── pooling_slicing_test.cc │ │ │ │ ├── scratch_buf_mgr.cc │ │ │ │ ├── scratch_buf_mgr.h │ │ │ │ ├── scratch_buffers.cc │ │ │ │ └── scratch_buffers.h │ │ │ ├── arg_min_max.cc │ │ │ ├── arg_min_max_test.cc │ │ │ ├── ceil.cc │ │ │ ├── ceil_test.cc │ │ │ ├── circular_buffer.cc │ │ │ ├── circular_buffer_test.cc │ │ │ ├── cmsis-nn │ │ │ │ ├── README.md │ │ │ │ ├── add.cc │ │ │ │ ├── conv.cc │ │ │ │ ├── depthwise_conv.cc │ │ │ │ ├── fully_connected.cc │ │ │ │ ├── mul.cc │ │ │ │ ├── pooling.cc │ │ │ │ ├── softmax.cc │ │ │ │ └── svdf.cc │ │ │ ├── comparisons.cc │ │ │ ├── comparisons_test.cc │ │ │ ├── concatenation.cc │ │ │ ├── concatenation_test.cc │ │ │ ├── conv.cc │ │ │ ├── conv_test.cc │ │ │ ├── depthwise_conv.cc │ │ │ ├── depthwise_conv_test.cc │ │ │ ├── dequantize.cc │ │ │ ├── dequantize_test.cc │ │ │ ├── elementwise.cc │ │ │ ├── elementwise_test.cc │ │ │ ├── ethos-u │ │ │ │ ├── README.md │ │ │ │ └── ethosu.cc │ │ │ ├── ethosu.cc │ │ │ ├── floor.cc │ │ │ ├── floor_test.cc │ │ │ ├── fully_connected.cc │ │ │ ├── fully_connected.h │ │ │ ├── fully_connected_test.cc │ │ │ ├── hard_swish.cc │ │ │ ├── hard_swish_test.cc │ │ │ ├── kernel_runner.cc │ │ │ ├── kernel_runner.h │ │ │ ├── kernel_util.cc │ │ │ ├── kernel_util.h │ │ │ ├── l2norm.cc │ │ │ ├── l2norm_test.cc │ │ │ ├── logical.cc │ │ │ ├── logical_test.cc │ │ │ ├── logistic.cc │ │ │ ├── logistic_test.cc │ │ │ ├── maximum_minimum.cc │ │ │ ├── maximum_minimum_test.cc │ │ │ ├── micro_ops.h │ │ │ ├── micro_utils.h │ │ │ ├── mul.cc │ │ │ ├── mul_test.cc │ │ │ ├── neg.cc │ │ │ ├── neg_test.cc │ │ │ ├── pack.cc │ │ │ ├── pack_test.cc │ │ │ ├── pad.cc │ │ │ ├── pad_test.cc │ │ │ ├── pooling.cc │ │ │ ├── pooling_test.cc │ │ │ ├── prelu.cc │ │ │ ├── prelu_test.cc │ │ │ ├── quantization_util_test.cc │ │ │ ├── quantize.cc │ │ │ ├── quantize_test.cc │ │ │ ├── reduce.cc │ │ │ ├── reduce_test.cc │ │ │ ├── reshape.cc │ │ │ ├── reshape_test.cc │ │ │ ├── resize_nearest_neighbor.cc │ │ │ ├── resize_nearest_neighbor_test.cc │ │ │ ├── round.cc │ │ │ ├── round_test.cc │ │ │ ├── shape.cc │ │ │ ├── shape_test.cc │ │ │ ├── softmax.cc │ │ │ ├── softmax_test.cc │ │ │ ├── split.cc │ │ │ ├── split_test.cc │ │ │ ├── split_v.cc │ │ │ ├── split_v_test.cc │ │ │ ├── strided_slice.cc │ │ │ ├── strided_slice_test.cc │ │ │ ├── sub.cc │ │ │ ├── sub_test.cc │ │ │ ├── svdf.cc │ │ │ ├── svdf_test.cc │ │ │ ├── tanh.cc │ │ │ ├── tanh_test.cc │ │ │ ├── unpack.cc │ │ │ ├── unpack_test.cc │ │ │ ├── vexriscv │ │ │ │ ├── README.md │ │ │ │ ├── depthwise_conv.cc │ │ │ │ ├── doc │ │ │ │ │ └── DepthwiseConv2D_int8.md │ │ │ │ └── utils │ │ │ │ │ ├── README.md │ │ │ │ │ ├── gdb_regex.json │ │ │ │ │ └── log_parser.py │ │ │ ├── xtensa_hifi │ │ │ │ ├── activations.cc │ │ │ │ ├── add.cc │ │ │ │ ├── conv.cc │ │ │ │ ├── depthwise_conv.cc │ │ │ │ ├── floor.cc │ │ │ │ ├── fully_connected.cc │ │ │ │ ├── logistic.cc │ │ │ │ ├── mul.cc │ │ │ │ ├── pooling.cc │ │ │ │ ├── softmax.cc │ │ │ │ ├── svdf.cc │ │ │ │ └── xtensa_tf_micro_common.h │ │ │ ├── xtensa_hifimini │ │ │ │ ├── conv.cc │ │ │ │ ├── depthwise_conv.cc │ │ │ │ ├── fixedpoint_utils.h │ │ │ │ ├── fully_connected.cc │ │ │ │ ├── quantize.cc │ │ │ │ ├── softmax.cc │ │ │ │ └── svdf.cc │ │ │ └── xtensa_hifimini_staging │ │ │ │ ├── fully_connected.cc │ │ │ │ ├── quantize.cc │ │ │ │ ├── softmax.cc │ │ │ │ ├── svdf.cc │ │ │ │ ├── xa_nnlib │ │ │ │ ├── algo │ │ │ │ │ ├── common │ │ │ │ │ │ └── include │ │ │ │ │ │ │ ├── xa_api_defs.h │ │ │ │ │ │ │ ├── xa_nnlib_common.h │ │ │ │ │ │ │ ├── xa_nnlib_common_macros.h │ │ │ │ │ │ │ ├── xa_nnlib_definitions.h │ │ │ │ │ │ │ └── xa_nnlib_err_chk.h │ │ │ │ │ └── kernels │ │ │ │ │ │ ├── activations │ │ │ │ │ │ └── hifi_mini │ │ │ │ │ │ │ ├── xa_nn_activations_asym8s_asym8s.c │ │ │ │ │ │ │ └── xa_nn_softmax_asym8_asym8.c │ │ │ │ │ │ ├── basic │ │ │ │ │ │ └── hifi_mini │ │ │ │ │ │ │ └── xa_nn_dot_prod_16x16.c │ │ │ │ │ │ ├── fc │ │ │ │ │ │ └── hifi_mini │ │ │ │ │ │ │ └── xa_nn_fully_connected.c │ │ │ │ │ │ └── matXvec │ │ │ │ │ │ └── hifi_mini │ │ │ │ │ │ └── xa_nn_matXvec_sym8sxasym8s.c │ │ │ │ └── include │ │ │ │ │ ├── nnlib │ │ │ │ │ ├── xa_nnlib_api.h │ │ │ │ │ ├── xa_nnlib_kernels_api.h │ │ │ │ │ └── xa_nnlib_standards.h │ │ │ │ │ └── xa_type_def.h │ │ │ │ └── xtensa_tf_micro_common.h │ │ ├── mbed │ │ │ └── debug_log.cc │ │ ├── memory_arena_threshold_test.cc │ │ ├── memory_helpers.cc │ │ ├── memory_helpers.h │ │ ├── memory_helpers_test.cc │ │ ├── memory_planner │ │ │ ├── BUILD │ │ │ ├── greedy_memory_planner.cc │ │ │ ├── greedy_memory_planner.h │ │ │ ├── greedy_memory_planner_test.cc │ │ │ ├── linear_memory_planner.cc │ │ │ ├── linear_memory_planner.h │ │ │ ├── linear_memory_planner_test.cc │ │ │ └── memory_planner.h │ │ ├── micro_allocator.cc │ │ ├── micro_allocator.h │ │ ├── micro_allocator_test.cc │ │ ├── micro_error_reporter.cc │ │ ├── micro_error_reporter.h │ │ ├── micro_error_reporter_test.cc │ │ ├── micro_interpreter.cc │ │ ├── micro_interpreter.h │ │ ├── micro_interpreter_test.cc │ │ ├── micro_mutable_op_resolver.h │ │ ├── micro_mutable_op_resolver_test.cc │ │ ├── micro_op_resolver.h │ │ ├── micro_profiler.cc │ │ ├── micro_profiler.h │ │ ├── micro_string.cc │ │ ├── micro_string.h │ │ ├── micro_string_test.cc │ │ ├── micro_time.cc │ │ ├── micro_time.h │ │ ├── micro_time_test.cc │ │ ├── micro_utils.cc │ │ ├── micro_utils.h │ │ ├── micro_utils_test.cc │ │ ├── openmvcam │ │ │ └── debug_log.cc │ │ ├── posix │ │ │ └── micro_time.cc │ │ ├── recording_micro_allocator.cc │ │ ├── recording_micro_allocator.h │ │ ├── recording_micro_allocator_test.cc │ │ ├── recording_micro_interpreter.h │ │ ├── recording_simple_memory_allocator.cc │ │ ├── recording_simple_memory_allocator.h │ │ ├── recording_simple_memory_allocator_test.cc │ │ ├── riscv32_mcu │ │ │ ├── README.md │ │ │ └── debug_log.cc │ │ ├── simple_memory_allocator.cc │ │ ├── simple_memory_allocator.h │ │ ├── simple_memory_allocator_test.cc │ │ ├── sparkfun_edge │ │ │ ├── debug_log.cc │ │ │ └── micro_time.cc │ │ ├── stm32f4 │ │ │ └── debug_log.cc │ │ ├── stm32f4HAL │ │ │ └── debug_log.cc │ │ ├── test_helpers.cc │ │ ├── test_helpers.h │ │ ├── testing │ │ │ ├── BUILD │ │ │ ├── Dockerfile.bluepill │ │ │ ├── Dockerfile.riscv │ │ │ ├── Dockerfile.stm32f4 │ │ │ ├── bluepill.resc │ │ │ ├── bluepill.robot │ │ │ ├── generate_test_models.py │ │ │ ├── leon_commands │ │ │ ├── micro_test.bzl │ │ │ ├── micro_test.h │ │ │ ├── sifive_fe310.resc │ │ │ ├── stm32f4.resc │ │ │ ├── stm32f4.robot │ │ │ ├── test_bluepill_binary.sh │ │ │ ├── test_conv_model.cc │ │ │ ├── test_conv_model.h │ │ │ ├── test_ecm3531_binary.sh │ │ │ ├── test_hexagon_binary.sh │ │ │ ├── test_leon_binary.sh │ │ │ ├── test_linux_binary.sh │ │ │ ├── test_stm32f4_binary.sh │ │ │ ├── test_xcore_binary.sh │ │ │ ├── test_xtensa_hifi_binary.sh │ │ │ ├── test_xtensa_hifimini_binary.sh │ │ │ ├── test_xtensa_hifimini_staging_binary.sh │ │ │ └── util_test.cc │ │ ├── testing_helpers_test.cc │ │ ├── tools │ │ │ ├── ci_build │ │ │ │ ├── ci_build_micro_projects.sh │ │ │ │ ├── helper_functions.sh │ │ │ │ ├── install_arduino_cli.sh │ │ │ │ ├── install_mbed_cli.sh │ │ │ │ ├── test_all.sh │ │ │ │ ├── test_arc.sh │ │ │ │ ├── test_arduino.sh │ │ │ │ ├── test_arduino_library.sh │ │ │ │ ├── test_bluepill.sh │ │ │ │ ├── test_cortex_m_generic.sh │ │ │ │ ├── test_mbed.sh │ │ │ │ ├── test_mbed_library.sh │ │ │ │ ├── test_sparkfun.sh │ │ │ │ ├── test_stm32f4.sh │ │ │ │ └── test_x86.sh │ │ │ └── make │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── download_and_extract.sh │ │ │ │ ├── ext_libs │ │ │ │ ├── arc_mli.inc │ │ │ │ ├── cmsis_nn.inc │ │ │ │ ├── ethosu.inc │ │ │ │ ├── xtensa_hifi_nn_library.inc │ │ │ │ └── xtensa_hifimini_staging_nn_library.inc │ │ │ │ ├── fix_arduino_subfolders.py │ │ │ │ ├── fix_arduino_subfolders_test.sh │ │ │ │ ├── generate_keil_project.py │ │ │ │ ├── generate_keil_project_test.sh │ │ │ │ ├── helper_functions.inc │ │ │ │ ├── merge_arduino_zips.py │ │ │ │ ├── merge_arduino_zips_test.sh │ │ │ │ ├── targets │ │ │ │ ├── apollo3evb │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── apollo3evb.ld │ │ │ │ │ └── prep_apollo3_files.sh │ │ │ │ ├── apollo3evb_makefile.inc │ │ │ │ ├── arc │ │ │ │ │ ├── README.md │ │ │ │ │ ├── arc_common.inc │ │ │ │ │ └── emsdp │ │ │ │ │ │ ├── emsdp.lcf │ │ │ │ │ │ └── emsdp_v2.lcf │ │ │ │ ├── arc_emsdp_makefile.inc │ │ │ │ ├── arc_makefile.inc │ │ │ │ ├── bluepill │ │ │ │ │ └── bluepill.lds │ │ │ │ ├── bluepill_makefile.inc │ │ │ │ ├── ceva │ │ │ │ │ ├── CEVA_BX1_TFLM.ld │ │ │ │ │ ├── CEVA_BX1_TFLM_18.0.2.ld │ │ │ │ │ └── CEVA_BX1_TFLM_18.0.3.ld │ │ │ │ ├── ceva_bx1_makefile.inc │ │ │ │ ├── cortex_m_generic_makefile.inc │ │ │ │ ├── ecm3531 │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _main.c │ │ │ │ │ ├── ecm3531.lds │ │ │ │ │ ├── ecm3531_flash.lds │ │ │ │ │ ├── flash_erase │ │ │ │ │ ├── flash_program │ │ │ │ │ ├── load_program │ │ │ │ │ └── startup.c │ │ │ │ ├── ecm3531_makefile.inc │ │ │ │ ├── esp32_makefile.inc │ │ │ │ ├── hexagon_makefile.inc │ │ │ │ ├── himax_we1_evb_makefile.inc │ │ │ │ ├── leon_makefile.inc │ │ │ │ ├── litex_vexriscv_makefile.inc │ │ │ │ ├── mbed_makefile.inc │ │ │ │ ├── mcu_riscv_makefile.inc │ │ │ │ ├── sparkfun_edge_makefile.inc │ │ │ │ ├── stm32f4 │ │ │ │ │ └── stm32f4.lds │ │ │ │ ├── stm32f4_makefile.inc │ │ │ │ ├── xcore_makefile.inc │ │ │ │ ├── xtensa_hifi │ │ │ │ │ └── README.md │ │ │ │ ├── xtensa_hifi_makefile.inc │ │ │ │ ├── xtensa_hifimini_makefile.inc │ │ │ │ └── xtensa_hifimini_staging_makefile.inc │ │ │ │ ├── templates │ │ │ │ ├── AUDIO_DISCO_F746NG.lib.tpl │ │ │ │ ├── BSP_DISCO_F746NG.lib.tpl │ │ │ │ ├── LCD_DISCO_F746NG.lib.tpl │ │ │ │ ├── Makefile.tpl │ │ │ │ ├── README_KEIL.md.tpl │ │ │ │ ├── README_MAKE.md.tpl │ │ │ │ ├── README_MBED.md.tpl │ │ │ │ ├── SDRAM_DISCO_F746NG.lib.tpl │ │ │ │ ├── TensorFlowLite.h │ │ │ │ ├── arc │ │ │ │ │ ├── README_ARC.md.tpl │ │ │ │ │ ├── README_ARC_EMSDP.md.tpl │ │ │ │ │ └── arc_app_makefile.tpl │ │ │ │ ├── arduino_example.ino │ │ │ │ ├── ceva_bx1 │ │ │ │ │ ├── ceva_app_makefile.tpl │ │ │ │ │ └── ceva_app_makefile_v18.0.3.tpl │ │ │ │ ├── esp │ │ │ │ │ ├── CMakeLists.txt.tpl │ │ │ │ │ ├── README_ESP.md.tpl │ │ │ │ │ ├── components │ │ │ │ │ │ └── tfmicro │ │ │ │ │ │ │ └── CMakeLists.txt.tpl │ │ │ │ │ └── main │ │ │ │ │ │ └── CMakeLists.txt.tpl │ │ │ │ ├── keil_project.uvprojx.tpl │ │ │ │ ├── library.properties │ │ │ │ ├── mbed-os.lib.tpl │ │ │ │ ├── mbed_app.json.tpl │ │ │ │ ├── tasks.json.make.tpl │ │ │ │ ├── tasks.json.mbed.tpl │ │ │ │ └── zephyr_cmake_project.cmake.tpl │ │ │ │ ├── third_party_downloads.inc │ │ │ │ ├── transform_arduino_source.py │ │ │ │ ├── transform_arduino_source_test.sh │ │ │ │ ├── transform_esp_source_test.sh │ │ │ │ └── transform_source.py │ │ ├── xcore │ │ │ ├── README.md │ │ │ └── debug_log.cc │ │ ├── xtensa_hifimini │ │ │ └── micro_time.cc │ │ └── xtensa_hifimini_staging │ │ │ ├── debug_log.cc │ │ │ └── micro_time.cc │ ├── minimal_logging.cc │ ├── minimal_logging.h │ ├── minimal_logging_android.cc │ ├── minimal_logging_default.cc │ ├── minimal_logging_ios.cc │ ├── minimal_logging_test.cc │ ├── mmap_allocation.cc │ ├── mmap_allocation_disabled.cc │ ├── model.h │ ├── model_builder.cc │ ├── model_builder.h │ ├── model_flex_test.cc │ ├── model_test.cc │ ├── model_xnnpack_test.cc │ ├── mutable_op_resolver.cc │ ├── mutable_op_resolver.h │ ├── mutable_op_resolver_test.cc │ ├── nnapi │ │ ├── BUILD │ │ ├── NeuralNetworksShim.h │ │ ├── NeuralNetworksTypes.h │ │ ├── README.md │ │ ├── nnapi_handler.cc │ │ ├── nnapi_handler.h │ │ ├── nnapi_handler_test.cc │ │ ├── nnapi_implementation.cc │ │ ├── nnapi_implementation.h │ │ ├── nnapi_implementation_disabled.cc │ │ ├── nnapi_implementation_test.cc │ │ ├── nnapi_util.cc │ │ └── nnapi_util.h │ ├── op_resolver.h │ ├── optional_debug_tools.cc │ ├── optional_debug_tools.h │ ├── portable_type_to_tflitetype.h │ ├── profiling │ │ ├── BUILD │ │ ├── atrace_profiler.cc │ │ ├── atrace_profiler.h │ │ ├── atrace_profiler_test.cc │ │ ├── buffered_profiler.h │ │ ├── memory_info.cc │ │ ├── memory_info.h │ │ ├── memory_info_test.cc │ │ ├── noop_profiler.h │ │ ├── platform_profiler.cc │ │ ├── platform_profiler.h │ │ ├── profile_buffer.h │ │ ├── profile_buffer_test.cc │ │ ├── profile_summarizer.cc │ │ ├── profile_summarizer.h │ │ ├── profile_summarizer_test.cc │ │ ├── profile_summary_formatter.cc │ │ ├── profile_summary_formatter.h │ │ ├── profile_summary_formatter_test.cc │ │ ├── profiler.h │ │ ├── profiler_test.cc │ │ ├── test_main.cc │ │ ├── time.cc │ │ ├── time.h │ │ └── time_test.cc │ ├── python │ │ ├── BUILD │ │ ├── convert.py │ │ ├── convert_file_to_c_source.py │ │ ├── convert_file_to_c_source_test.sh │ │ ├── convert_saved_model.py │ │ ├── convert_saved_model_test.py │ │ ├── convert_test.py │ │ ├── interpreter.py │ │ ├── interpreter_test.py │ │ ├── interpreter_wrapper │ │ │ ├── BUILD │ │ │ ├── interpreter_wrapper.cc │ │ │ ├── interpreter_wrapper.h │ │ │ ├── interpreter_wrapper_pybind11.cc │ │ │ ├── numpy.cc │ │ │ ├── numpy.h │ │ │ ├── python_error_reporter.cc │ │ │ ├── python_error_reporter.h │ │ │ ├── python_utils.cc │ │ │ └── python_utils.h │ │ ├── keras │ │ │ └── saving │ │ │ │ ├── BUILD │ │ │ │ └── saving_utils.py │ │ ├── lite.py │ │ ├── lite_constants.py │ │ ├── lite_flex_test.py │ │ ├── lite_test.py │ │ ├── lite_v2_test.py │ │ ├── lite_v2_test_util.py │ │ ├── op_hint.py │ │ ├── optimize │ │ │ ├── BUILD │ │ │ ├── calibration_wrapper.cc │ │ │ ├── calibration_wrapper.h │ │ │ ├── calibration_wrapper_pybind11.cc │ │ │ ├── calibrator.py │ │ │ ├── calibrator_test.py │ │ │ └── test_data │ │ │ │ ├── mobilenet_like_model.bin │ │ │ │ └── string_input_flex_model.bin │ │ ├── testdata │ │ │ ├── BUILD │ │ │ ├── gather.pbtxt │ │ │ ├── gather_0d.pbtxt │ │ │ ├── pc_conv.bin │ │ │ ├── permute.pbtxt │ │ │ ├── test_delegate.cc │ │ │ ├── test_registerer.cc │ │ │ ├── test_registerer.h │ │ │ └── test_registerer_wrapper.cc │ │ ├── tflite_convert.py │ │ ├── tflite_convert_test.py │ │ ├── util.py │ │ ├── util_test.py │ │ └── wrap_toco.py │ ├── schema │ │ ├── BUILD │ │ ├── builtin_ops_header │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── consistency_test.cc │ │ │ ├── generate.cc │ │ │ ├── generator.cc │ │ │ ├── generator.h │ │ │ └── generator_test.cc │ │ ├── flatbuffer_compatibility_test.cc │ │ ├── schema.fbs │ │ ├── schema_generated.h │ │ ├── schema_utils.cc │ │ ├── schema_utils.h │ │ ├── schema_v0.fbs │ │ ├── schema_v1.fbs │ │ ├── schema_v2.fbs │ │ ├── schema_v3.fbs │ │ ├── schema_v3a.fbs │ │ ├── upgrade_schema.py │ │ └── upgrade_schema_test.py │ ├── shared_library.h │ ├── simple_memory_arena.cc │ ├── simple_memory_arena.h │ ├── simple_memory_arena_test.cc │ ├── special_rules.bzl │ ├── stateful_error_reporter.h │ ├── stderr_reporter.cc │ ├── stderr_reporter.h │ ├── stderr_reporter_test.cc │ ├── string_type.h │ ├── string_util.cc │ ├── string_util.h │ ├── string_util_test.cc │ ├── testdata │ │ ├── 0_subgraphs.bin │ │ ├── 2_subgraphs.bin │ │ ├── add.bin │ │ ├── add.json │ │ ├── add_quantized.bin │ │ ├── add_quantized.json │ │ ├── add_quantized_int8.bin │ │ ├── add_quantized_int8.json │ │ ├── add_shared_tensors.bin │ │ ├── dynamic_shapes.bin │ │ ├── empty_model.bin │ │ ├── lstm.bin │ │ ├── multi_add.bin │ │ ├── multi_add.json │ │ ├── multi_add.pb │ │ ├── multi_add_flex.bin │ │ ├── no_subgraphs.bin │ │ ├── segment_sum_invalid_buffer.bin │ │ ├── softplus_flex.bin │ │ ├── sparse_tensor.bin │ │ ├── sparse_tensor.json │ │ ├── string_input_model.bin │ │ ├── test_input.csv │ │ ├── test_min_runtime.bin │ │ ├── test_model.bin │ │ ├── test_model_broken.bin │ │ ├── test_model_broken.json │ │ ├── test_model_versioned_ops.bin │ │ ├── two_subgraphs.bin │ │ └── unidirectional_sequence_lstm.bin │ ├── testing │ │ ├── BUILD │ │ ├── generate_examples.py │ │ ├── generate_examples_lib.py │ │ ├── generate_examples_report.py │ │ ├── generate_testspec.cc │ │ ├── generate_testspec.h │ │ ├── generate_testspec_test.cc │ │ ├── generated_examples_zip_test.cc │ │ ├── init_tensorflow.cc │ │ ├── init_tensorflow.h │ │ ├── join.h │ │ ├── join_test.cc │ │ ├── kernel_test │ │ │ ├── BUILD │ │ │ ├── diff_analyzer.cc │ │ │ ├── diff_analyzer.h │ │ │ ├── diff_analyzer_test.cc │ │ │ ├── generate_diff_report.cc │ │ │ ├── input_generator.cc │ │ │ ├── input_generator.h │ │ │ ├── input_generator_test.cc │ │ │ ├── tflite_kernel_runner.cc │ │ │ ├── util.h │ │ │ └── util_test.cc │ │ ├── message.cc │ │ ├── message.h │ │ ├── message_test.cc │ │ ├── model_coverage │ │ │ ├── BUILD │ │ │ ├── model_coverage_lib.py │ │ │ ├── model_coverage_lib_test.py │ │ │ └── testdata │ │ │ │ └── grace_hopper.jpg │ │ ├── nnapi_example.cc │ │ ├── op_tests │ │ │ ├── abs.py │ │ │ ├── add_n.py │ │ │ ├── arg_min_max.py │ │ │ ├── batch_to_space_nd.py │ │ │ ├── binary_op.py │ │ │ ├── cast.py │ │ │ ├── ceil.py │ │ │ ├── concat.py │ │ │ ├── constant.py │ │ │ ├── conv.py │ │ │ ├── conv2d_transpose.py │ │ │ ├── conv_activation.py │ │ │ ├── conv_to_depthwiseconv_with_shared_weights.py │ │ │ ├── conv_with_shared_weights.py │ │ │ ├── cos.py │ │ │ ├── depth_to_space.py │ │ │ ├── depthwiseconv.py │ │ │ ├── elementwise.py │ │ │ ├── elu.py │ │ │ ├── embedding_lookup.py │ │ │ ├── equal.py │ │ │ ├── exp.py │ │ │ ├── expand_dims.py │ │ │ ├── eye.py │ │ │ ├── fill.py │ │ │ ├── floor.py │ │ │ ├── fully_connected.py │ │ │ ├── fused_batch_norm.py │ │ │ ├── gather.py │ │ │ ├── gather_nd.py │ │ │ ├── gather_with_constant.py │ │ │ ├── global_batch_norm.py │ │ │ ├── greater.py │ │ │ ├── greater_equal.py │ │ │ ├── hardswish.py │ │ │ ├── identity.py │ │ │ ├── l2norm.py │ │ │ ├── l2norm_shared_epsilon.py │ │ │ ├── leaky_relu.py │ │ │ ├── less.py │ │ │ ├── less_equal.py │ │ │ ├── local_response_norm.py │ │ │ ├── log_softmax.py │ │ │ ├── logic.py │ │ │ ├── lstm.py │ │ │ ├── matrix_diag.py │ │ │ ├── matrix_set_diag.py │ │ │ ├── maximum.py │ │ │ ├── minimum.py │ │ │ ├── mirror_pad.py │ │ │ ├── nearest_upsample.py │ │ │ ├── neg.py │ │ │ ├── not_equal.py │ │ │ ├── one_hot.py │ │ │ ├── pack.py │ │ │ ├── pad.py │ │ │ ├── padv2.py │ │ │ ├── placeholder_with_default.py │ │ │ ├── pool.py │ │ │ ├── prelu.py │ │ │ ├── range.py │ │ │ ├── rank.py │ │ │ ├── reduce.py │ │ │ ├── relu.py │ │ │ ├── relu1.py │ │ │ ├── relu6.py │ │ │ ├── reshape.py │ │ │ ├── resize_bilinear.py │ │ │ ├── resize_nearest_neighbor.py │ │ │ ├── resolve_constant_strided_slice.py │ │ │ ├── reverse_sequence.py │ │ │ ├── reverse_v2.py │ │ │ ├── rfft2d.py │ │ │ ├── round.py │ │ │ ├── scatter_nd.py │ │ │ ├── shape.py │ │ │ ├── sigmoid.py │ │ │ ├── slice.py │ │ │ ├── softmax.py │ │ │ ├── space_to_batch_nd.py │ │ │ ├── space_to_depth.py │ │ │ ├── sparse_to_dense.py │ │ │ ├── split.py │ │ │ ├── splitv.py │ │ │ ├── squeeze.py │ │ │ ├── squeeze_transpose.py │ │ │ ├── strided_slice.py │ │ │ ├── strided_slice_np_style.py │ │ │ ├── tanh.py │ │ │ ├── tile.py │ │ │ ├── topk.py │ │ │ ├── transpose.py │ │ │ ├── transpose_conv.py │ │ │ ├── unfused_gru.py │ │ │ ├── unidirectional_sequence_lstm.py │ │ │ ├── unidirectional_sequence_rnn.py │ │ │ ├── unique.py │ │ │ ├── unpack.py │ │ │ ├── unroll_batch_matmul.py │ │ │ ├── where.py │ │ │ └── zeros_like.py │ │ ├── parse_testdata.cc │ │ ├── parse_testdata.h │ │ ├── selective_build_test.cc │ │ ├── split.cc │ │ ├── split.h │ │ ├── split_test.cc │ │ ├── string_util.cc │ │ ├── string_util.h │ │ ├── string_util_wrapper.cc │ │ ├── test_runner.h │ │ ├── test_runner_test.cc │ │ ├── tf_driver.cc │ │ ├── tf_driver.h │ │ ├── tf_driver_test.cc │ │ ├── tflite_diff_example_test.cc │ │ ├── tflite_diff_flags.h │ │ ├── tflite_diff_util.cc │ │ ├── tflite_diff_util.h │ │ ├── tflite_driver.cc │ │ ├── tflite_driver.h │ │ ├── tflite_driver_test.cc │ │ ├── tflite_model_test.bzl │ │ ├── toco_convert.py │ │ ├── tokenize.cc │ │ ├── tokenize.h │ │ ├── tokenize_test.cc │ │ ├── util.h │ │ └── zip_test_utils.py │ ├── tflite_exported_symbols.lds │ ├── tflite_version_script.lds │ ├── tflite_with_xnnpack.cc │ ├── tflite_with_xnnpack_optional.cc │ ├── tflite_with_xnnpack_optional.h │ ├── toco │ │ ├── BUILD │ │ ├── README.md │ │ ├── allocate_transient_arrays.cc │ │ ├── allocate_transient_arrays.h │ │ ├── args.cc │ │ ├── args.h │ │ ├── dump_graphviz.cc │ │ ├── dump_graphviz.h │ │ ├── export_tensorflow.cc │ │ ├── export_tensorflow.h │ │ ├── format_port.h │ │ ├── g3doc │ │ │ └── README.md │ │ ├── graph_transformations │ │ │ ├── convert_expanddims_to_reshape.cc │ │ │ ├── convert_matrix_diag_v2_or_v3_to_v1.cc │ │ │ ├── convert_matrix_set_diag_v2_or_v3_to_v1.cc │ │ │ ├── convert_pure_conv_to_depthwise.cc │ │ │ ├── convert_reorder_axes.cc │ │ │ ├── convert_squeeze_to_reshape.cc │ │ │ ├── convert_trivial_addn_to_add.cc │ │ │ ├── convert_trivial_pack_to_reshape.cc │ │ │ ├── convert_trivial_tile_to_concat.cc │ │ │ ├── convert_trivial_transpose_to_reshape.cc │ │ │ ├── create_im2col_arrays.cc │ │ │ ├── dequantize.cc │ │ │ ├── drop_fake_quant.cc │ │ │ ├── drop_im2col_arrays.cc │ │ │ ├── ensure_bias_vectors.cc │ │ │ ├── ensure_uint8_weights_safe_for_fast_int8_kernels.cc │ │ │ ├── fuse_activation_functions.cc │ │ │ ├── fuse_binary_into_following_affine.cc │ │ │ ├── fuse_binary_into_preceding_affine.cc │ │ │ ├── fuse_broadcast_into_following_binary.cc │ │ │ ├── graph_transformations.cc │ │ │ ├── graph_transformations.h │ │ │ ├── group_bidirectional_sequence_ops.cc │ │ │ ├── hardcode_min_max.cc │ │ │ ├── identify_dilated_conv.cc │ │ │ ├── identify_hardswish.cc │ │ │ ├── identify_l2_normalization.cc │ │ │ ├── identify_l2_pool.cc │ │ │ ├── identify_lstm.cc │ │ │ ├── identify_lstm_merge_inputs.cc │ │ │ ├── identify_lstm_split_inputs.cc │ │ │ ├── identify_nearest_upsample.cc │ │ │ ├── identify_prelu.cc │ │ │ ├── identify_relu1.cc │ │ │ ├── identify_util.cc │ │ │ ├── identify_util.h │ │ │ ├── lstm_utils.cc │ │ │ ├── lstm_utils.h │ │ │ ├── make_initial_dequantize_operator.cc │ │ │ ├── merge_reshape_into_preceding_transpose.cc │ │ │ ├── move_binary_operator_before_reshape.cc │ │ │ ├── propagate_activation_function_into_constants.cc │ │ │ ├── propagate_array_data_types.cc │ │ │ ├── propagate_default_min_max.cc │ │ │ ├── propagate_fake_quant_num_bits.cc │ │ │ ├── propagate_fixed_sizes.cc │ │ │ ├── quantization_util.cc │ │ │ ├── quantization_util.h │ │ │ ├── quantize.cc │ │ │ ├── read_array_minmax_and_narrow_range_from_fake_quant.cc │ │ │ ├── remove_final_dequantize_op.cc │ │ │ ├── remove_successive_transpose.cc │ │ │ ├── remove_tensorflow_assert.cc │ │ │ ├── remove_tensorflow_identity.cc │ │ │ ├── remove_trivial_binary.cc │ │ │ ├── remove_trivial_concatenation.cc │ │ │ ├── remove_trivial_concatenation_input.cc │ │ │ ├── remove_trivial_fake_quant.cc │ │ │ ├── remove_trivial_passthrough.cc │ │ │ ├── remove_trivial_passthrough.h │ │ │ ├── remove_trivial_quantized_activation_func.cc │ │ │ ├── remove_trivial_quantized_min_max.cc │ │ │ ├── remove_trivial_reshape.cc │ │ │ ├── remove_trivial_slice.cc │ │ │ ├── remove_unused_op.cc │ │ │ ├── reorder_elementwise_unary.cc │ │ │ ├── reorder_reshape_transpose.cc │ │ │ ├── resolve_batch_normalization.cc │ │ │ ├── resolve_batch_to_space_nd_attributes.cc │ │ │ ├── resolve_constant_binary.cc │ │ │ ├── resolve_constant_concatenation.cc │ │ │ ├── resolve_constant_fake_quant.cc │ │ │ ├── resolve_constant_fill.cc │ │ │ ├── resolve_constant_gather.cc │ │ │ ├── resolve_constant_pack.cc │ │ │ ├── resolve_constant_random_uniform.cc │ │ │ ├── resolve_constant_range.cc │ │ │ ├── resolve_constant_reshape.cc │ │ │ ├── resolve_constant_select.cc │ │ │ ├── resolve_constant_shape_or_rank.cc │ │ │ ├── resolve_constant_slice.cc │ │ │ ├── resolve_constant_strided_slice.cc │ │ │ ├── resolve_constant_tile.cc │ │ │ ├── resolve_constant_transpose.cc │ │ │ ├── resolve_constant_unary.cc │ │ │ ├── resolve_fake_quant_args_from_vars.cc │ │ │ ├── resolve_gather_attributes.cc │ │ │ ├── resolve_multiply_by_zero.cc │ │ │ ├── resolve_pad_attributes.cc │ │ │ ├── resolve_padv2_attributes.cc │ │ │ ├── resolve_reduce_attributes.cc │ │ │ ├── resolve_reorder_axes.cc │ │ │ ├── resolve_reshape_attributes.cc │ │ │ ├── resolve_slice_attributes.cc │ │ │ ├── resolve_space_to_batch_nd_attributes.cc │ │ │ ├── resolve_squeeze_attributes.cc │ │ │ ├── resolve_strided_slice_attributes.cc │ │ │ ├── resolve_tensorflow_concat.cc │ │ │ ├── resolve_tensorflow_matmul.cc │ │ │ ├── resolve_tensorflow_merge.cc │ │ │ ├── resolve_tensorflow_switch.cc │ │ │ ├── resolve_transpose_attributes.cc │ │ │ ├── shuffle_fc_weights.cc │ │ │ ├── tests │ │ │ │ ├── BUILD │ │ │ │ ├── fuse_binary_into_following_affine_test.cc │ │ │ │ ├── fuse_binary_into_preceding_affine_test.cc │ │ │ │ ├── identify_l2_normalization_test.cc │ │ │ │ ├── identify_l2_pool_test.cc │ │ │ │ ├── lstm_utils_test.cc │ │ │ │ ├── remove_successive_transpose_test.cc │ │ │ │ ├── resolve_constant_concatenation_test.cc │ │ │ │ ├── resolve_constant_unary_test.cc │ │ │ │ └── unpack_quantize_test.cc │ │ │ ├── unfuse_activation_functions.cc │ │ │ ├── unpartition_embedding_lookup.cc │ │ │ └── unroll_batch_matmul.cc │ │ ├── import_tensorflow.cc │ │ ├── import_tensorflow.h │ │ ├── import_tensorflow_test.cc │ │ ├── logging │ │ │ ├── BUILD │ │ │ ├── conversion_log_util.cc │ │ │ ├── conversion_log_util.h │ │ │ ├── conversion_log_util_test.cc │ │ │ ├── gen_html.py │ │ │ ├── gen_html_test.py │ │ │ ├── template.html │ │ │ ├── testdata │ │ │ │ ├── BUILD │ │ │ │ ├── generated.html │ │ │ │ ├── toco_log_after.pb │ │ │ │ ├── toco_log_before.pb │ │ │ │ ├── toco_tf_graph.dot │ │ │ │ └── toco_tflite_graph.dot │ │ │ └── toco_conversion_log.proto │ │ ├── model.h │ │ ├── model_cmdline_flags.cc │ │ ├── model_cmdline_flags.h │ │ ├── model_cmdline_flags_test.cc │ │ ├── model_flags.proto │ │ ├── python │ │ │ ├── BUILD │ │ │ ├── tensorflow_wrap_toco.py │ │ │ ├── toco_from_protos.py │ │ │ ├── toco_from_protos_test.py │ │ │ ├── toco_python_api.cc │ │ │ └── toco_python_api.h │ │ ├── runtime │ │ │ ├── common.h │ │ │ └── types.h │ │ ├── tensorflow_graph_matching │ │ │ ├── BUILD │ │ │ ├── cluster.cc │ │ │ ├── cluster.h │ │ │ ├── cluster_utils.cc │ │ │ ├── cluster_utils.h │ │ │ ├── resolve_cluster.cc │ │ │ ├── resolve_cluster.h │ │ │ ├── resolve_svdf.cc │ │ │ ├── resolve_svdf.h │ │ │ └── resolve_svdf_test.cc │ │ ├── tensorflow_util.cc │ │ ├── tensorflow_util.h │ │ ├── tflite │ │ │ ├── BUILD │ │ │ ├── builtin_operator.h │ │ │ ├── custom_operator.h │ │ │ ├── export.cc │ │ │ ├── export.h │ │ │ ├── export_test.cc │ │ │ ├── import.cc │ │ │ ├── import.h │ │ │ ├── import_test.cc │ │ │ ├── op_version.cc │ │ │ ├── op_version.h │ │ │ ├── op_version_test.cc │ │ │ ├── operator.cc │ │ │ ├── operator.h │ │ │ ├── operator_test.cc │ │ │ ├── simple_operator.h │ │ │ ├── types.cc │ │ │ ├── types.h │ │ │ └── types_test.cc │ │ ├── toco.cc │ │ ├── toco_cmdline_flags.cc │ │ ├── toco_cmdline_flags.h │ │ ├── toco_cmdline_flags_test.cc │ │ ├── toco_convert.cc │ │ ├── toco_convert.h │ │ ├── toco_convert_test.cc │ │ ├── toco_flags.proto │ │ ├── toco_graphviz_dump_options.cc │ │ ├── toco_graphviz_dump_options.h │ │ ├── toco_port.cc │ │ ├── toco_port.h │ │ ├── toco_port_test.cc │ │ ├── toco_tooling.cc │ │ ├── toco_tooling.h │ │ ├── toco_types.h │ │ ├── tooling_util.cc │ │ ├── tooling_util.h │ │ ├── tooling_util_test.cc │ │ └── types.proto │ ├── tools │ │ ├── BUILD │ │ ├── benchmark │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── android │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── BUILD │ │ │ │ ├── README.md │ │ │ │ ├── jni │ │ │ │ │ └── benchmark_model_jni.cc │ │ │ │ └── src │ │ │ │ │ └── org │ │ │ │ │ └── tensorflow │ │ │ │ │ └── lite │ │ │ │ │ └── benchmark │ │ │ │ │ ├── BenchmarkModel.java │ │ │ │ │ └── BenchmarkModelActivity.java │ │ │ ├── benchmark_main.cc │ │ │ ├── benchmark_model.cc │ │ │ ├── benchmark_model.h │ │ │ ├── benchmark_params.h │ │ │ ├── benchmark_performance_options.cc │ │ │ ├── benchmark_performance_options.h │ │ │ ├── benchmark_plus_flex_main.cc │ │ │ ├── benchmark_test.cc │ │ │ ├── benchmark_tflite_model.cc │ │ │ ├── benchmark_tflite_model.h │ │ │ ├── benchmark_tflite_performance_options_main.cc │ │ │ ├── benchmark_utils.cc │ │ │ ├── benchmark_utils.h │ │ │ ├── benchmark_utils_test.cc │ │ │ ├── experimental │ │ │ │ ├── c │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── benchmark_c_api.cc │ │ │ │ │ ├── benchmark_c_api.h │ │ │ │ │ └── c_api_types.h │ │ │ │ ├── firebase │ │ │ │ │ └── android │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── jni │ │ │ │ │ │ └── benchmark_model_jni.cc │ │ │ │ │ │ └── src │ │ │ │ │ │ └── org │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ └── lite │ │ │ │ │ │ └── benchmark │ │ │ │ │ │ └── firebase │ │ │ │ │ │ ├── BenchmarkModel.java │ │ │ │ │ │ └── BenchmarkModelActivity.java │ │ │ │ └── ios │ │ │ │ │ └── BUILD.apple │ │ │ ├── ios │ │ │ │ ├── README.md │ │ │ │ ├── TFLiteBenchmark │ │ │ │ │ └── TFLiteBenchmark │ │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ │ └── Main.storyboard │ │ │ │ │ │ ├── BenchmarkViewController.h │ │ │ │ │ │ ├── BenchmarkViewController.mm │ │ │ │ │ │ ├── Frameworks │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── benchmark_data │ │ │ │ │ │ └── benchmark_params.json │ │ │ │ │ │ └── main.m │ │ │ │ └── build_benchmark_framework.sh │ │ │ ├── profiling_listener.cc │ │ │ └── profiling_listener.h │ │ ├── build_aar.sh │ │ ├── build_aar_with_docker.sh │ │ ├── cmake │ │ │ ├── README.md │ │ │ └── modules │ │ │ │ ├── Findeigen.cmake │ │ │ │ ├── Findfarmhash.cmake │ │ │ │ ├── Findfft2d.cmake │ │ │ │ ├── Findflatbuffers.cmake │ │ │ │ ├── Findgemmlowp.cmake │ │ │ │ ├── Findneon2sse.cmake │ │ │ │ ├── Findopencl_headers.cmake │ │ │ │ ├── Findruy.cmake │ │ │ │ ├── Findvulkan_headers.cmake │ │ │ │ ├── Findxnnpack.cmake │ │ │ │ ├── OverridableFetchContent.cmake │ │ │ │ ├── abseil-cpp.cmake │ │ │ │ ├── absl-config.cmake │ │ │ │ ├── eigen.cmake │ │ │ │ ├── farmhash.cmake │ │ │ │ ├── farmhash │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── fft2d.cmake │ │ │ │ ├── fft2d │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── flatbuffers.cmake │ │ │ │ ├── gemmlowp.cmake │ │ │ │ ├── gemmlowp │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── neon2sse.cmake │ │ │ │ ├── opencl_headers.cmake │ │ │ │ ├── ruy.cmake │ │ │ │ ├── ruy │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── vulkan_headers.cmake │ │ │ │ └── xnnpack.cmake │ │ ├── command_line_flags.cc │ │ ├── command_line_flags.h │ │ ├── command_line_flags_test.cc │ │ ├── convert_image_to_csv.py │ │ ├── convert_image_to_csv_test.py │ │ ├── delegates │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── coreml_delegate_provider.cc │ │ │ ├── default_execution_provider.cc │ │ │ ├── delegate_provider.h │ │ │ ├── external_delegate_provider.cc │ │ │ ├── gpu_delegate_provider.cc │ │ │ ├── hexagon_delegate_provider.cc │ │ │ ├── nnapi_delegate_provider.cc │ │ │ └── xnnpack_delegate_provider.cc │ │ ├── evaluation │ │ │ ├── BUILD │ │ │ ├── evaluation_delegate_provider.cc │ │ │ ├── evaluation_delegate_provider.h │ │ │ ├── evaluation_delegate_provider_test.cc │ │ │ ├── evaluation_stage.h │ │ │ ├── proto │ │ │ │ ├── BUILD │ │ │ │ ├── evaluation_config.proto │ │ │ │ ├── evaluation_stages.proto │ │ │ │ └── preprocessing_steps.proto │ │ │ ├── stages │ │ │ │ ├── BUILD │ │ │ │ ├── image_classification_stage.cc │ │ │ │ ├── image_classification_stage.h │ │ │ │ ├── image_preprocessing_stage.cc │ │ │ │ ├── image_preprocessing_stage.h │ │ │ │ ├── image_preprocessing_stage_test.cc │ │ │ │ ├── inference_profiler_stage.cc │ │ │ │ ├── inference_profiler_stage.h │ │ │ │ ├── inference_profiler_stage_test.cc │ │ │ │ ├── object_detection_average_precision_stage.cc │ │ │ │ ├── object_detection_average_precision_stage.h │ │ │ │ ├── object_detection_average_precision_stage_test.cc │ │ │ │ ├── object_detection_stage.cc │ │ │ │ ├── object_detection_stage.h │ │ │ │ ├── testdata │ │ │ │ │ └── grace_hopper.jpg │ │ │ │ ├── tflite_inference_stage.cc │ │ │ │ ├── tflite_inference_stage.h │ │ │ │ ├── tflite_inference_stage_test.cc │ │ │ │ ├── topk_accuracy_eval_stage.cc │ │ │ │ ├── topk_accuracy_eval_stage.h │ │ │ │ ├── topk_accuracy_eval_stage_test.cc │ │ │ │ └── utils │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── image_metrics.cc │ │ │ │ │ ├── image_metrics.h │ │ │ │ │ └── image_metrics_test.cc │ │ │ ├── tasks │ │ │ │ ├── BUILD │ │ │ │ ├── build_def.bzl │ │ │ │ ├── coco_object_detection │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── README.md │ │ │ │ │ ├── preprocess_coco_minival.py │ │ │ │ │ └── run_eval.cc │ │ │ │ ├── imagenet_image_classification │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── README.md │ │ │ │ │ ├── generate_validation_labels.py │ │ │ │ │ └── run_eval.cc │ │ │ │ ├── inference_diff │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── README.md │ │ │ │ │ └── run_eval.cc │ │ │ │ ├── task_executor.cc │ │ │ │ ├── task_executor.h │ │ │ │ └── task_executor_main.cc │ │ │ ├── testdata │ │ │ │ ├── empty.txt │ │ │ │ └── labels.txt │ │ │ ├── utils.cc │ │ │ ├── utils.h │ │ │ └── utils_test.cc │ │ ├── flatbuffer_utils.py │ │ ├── flatbuffer_utils_test.py │ │ ├── gen_op_registration.cc │ │ ├── gen_op_registration.h │ │ ├── gen_op_registration_main.cc │ │ ├── gen_op_registration_test.cc │ │ ├── list_flex_ops.cc │ │ ├── list_flex_ops.h │ │ ├── list_flex_ops_main.cc │ │ ├── list_flex_ops_no_kernel.cc │ │ ├── list_flex_ops_test.cc │ │ ├── logging.h │ │ ├── make │ │ │ ├── Makefile │ │ │ ├── build_aarch64_lib.sh │ │ │ ├── build_bbb_lib.sh │ │ │ ├── build_ios_universal_lib.sh │ │ │ ├── build_lib.sh │ │ │ ├── build_rpi_lib.sh │ │ │ ├── download_dependencies.sh │ │ │ └── targets │ │ │ │ ├── aarch64_makefile.inc │ │ │ │ ├── bbb_makefile.inc │ │ │ │ ├── ios_makefile.inc │ │ │ │ ├── linux_makefile.inc │ │ │ │ ├── riscv_makefile.inc │ │ │ │ ├── rpi_makefile.inc │ │ │ │ ├── stm32f1_makefile.inc │ │ │ │ └── stm32f7_makefile.inc │ │ ├── optimize │ │ │ ├── BUILD │ │ │ ├── calibration │ │ │ │ ├── BUILD │ │ │ │ ├── builtin_logging_ops │ │ │ │ │ ├── lstm.cc │ │ │ │ │ └── lstm.h │ │ │ │ ├── calibration_common.h │ │ │ │ ├── calibration_logger.cc │ │ │ │ ├── calibration_logger.h │ │ │ │ ├── calibration_reader.cc │ │ │ │ ├── calibration_reader.h │ │ │ │ ├── calibrator.cc │ │ │ │ ├── calibrator.h │ │ │ │ ├── calibrator_test.cc │ │ │ │ ├── logging_op.h │ │ │ │ ├── logging_op_resolver.cc │ │ │ │ ├── logging_op_resolver.h │ │ │ │ └── logging_op_resolver_test.cc │ │ │ ├── g3doc │ │ │ │ └── quantize_weights.md │ │ │ ├── model_utils.cc │ │ │ ├── model_utils.h │ │ │ ├── model_utils_test.cc │ │ │ ├── modify_model_interface.cc │ │ │ ├── modify_model_interface.h │ │ │ ├── modify_model_interface_main.cc │ │ │ ├── modify_model_interface_test.cc │ │ │ ├── operator_property.cc │ │ │ ├── operator_property.h │ │ │ ├── python │ │ │ │ ├── BUILD │ │ │ │ ├── modify_model_interface.cc │ │ │ │ ├── modify_model_interface.py │ │ │ │ ├── modify_model_interface_constants.py │ │ │ │ ├── modify_model_interface_lib.py │ │ │ │ └── modify_model_interface_lib_test.py │ │ │ ├── quantization_utils.cc │ │ │ ├── quantization_utils.h │ │ │ ├── quantization_utils_test.cc │ │ │ ├── quantization_wrapper.cc │ │ │ ├── quantization_wrapper.h │ │ │ ├── quantization_wrapper_utils.cc │ │ │ ├── quantization_wrapper_utils.h │ │ │ ├── quantization_wrapper_utils_test.cc │ │ │ ├── quantize_model.cc │ │ │ ├── quantize_model.h │ │ │ ├── quantize_model_test.cc │ │ │ ├── quantize_weights.cc │ │ │ ├── quantize_weights.h │ │ │ ├── quantize_weights_test.cc │ │ │ ├── sparsity │ │ │ │ ├── BUILD │ │ │ │ ├── format_converter.cc │ │ │ │ ├── format_converter.h │ │ │ │ ├── format_converter_test.cc │ │ │ │ └── python │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── format_converter_extension.cc │ │ │ │ │ └── format_converter_extension_test.py │ │ │ ├── test_util.cc │ │ │ ├── test_util.h │ │ │ └── testdata │ │ │ │ ├── README.md │ │ │ │ ├── add_with_const_input.bin │ │ │ │ ├── argmax.bin │ │ │ │ ├── concat.bin │ │ │ │ ├── custom_op.bin │ │ │ │ ├── fc.bin │ │ │ │ ├── lstm_calibrated.bin │ │ │ │ ├── lstm_calibrated2.bin │ │ │ │ ├── lstm_quantized.bin │ │ │ │ ├── lstm_quantized2.bin │ │ │ │ ├── maximum.bin │ │ │ │ ├── minimum.bin │ │ │ │ ├── mixed.bin │ │ │ │ ├── mixed16x8.bin │ │ │ │ ├── multi_input_add_reshape.bin │ │ │ │ ├── pack.bin │ │ │ │ ├── quantized_with_gather.bin │ │ │ │ ├── single_avg_pool_min_minus_5_max_plus_5.bin │ │ │ │ ├── single_conv_no_bias.bin │ │ │ │ ├── single_conv_weights_min_0_max_plus_10.bin │ │ │ │ ├── single_conv_weights_min_minus_127_max_plus_127.bin │ │ │ │ ├── single_softmax_min_minus_5_max_plus_5.bin │ │ │ │ ├── split.bin │ │ │ │ ├── svdf_calibrated.bin │ │ │ │ ├── svdf_quantized.bin │ │ │ │ ├── transpose.bin │ │ │ │ ├── unidirectional_sequence_lstm_calibrated.bin │ │ │ │ ├── unidirectional_sequence_lstm_quantized.bin │ │ │ │ ├── unpack.bin │ │ │ │ └── weight_shared_between_convs.bin │ │ ├── pip_package │ │ │ ├── Dockerfile │ │ │ ├── MANIFEST.in │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── build_pip_package.sh │ │ │ ├── build_pip_package_with_bazel.sh │ │ │ ├── debian │ │ │ │ ├── changelog │ │ │ │ ├── compat │ │ │ │ ├── control │ │ │ │ ├── copyright │ │ │ │ └── rules │ │ │ ├── setup.py │ │ │ ├── setup_with_bazel.py │ │ │ └── update_sources.sh │ │ ├── randomize_weights.py │ │ ├── reverse_xxd_dump_from_cc.py │ │ ├── sanitizers │ │ │ ├── BUILD │ │ │ └── sanitizers_pybind11.cc │ │ ├── signature │ │ │ ├── BUILD │ │ │ ├── signature_def_util.cc │ │ │ ├── signature_def_util.h │ │ │ ├── signature_def_util_test.cc │ │ │ ├── signature_def_util_wrapper_pybind11.cc │ │ │ ├── signature_def_utils.py │ │ │ └── signature_def_utils_test.py │ │ ├── strip_strings.py │ │ ├── test_utils.py │ │ ├── tool_params.cc │ │ ├── tool_params.h │ │ ├── tool_params_test.cc │ │ ├── verifier.cc │ │ ├── verifier.h │ │ ├── verifier_test.cc │ │ ├── versioning │ │ │ ├── BUILD │ │ │ ├── op_version.cc │ │ │ ├── op_version.h │ │ │ ├── op_version_test.cc │ │ │ ├── runtime_version.cc │ │ │ ├── runtime_version.h │ │ │ └── runtime_version_test.cc │ │ ├── visualize.py │ │ ├── visualize_test.py │ │ └── zip_files.py │ ├── tutorials │ │ ├── BUILD │ │ ├── dataset.py │ │ └── mnist_tflite.py │ ├── type_to_tflitetype.h │ ├── type_to_tflitetype_test.cc │ ├── util.cc │ ├── util.h │ ├── util_test.cc │ └── version.h ├── opensource_only.files ├── tensorflow.bzl ├── tf_exported_symbols.lds ├── tf_framework_version_script.lds ├── tf_version_script.lds ├── version_check.bzl ├── virtual_root_template_v1.__init__.py ├── virtual_root_template_v2.__init__.py └── workspace.bzl ├── third_party ├── eigen.BUILD ├── eigen3 │ ├── BUILD │ ├── Eigen │ │ ├── Cholesky │ │ ├── Core │ │ ├── Eigenvalues │ │ ├── LU │ │ ├── OrderingMethods │ │ ├── QR │ │ ├── SVD │ │ ├── SparseCholesky │ │ └── SparseCore │ ├── LICENSE │ ├── gpu_packet_math.patch │ └── unsupported │ │ └── Eigen │ │ ├── CXX11 │ │ ├── FixedPoint │ │ ├── Tensor │ │ ├── ThreadPool │ │ └── src │ │ │ └── FixedPoint │ │ │ ├── FixedPointTypes.h │ │ │ ├── MatMatProduct.h │ │ │ ├── MatMatProductAVX2.h │ │ │ ├── MatMatProductNEON.h │ │ │ ├── MatVecProduct.h │ │ │ ├── PacketMathAVX.h │ │ │ ├── PacketMathAVX2.h │ │ │ ├── PacketMathAVX512.h │ │ │ ├── TypeCastingAVX2.h │ │ │ └── TypeCastingAVX512.h │ │ ├── MatrixFunctions │ │ └── SpecialFunctions └── fft2d │ ├── BUILD │ ├── LICENSE │ ├── fft.h │ ├── fft2d.BUILD │ └── fft2d.h └── tools ├── build.sh ├── build_android.sh ├── build_linux.sh └── build_windows.bat /ACKNOWLEDGMENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/ACKNOWLEDGMENTS -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/AUTHORS -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/BUILD -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/ISSUES.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/README_en.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/RELEASE.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/SECURITY.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/WORKSPACE -------------------------------------------------------------------------------- /arm_compiler.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/arm_compiler.BUILD -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/configure -------------------------------------------------------------------------------- /configure.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/configure.cmd -------------------------------------------------------------------------------- /configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/configure.py -------------------------------------------------------------------------------- /docs/environment setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/docs/environment setup.md -------------------------------------------------------------------------------- /models.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/models.BUILD -------------------------------------------------------------------------------- /tensorflow/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/.clang-format -------------------------------------------------------------------------------- /tensorflow/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/BUILD -------------------------------------------------------------------------------- /tensorflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/__init__.py -------------------------------------------------------------------------------- /tensorflow/api_template.__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/api_template.__init__.py -------------------------------------------------------------------------------- /tensorflow/api_template_v1.__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/api_template_v1.__init__.py -------------------------------------------------------------------------------- /tensorflow/compat_template.__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/compat_template.__init__.py -------------------------------------------------------------------------------- /tensorflow/compat_template_v1.__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/compat_template_v1.__init__.py -------------------------------------------------------------------------------- /tensorflow/core/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/BUILD -------------------------------------------------------------------------------- /tensorflow/core/platform/abi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/abi.cc -------------------------------------------------------------------------------- /tensorflow/core/platform/abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/abi.h -------------------------------------------------------------------------------- /tensorflow/core/platform/bfloat16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/bfloat16.h -------------------------------------------------------------------------------- /tensorflow/core/platform/byte_order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/byte_order.h -------------------------------------------------------------------------------- /tensorflow/core/platform/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/context.h -------------------------------------------------------------------------------- /tensorflow/core/platform/cord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/cord.h -------------------------------------------------------------------------------- /tensorflow/core/platform/cpu_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/cpu_info.cc -------------------------------------------------------------------------------- /tensorflow/core/platform/cpu_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/cpu_info.h -------------------------------------------------------------------------------- /tensorflow/core/platform/ctstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/ctstring.h -------------------------------------------------------------------------------- /tensorflow/core/platform/default/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/default/context.h -------------------------------------------------------------------------------- /tensorflow/core/platform/default/cord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/default/cord.h -------------------------------------------------------------------------------- /tensorflow/core/platform/default/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/default/logging.h -------------------------------------------------------------------------------- /tensorflow/core/platform/default/mutex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/default/mutex.cc -------------------------------------------------------------------------------- /tensorflow/core/platform/default/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/default/mutex.h -------------------------------------------------------------------------------- /tensorflow/core/platform/denormal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/denormal.cc -------------------------------------------------------------------------------- /tensorflow/core/platform/denormal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/denormal.h -------------------------------------------------------------------------------- /tensorflow/core/platform/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/env.cc -------------------------------------------------------------------------------- /tensorflow/core/platform/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/env.h -------------------------------------------------------------------------------- /tensorflow/core/platform/env_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/env_time.h -------------------------------------------------------------------------------- /tensorflow/core/platform/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/errors.h -------------------------------------------------------------------------------- /tensorflow/core/platform/file_statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/file_statistics.h -------------------------------------------------------------------------------- /tensorflow/core/platform/file_system.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/file_system.cc -------------------------------------------------------------------------------- /tensorflow/core/platform/file_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/file_system.h -------------------------------------------------------------------------------- /tensorflow/core/platform/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/hash.cc -------------------------------------------------------------------------------- /tensorflow/core/platform/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/hash.h -------------------------------------------------------------------------------- /tensorflow/core/platform/host_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/host_info.h -------------------------------------------------------------------------------- /tensorflow/core/platform/init_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/init_main.h -------------------------------------------------------------------------------- /tensorflow/core/platform/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/logging.h -------------------------------------------------------------------------------- /tensorflow/core/platform/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/macros.h -------------------------------------------------------------------------------- /tensorflow/core/platform/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/mutex.h -------------------------------------------------------------------------------- /tensorflow/core/platform/numa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/numa.h -------------------------------------------------------------------------------- /tensorflow/core/platform/numbers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/numbers.cc -------------------------------------------------------------------------------- /tensorflow/core/platform/numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/numbers.h -------------------------------------------------------------------------------- /tensorflow/core/platform/path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/path.cc -------------------------------------------------------------------------------- /tensorflow/core/platform/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/path.h -------------------------------------------------------------------------------- /tensorflow/core/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/platform.h -------------------------------------------------------------------------------- /tensorflow/core/platform/protobuf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/protobuf.cc -------------------------------------------------------------------------------- /tensorflow/core/platform/protobuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/protobuf.h -------------------------------------------------------------------------------- /tensorflow/core/platform/raw_coding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/raw_coding.h -------------------------------------------------------------------------------- /tensorflow/core/platform/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/regexp.h -------------------------------------------------------------------------------- /tensorflow/core/platform/resource_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/resource_loader.h -------------------------------------------------------------------------------- /tensorflow/core/platform/scanner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/scanner.cc -------------------------------------------------------------------------------- /tensorflow/core/platform/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/scanner.h -------------------------------------------------------------------------------- /tensorflow/core/platform/setround.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/setround.cc -------------------------------------------------------------------------------- /tensorflow/core/platform/setround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/setround.h -------------------------------------------------------------------------------- /tensorflow/core/platform/stacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/stacktrace.h -------------------------------------------------------------------------------- /tensorflow/core/platform/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/status.cc -------------------------------------------------------------------------------- /tensorflow/core/platform/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/status.h -------------------------------------------------------------------------------- /tensorflow/core/platform/str_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/str_util.cc -------------------------------------------------------------------------------- /tensorflow/core/platform/str_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/str_util.h -------------------------------------------------------------------------------- /tensorflow/core/platform/strcat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/strcat.cc -------------------------------------------------------------------------------- /tensorflow/core/platform/strcat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/strcat.h -------------------------------------------------------------------------------- /tensorflow/core/platform/stringpiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/stringpiece.h -------------------------------------------------------------------------------- /tensorflow/core/platform/stringprintf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/stringprintf.cc -------------------------------------------------------------------------------- /tensorflow/core/platform/stringprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/stringprintf.h -------------------------------------------------------------------------------- /tensorflow/core/platform/subprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/subprocess.h -------------------------------------------------------------------------------- /tensorflow/core/platform/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/test.h -------------------------------------------------------------------------------- /tensorflow/core/platform/threadpool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/threadpool.cc -------------------------------------------------------------------------------- /tensorflow/core/platform/threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/threadpool.h -------------------------------------------------------------------------------- /tensorflow/core/platform/tracing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/tracing.cc -------------------------------------------------------------------------------- /tensorflow/core/platform/tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/tracing.h -------------------------------------------------------------------------------- /tensorflow/core/platform/tstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/tstring.h -------------------------------------------------------------------------------- /tensorflow/core/platform/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/platform/types.h -------------------------------------------------------------------------------- /tensorflow/core/public/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/public/BUILD -------------------------------------------------------------------------------- /tensorflow/core/public/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/public/README.md -------------------------------------------------------------------------------- /tensorflow/core/public/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/public/version.h -------------------------------------------------------------------------------- /tensorflow/core/util/stats_calculator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/util/stats_calculator.cc -------------------------------------------------------------------------------- /tensorflow/core/util/stats_calculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/core/util/stats_calculator.h -------------------------------------------------------------------------------- /tensorflow/lite/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/CMakeLists.txt -------------------------------------------------------------------------------- /tensorflow/lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/README.md -------------------------------------------------------------------------------- /tensorflow/lite/abuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/abuild.bat -------------------------------------------------------------------------------- /tensorflow/lite/allocation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/allocation.cc -------------------------------------------------------------------------------- /tensorflow/lite/allocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/allocation.h -------------------------------------------------------------------------------- /tensorflow/lite/arena_planner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/arena_planner.cc -------------------------------------------------------------------------------- /tensorflow/lite/arena_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/arena_planner.h -------------------------------------------------------------------------------- /tensorflow/lite/arena_planner_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/arena_planner_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/build_def.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/build_def.bzl -------------------------------------------------------------------------------- /tensorflow/lite/builtin_op_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/builtin_op_data.h -------------------------------------------------------------------------------- /tensorflow/lite/builtin_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/builtin_ops.h -------------------------------------------------------------------------------- /tensorflow/lite/c/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/c/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/c/README.md -------------------------------------------------------------------------------- /tensorflow/lite/c/builtin_op_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/c/builtin_op_data.h -------------------------------------------------------------------------------- /tensorflow/lite/c/builtin_op_data_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/c/builtin_op_data_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/c/c_api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/c/c_api.cc -------------------------------------------------------------------------------- /tensorflow/lite/c/c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/c/c_api.h -------------------------------------------------------------------------------- /tensorflow/lite/c/c_api_experimental.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/c/c_api_experimental.cc -------------------------------------------------------------------------------- /tensorflow/lite/c/c_api_experimental.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/c/c_api_experimental.h -------------------------------------------------------------------------------- /tensorflow/lite/c/c_api_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/c/c_api_internal.h -------------------------------------------------------------------------------- /tensorflow/lite/c/c_api_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/c/c_api_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/c/c_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/c/c_test.c -------------------------------------------------------------------------------- /tensorflow/lite/c/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/c/common.c -------------------------------------------------------------------------------- /tensorflow/lite/c/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/c/common.h -------------------------------------------------------------------------------- /tensorflow/lite/c/common_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/c/common_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/c/exported_symbols.lds: -------------------------------------------------------------------------------- 1 | _TfLite* 2 | -------------------------------------------------------------------------------- /tensorflow/lite/c/version_script.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/c/version_script.lds -------------------------------------------------------------------------------- /tensorflow/lite/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/context.h -------------------------------------------------------------------------------- /tensorflow/lite/context_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/context_util.h -------------------------------------------------------------------------------- /tensorflow/lite/core/api/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/core/api/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/core/api/error_reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/core/api/error_reporter.cc -------------------------------------------------------------------------------- /tensorflow/lite/core/api/error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/core/api/error_reporter.h -------------------------------------------------------------------------------- /tensorflow/lite/core/api/op_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/core/api/op_resolver.cc -------------------------------------------------------------------------------- /tensorflow/lite/core/api/op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/core/api/op_resolver.h -------------------------------------------------------------------------------- /tensorflow/lite/core/api/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/core/api/profiler.h -------------------------------------------------------------------------------- /tensorflow/lite/core/api/tensor_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/core/api/tensor_utils.cc -------------------------------------------------------------------------------- /tensorflow/lite/core/api/tensor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/core/api/tensor_utils.h -------------------------------------------------------------------------------- /tensorflow/lite/core/api/verifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/core/api/verifier.h -------------------------------------------------------------------------------- /tensorflow/lite/core/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/core/macros.h -------------------------------------------------------------------------------- /tensorflow/lite/core/subgraph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/core/subgraph.cc -------------------------------------------------------------------------------- /tensorflow/lite/core/subgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/core/subgraph.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/delegates/delegate_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/delegate_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/delegates/external/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/external/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/delegates/flex/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/flex/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/delegates/flex/delegate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/flex/delegate.cc -------------------------------------------------------------------------------- /tensorflow/lite/delegates/flex/delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/flex/delegate.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/flex/kernel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/flex/kernel.cc -------------------------------------------------------------------------------- /tensorflow/lite/delegates/flex/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/flex/kernel.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/flex/test/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/flex/test/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/delegates/flex/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/flex/test_util.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/flex/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/flex/util.cc -------------------------------------------------------------------------------- /tensorflow/lite/delegates/flex/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/flex/util.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/README.md -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/api.cc -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/api.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/cl/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/cl/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/cl/api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/cl/api.cc -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/cl/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/cl/api.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/cl/buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/cl/buffer.cc -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/cl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/cl/buffer.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/cl/cl_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/cl/cl_test.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/cl/tensor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/cl/tensor.cc -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/cl/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/cl/tensor.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/cl/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/cl/util.cc -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/cl/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/cl/util.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/common/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/common/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/delegate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/delegate.cc -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/delegate.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/gl/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/gl/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/gl/api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/gl/api.cc -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/gl/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/gl/api.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/gl/api2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/gl/api2.cc -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/gl/api2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/gl/api2.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/gl/gl_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/gl/gl_call.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/gl/gl_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/gl/gl_sync.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/gl/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/gl/object.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/gl/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/gl/runtime.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/gl/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/gl/stats.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/metal/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/metal/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/metal/api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/metal/api.cc -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/metal/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/metal/api.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/metal/host.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/metal/host.m -------------------------------------------------------------------------------- /tensorflow/lite/delegates/gpu/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/gpu/spi.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/hexagon/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/hexagon/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/delegates/hexagon/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/hexagon/utils.cc -------------------------------------------------------------------------------- /tensorflow/lite/delegates/hexagon/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/hexagon/utils.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/nnapi/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/nnapi/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/delegates/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/status.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/utils.cc -------------------------------------------------------------------------------- /tensorflow/lite/delegates/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/utils.h -------------------------------------------------------------------------------- /tensorflow/lite/delegates/utils/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/utils/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/delegates/utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/utils_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/delegates/xnnpack/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/delegates/xnnpack/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/error_reporter.h -------------------------------------------------------------------------------- /tensorflow/lite/examples/ios/camera/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/lite/examples/label_image/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/examples/label_image/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/examples/minimal/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/examples/minimal/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/examples/python/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/examples/python/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/examples/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/examples/python/README.md -------------------------------------------------------------------------------- /tensorflow/lite/experimental/c/README.md: -------------------------------------------------------------------------------- 1 | The C API has been migrated to [lite/c](../../c/README.md). 2 | -------------------------------------------------------------------------------- /tensorflow/lite/experimental/examples/unity/TensorFlowLitePlugin/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.4.6f1 2 | -------------------------------------------------------------------------------- /tensorflow/lite/experimental/examples/unity/TensorFlowLitePlugin/UnityPackageManager/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /tensorflow/lite/experimental/ios/allowlist_TensorFlowLiteC.txt: -------------------------------------------------------------------------------- 1 | _TfLite* 2 | -------------------------------------------------------------------------------- /tensorflow/lite/experimental/ios/ios.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/experimental/ios/ios.bzl -------------------------------------------------------------------------------- /tensorflow/lite/experimental/kernels/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/experimental/kernels/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/experimental/ruy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/experimental/ruy/LICENSE -------------------------------------------------------------------------------- /tensorflow/lite/experimental/support/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/experimental/support/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/experimental/writer/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/experimental/writer/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/_book.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/_book.yaml -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/api_docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/api_docs/index.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/convert/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/convert/index.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/convert/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/convert/metadata.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/convert/rnn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/convert/rnn.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/guide/android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/guide/android.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/guide/build_arm64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/guide/build_arm64.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/guide/build_ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/guide/build_ios.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/guide/build_rpi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/guide/build_rpi.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/guide/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/guide/faq.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/guide/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/guide/get_started.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/guide/index.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/guide/inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/guide/inference.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/guide/ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/guide/ios.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/guide/model_maker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/guide/model_maker.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/guide/ops_custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/guide/ops_custom.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/guide/ops_select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/guide/ops_select.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/guide/ops_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/guide/ops_version.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/guide/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/guide/python.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/guide/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/guide/roadmap.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/performance/gpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/performance/gpu.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/performance/nnapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/performance/nnapi.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/r1/convert/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/r1/convert/index.md -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/tf_docs_reviews.gwsq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/tf_docs_reviews.gwsq -------------------------------------------------------------------------------- /tensorflow/lite/g3doc/tools/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/g3doc/tools/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/graph_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/graph_info.cc -------------------------------------------------------------------------------- /tensorflow/lite/graph_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/graph_info.h -------------------------------------------------------------------------------- /tensorflow/lite/graph_info_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/graph_info_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/interpreter.cc -------------------------------------------------------------------------------- /tensorflow/lite/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/interpreter.h -------------------------------------------------------------------------------- /tensorflow/lite/interpreter_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/interpreter_builder.cc -------------------------------------------------------------------------------- /tensorflow/lite/interpreter_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/interpreter_builder.h -------------------------------------------------------------------------------- /tensorflow/lite/interpreter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/interpreter_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/java/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/java/AndroidManifest.xml -------------------------------------------------------------------------------- /tensorflow/lite/java/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/java/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/java/aar_with_jni.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/java/aar_with_jni.bzl -------------------------------------------------------------------------------- /tensorflow/lite/java/demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/java/demo/.gitignore -------------------------------------------------------------------------------- /tensorflow/lite/java/demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/java/demo/README.md -------------------------------------------------------------------------------- /tensorflow/lite/java/demo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/java/demo/app/build.gradle -------------------------------------------------------------------------------- /tensorflow/lite/java/demo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/java/demo/build.gradle -------------------------------------------------------------------------------- /tensorflow/lite/java/demo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/java/demo/gradlew -------------------------------------------------------------------------------- /tensorflow/lite/java/demo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/java/demo/gradlew.bat -------------------------------------------------------------------------------- /tensorflow/lite/java/demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /tensorflow/lite/java/jni/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/java/jni/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/java/ovic/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/java/ovic/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/java/ovic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/java/ovic/README.md -------------------------------------------------------------------------------- /tensorflow/lite/java/ovic/demo/app/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/java/ovic/demo/app/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/java/ovic/demo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/java/ovic/demo/gradlew -------------------------------------------------------------------------------- /tensorflow/lite/java/ovic/demo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/java/ovic/demo/gradlew.bat -------------------------------------------------------------------------------- /tensorflow/lite/java/ovic/demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /tensorflow/lite/java/proguard.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/java/proguard.flags -------------------------------------------------------------------------------- /tensorflow/lite/java/src/main/native/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/java/src/main/native/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/java/src/test/native/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/java/src/test/native/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/java/src/testdata/add.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/java/src/testdata/add.bin -------------------------------------------------------------------------------- /tensorflow/lite/java/src/testdata/invalid_model.bin: -------------------------------------------------------------------------------- 1 | This is an invalid model. -------------------------------------------------------------------------------- /tensorflow/lite/kernels/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/kernels/activations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/activations.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/add.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/add_n.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/add_n.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/add_n_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/add_n_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/add_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/add_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/arg_min_max.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/arg_min_max.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/assign_variable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/assign_variable.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/basic_rnn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/basic_rnn.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/basic_rnn_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/basic_rnn_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/batch_matmul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/batch_matmul.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/cast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/cast.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/cast_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/cast_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/ceil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/ceil.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/ceil_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/ceil_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/comparisons.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/comparisons.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/complex_support.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/complex_support.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/concatenation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/concatenation.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/conv.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/conv_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/conv_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/cpu_backend_gemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/cpu_backend_gemm.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/cumsum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/cumsum.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/cumsum_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/cumsum_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/densify.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/densify.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/densify_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/densify_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/depth_to_space.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/depth_to_space.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/depthwise_conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/depthwise_conv.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/dequantize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/dequantize.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/dequantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/dequantize.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/dequantize_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/dequantize_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/div.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/div.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/div_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/div_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/eigen_support.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/eigen_support.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/eigen_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/eigen_support.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/elementwise.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/elementwise.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/exp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/exp.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/exp_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/exp_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/expand_dims.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/expand_dims.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/fake_quant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/fake_quant.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/fake_quant_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/fake_quant_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/fill.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/fill.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/fill_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/fill_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/floor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/floor.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/floor_div.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/floor_div.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/floor_div_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/floor_div_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/floor_mod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/floor_mod.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/floor_mod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/floor_mod_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/floor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/floor_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/fully_connected.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/fully_connected.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/fully_connected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/fully_connected.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/gather.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/gather.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/gather_nd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/gather_nd.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/gather_nd_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/gather_nd_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/gather_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/gather_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/hashtable/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/hashtable/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/kernels/if.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/if.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/if_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/if_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/internal/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/internal/common.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/cppmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/internal/cppmath.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/internal/max.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/mfcc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/internal/mfcc.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/mfcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/internal/mfcc.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/internal/min.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/internal/tensor.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/internal/types.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/kernel_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/kernel_util.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/kernel_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/kernel_util.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/l2norm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/l2norm.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/l2norm_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/l2norm_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/logical.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/logical.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/logical_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/logical_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/lsh_projection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/lsh_projection.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/lstm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/lstm.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/lstm_eval.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/lstm_eval.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/lstm_eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/lstm_eval.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/lstm_eval_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/lstm_eval_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/lstm_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/lstm_shared.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/lstm_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/lstm_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/matrix_diag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/matrix_diag.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/matrix_set_diag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/matrix_set_diag.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/maximum_minimum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/maximum_minimum.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/mfcc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/mfcc.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/mfcc_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/mfcc_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/mirror_pad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/mirror_pad.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/mirror_pad_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/mirror_pad_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/mul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/mul.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/mul_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/mul_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/multinomial.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/multinomial.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/neg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/neg.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/neg_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/neg_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/numeric_verify.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/numeric_verify.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/one_hot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/one_hot.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/one_hot_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/one_hot_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/op_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/op_macros.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/pack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/pack.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/pack_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/pack_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/pad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/pad.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/pad_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/pad_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/padding.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/pooling.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/pooling.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/pooling_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/pooling_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/pow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/pow.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/pow_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/pow_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/quantize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/quantize.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/quantize_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/quantize_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/range.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/range.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/range_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/range_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/rank.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/rank.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/rank_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/rank_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/read_variable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/read_variable.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/reduce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/reduce.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/reduce_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/reduce_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/register.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/register.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/register.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/register_ref.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/register_ref.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/register_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/register_ref.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/reshape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/reshape.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/reshape_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/reshape_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/resize_bilinear.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/resize_bilinear.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/reverse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/reverse.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/reverse_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/reverse_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/rfft2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/rfft2d.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/rfft2d_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/rfft2d_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/round.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/round.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/round_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/round_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/scatter_nd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/scatter_nd.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/scatter_nd_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/scatter_nd_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/segment_sum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/segment_sum.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/select.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/select.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/select_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/select_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/shape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/shape.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/shape_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/shape_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/skip_gram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/skip_gram.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/skip_gram_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/skip_gram_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/slice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/slice.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/slice_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/slice_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/softmax_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/softmax_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/space_to_depth.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/space_to_depth.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/sparse_to_dense.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/sparse_to_dense.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/split.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/split_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/split_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/split_v.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/split_v.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/split_v_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/split_v_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/squeeze.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/squeeze.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/squeeze_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/squeeze_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/strided_slice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/strided_slice.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/sub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/sub.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/sub_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/sub_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/svdf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/svdf.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/svdf_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/svdf_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/test_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/test_main.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/test_util.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/test_util.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/test_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/test_util_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/tile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/tile.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/tile_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/tile_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/topk_v2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/topk_v2.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/topk_v2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/topk_v2_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/transpose.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/transpose.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/transpose_conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/transpose_conv.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/transpose_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/transpose_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/unique.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/unique.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/unique_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/unique_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/unpack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/unpack.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/unpack_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/unpack_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/where.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/where.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/where_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/where_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/while.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/while.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/while_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/while_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/zeros_like.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/zeros_like.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/zeros_like_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/kernels/zeros_like_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/lib_package/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/lib_package/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/memory_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/memory_planner.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/micro/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/CONTRIBUTING.md -------------------------------------------------------------------------------- /tensorflow/lite/micro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/README.md -------------------------------------------------------------------------------- /tensorflow/lite/micro/all_ops_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/all_ops_resolver.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/all_ops_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/all_ops_resolver.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/arduino/abi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/arduino/abi.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/arduino/debug_log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/arduino/debug_log.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/benchmarks/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/benchmarks/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/micro/benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/benchmarks/README.md -------------------------------------------------------------------------------- /tensorflow/lite/micro/build_def.bzl: -------------------------------------------------------------------------------- 1 | def micro_copts(): 2 | return [] 3 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/chre/debug_log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/chre/debug_log.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/compatibility.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/debug_log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/debug_log.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/debug_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/debug_log.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/ecm3531/debug_log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/ecm3531/debug_log.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/examples/image_recognition_experimental/.gitignore: -------------------------------------------------------------------------------- 1 | first_10_cifar_images.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/examples/magic_wand/train/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.16.2 2 | tensorflow==2.0.0-beta1 3 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/examples/micro_speech/.gitignore: -------------------------------------------------------------------------------- 1 | *.wav 2 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/add.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/add_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/add_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/ceil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/ceil.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/ceil_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/ceil_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/conv.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/conv_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/conv_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/ethosu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/ethosu.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/floor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/floor.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/l2norm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/l2norm.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/logical.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/logical.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/logistic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/logistic.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/micro_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/micro_ops.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/mul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/mul.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/mul_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/mul_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/neg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/neg.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/neg_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/neg_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/pack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/pack.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/pack_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/pack_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/pad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/pad.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/pad_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/pad_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/pooling.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/pooling.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/prelu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/prelu.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/quantize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/quantize.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/reduce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/reduce.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/reshape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/reshape.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/round.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/round.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/shape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/shape.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/softmax.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/softmax.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/split.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/split_v.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/split_v.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/sub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/sub.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/sub_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/sub_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/svdf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/svdf.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/svdf_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/svdf_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/tanh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/tanh.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/tanh_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/tanh_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/unpack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/kernels/unpack.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/mbed/debug_log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/mbed/debug_log.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/memory_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/memory_helpers.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/memory_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/memory_helpers.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/memory_planner/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/memory_planner/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/micro_allocator.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/micro_allocator.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/micro_interpreter.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/micro_interpreter.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/micro_op_resolver.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_profiler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/micro_profiler.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/micro_profiler.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/micro_string.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/micro_string.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_string_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/micro_string_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/micro_time.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/micro_time.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_time_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/micro_time_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/micro_utils.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/micro_utils.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_utils_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/micro_utils_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/posix/micro_time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/posix/micro_time.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/stm32f4/debug_log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/stm32f4/debug_log.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/test_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/test_helpers.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/test_helpers.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/testing/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/testing/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/micro/testing/leon_commands: -------------------------------------------------------------------------------- 1 | run 2 | quit 3 | 4 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/testing/micro_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/testing/micro_test.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/testing/stm32f4.resc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/testing/stm32f4.resc -------------------------------------------------------------------------------- /tensorflow/lite/micro/testing/util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/testing/util_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/tools/make/.gitignore: -------------------------------------------------------------------------------- 1 | downloads 2 | gen 3 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/tools/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/tools/make/Makefile -------------------------------------------------------------------------------- /tensorflow/lite/micro/tools/make/targets/apollo3evb/.gitignore: -------------------------------------------------------------------------------- 1 | startup_gcc.c 2 | am_*.c 3 | libam*.a 4 | 5 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/tools/make/targets/sparkfun_edge_makefile.inc: -------------------------------------------------------------------------------- 1 | include $(MAKEFILE_DIR)/targets/apollo3evb_makefile.inc 2 | 3 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/tools/make/templates/AUDIO_DISCO_F746NG.lib.tpl: -------------------------------------------------------------------------------- 1 | https://os.mbed.com/teams/ST/code/AUDIO_DISCO_F746NG/#7046ce26b7ed 2 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/tools/make/templates/BSP_DISCO_F746NG.lib.tpl: -------------------------------------------------------------------------------- 1 | https://os.mbed.com/teams/ST/code/BSP_DISCO_F746NG/#df2ea349c37a 2 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/tools/make/templates/LCD_DISCO_F746NG.lib.tpl: -------------------------------------------------------------------------------- 1 | http://os.mbed.com/teams/ST/code/LCD_DISCO_F746NG/#d44525b1de98 2 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/tools/make/templates/SDRAM_DISCO_F746NG.lib.tpl: -------------------------------------------------------------------------------- 1 | https://os.mbed.com/teams/ST/code/SDRAM_DISCO_F746NG/#370f402a2219 2 | -------------------------------------------------------------------------------- /tensorflow/lite/micro/xcore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/xcore/README.md -------------------------------------------------------------------------------- /tensorflow/lite/micro/xcore/debug_log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/micro/xcore/debug_log.cc -------------------------------------------------------------------------------- /tensorflow/lite/minimal_logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/minimal_logging.cc -------------------------------------------------------------------------------- /tensorflow/lite/minimal_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/minimal_logging.h -------------------------------------------------------------------------------- /tensorflow/lite/minimal_logging_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/minimal_logging_android.cc -------------------------------------------------------------------------------- /tensorflow/lite/minimal_logging_default.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/minimal_logging_default.cc -------------------------------------------------------------------------------- /tensorflow/lite/minimal_logging_ios.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/minimal_logging_ios.cc -------------------------------------------------------------------------------- /tensorflow/lite/minimal_logging_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/minimal_logging_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/mmap_allocation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/mmap_allocation.cc -------------------------------------------------------------------------------- /tensorflow/lite/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/model.h -------------------------------------------------------------------------------- /tensorflow/lite/model_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/model_builder.cc -------------------------------------------------------------------------------- /tensorflow/lite/model_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/model_builder.h -------------------------------------------------------------------------------- /tensorflow/lite/model_flex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/model_flex_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/model_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/model_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/model_xnnpack_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/model_xnnpack_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/mutable_op_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/mutable_op_resolver.cc -------------------------------------------------------------------------------- /tensorflow/lite/mutable_op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/mutable_op_resolver.h -------------------------------------------------------------------------------- /tensorflow/lite/nnapi/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/nnapi/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/nnapi/NeuralNetworksShim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/nnapi/NeuralNetworksShim.h -------------------------------------------------------------------------------- /tensorflow/lite/nnapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/nnapi/README.md -------------------------------------------------------------------------------- /tensorflow/lite/nnapi/nnapi_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/nnapi/nnapi_handler.cc -------------------------------------------------------------------------------- /tensorflow/lite/nnapi/nnapi_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/nnapi/nnapi_handler.h -------------------------------------------------------------------------------- /tensorflow/lite/nnapi/nnapi_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/nnapi/nnapi_util.cc -------------------------------------------------------------------------------- /tensorflow/lite/nnapi/nnapi_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/nnapi/nnapi_util.h -------------------------------------------------------------------------------- /tensorflow/lite/op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/op_resolver.h -------------------------------------------------------------------------------- /tensorflow/lite/optional_debug_tools.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/optional_debug_tools.cc -------------------------------------------------------------------------------- /tensorflow/lite/optional_debug_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/optional_debug_tools.h -------------------------------------------------------------------------------- /tensorflow/lite/profiling/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/profiling/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/profiling/memory_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/profiling/memory_info.cc -------------------------------------------------------------------------------- /tensorflow/lite/profiling/memory_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/profiling/memory_info.h -------------------------------------------------------------------------------- /tensorflow/lite/profiling/noop_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/profiling/noop_profiler.h -------------------------------------------------------------------------------- /tensorflow/lite/profiling/profile_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/profiling/profile_buffer.h -------------------------------------------------------------------------------- /tensorflow/lite/profiling/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/profiling/profiler.h -------------------------------------------------------------------------------- /tensorflow/lite/profiling/profiler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/profiling/profiler_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/profiling/test_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/profiling/test_main.cc -------------------------------------------------------------------------------- /tensorflow/lite/profiling/time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/profiling/time.cc -------------------------------------------------------------------------------- /tensorflow/lite/profiling/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/profiling/time.h -------------------------------------------------------------------------------- /tensorflow/lite/profiling/time_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/profiling/time_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/python/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/python/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/python/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/python/convert.py -------------------------------------------------------------------------------- /tensorflow/lite/python/convert_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/python/convert_test.py -------------------------------------------------------------------------------- /tensorflow/lite/python/interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/python/interpreter.py -------------------------------------------------------------------------------- /tensorflow/lite/python/interpreter_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/python/interpreter_test.py -------------------------------------------------------------------------------- /tensorflow/lite/python/keras/saving/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/python/keras/saving/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/python/lite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/python/lite.py -------------------------------------------------------------------------------- /tensorflow/lite/python/lite_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/python/lite_constants.py -------------------------------------------------------------------------------- /tensorflow/lite/python/lite_flex_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/python/lite_flex_test.py -------------------------------------------------------------------------------- /tensorflow/lite/python/lite_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/python/lite_test.py -------------------------------------------------------------------------------- /tensorflow/lite/python/lite_v2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/python/lite_v2_test.py -------------------------------------------------------------------------------- /tensorflow/lite/python/op_hint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/python/op_hint.py -------------------------------------------------------------------------------- /tensorflow/lite/python/optimize/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/python/optimize/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/python/testdata/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/python/testdata/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/python/tflite_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/python/tflite_convert.py -------------------------------------------------------------------------------- /tensorflow/lite/python/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/python/util.py -------------------------------------------------------------------------------- /tensorflow/lite/python/util_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/python/util_test.py -------------------------------------------------------------------------------- /tensorflow/lite/python/wrap_toco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/python/wrap_toco.py -------------------------------------------------------------------------------- /tensorflow/lite/schema/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/schema/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/schema/schema.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/schema/schema.fbs -------------------------------------------------------------------------------- /tensorflow/lite/schema/schema_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/schema/schema_generated.h -------------------------------------------------------------------------------- /tensorflow/lite/schema/schema_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/schema/schema_utils.cc -------------------------------------------------------------------------------- /tensorflow/lite/schema/schema_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/schema/schema_utils.h -------------------------------------------------------------------------------- /tensorflow/lite/schema/schema_v0.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/schema/schema_v0.fbs -------------------------------------------------------------------------------- /tensorflow/lite/schema/schema_v1.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/schema/schema_v1.fbs -------------------------------------------------------------------------------- /tensorflow/lite/schema/schema_v2.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/schema/schema_v2.fbs -------------------------------------------------------------------------------- /tensorflow/lite/schema/schema_v3.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/schema/schema_v3.fbs -------------------------------------------------------------------------------- /tensorflow/lite/schema/schema_v3a.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/schema/schema_v3a.fbs -------------------------------------------------------------------------------- /tensorflow/lite/schema/upgrade_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/schema/upgrade_schema.py -------------------------------------------------------------------------------- /tensorflow/lite/shared_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/shared_library.h -------------------------------------------------------------------------------- /tensorflow/lite/simple_memory_arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/simple_memory_arena.cc -------------------------------------------------------------------------------- /tensorflow/lite/simple_memory_arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/simple_memory_arena.h -------------------------------------------------------------------------------- /tensorflow/lite/special_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/special_rules.bzl -------------------------------------------------------------------------------- /tensorflow/lite/stateful_error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/stateful_error_reporter.h -------------------------------------------------------------------------------- /tensorflow/lite/stderr_reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/stderr_reporter.cc -------------------------------------------------------------------------------- /tensorflow/lite/stderr_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/stderr_reporter.h -------------------------------------------------------------------------------- /tensorflow/lite/stderr_reporter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/stderr_reporter_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/string_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/string_type.h -------------------------------------------------------------------------------- /tensorflow/lite/string_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/string_util.cc -------------------------------------------------------------------------------- /tensorflow/lite/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/string_util.h -------------------------------------------------------------------------------- /tensorflow/lite/string_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/string_util_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/testdata/0_subgraphs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testdata/0_subgraphs.bin -------------------------------------------------------------------------------- /tensorflow/lite/testdata/2_subgraphs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testdata/2_subgraphs.bin -------------------------------------------------------------------------------- /tensorflow/lite/testdata/add.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testdata/add.bin -------------------------------------------------------------------------------- /tensorflow/lite/testdata/add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testdata/add.json -------------------------------------------------------------------------------- /tensorflow/lite/testdata/add_quantized.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testdata/add_quantized.bin -------------------------------------------------------------------------------- /tensorflow/lite/testdata/empty_model.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testdata/empty_model.bin -------------------------------------------------------------------------------- /tensorflow/lite/testdata/lstm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testdata/lstm.bin -------------------------------------------------------------------------------- /tensorflow/lite/testdata/multi_add.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testdata/multi_add.bin -------------------------------------------------------------------------------- /tensorflow/lite/testdata/multi_add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testdata/multi_add.json -------------------------------------------------------------------------------- /tensorflow/lite/testdata/multi_add.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testdata/multi_add.pb -------------------------------------------------------------------------------- /tensorflow/lite/testdata/no_subgraphs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testdata/no_subgraphs.bin -------------------------------------------------------------------------------- /tensorflow/lite/testdata/softplus_flex.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testdata/softplus_flex.bin -------------------------------------------------------------------------------- /tensorflow/lite/testdata/sparse_tensor.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testdata/sparse_tensor.bin -------------------------------------------------------------------------------- /tensorflow/lite/testdata/test_input.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testdata/test_input.csv -------------------------------------------------------------------------------- /tensorflow/lite/testdata/test_model.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testdata/test_model.bin -------------------------------------------------------------------------------- /tensorflow/lite/testdata/two_subgraphs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testdata/two_subgraphs.bin -------------------------------------------------------------------------------- /tensorflow/lite/testing/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/testing/init_tensorflow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/init_tensorflow.cc -------------------------------------------------------------------------------- /tensorflow/lite/testing/init_tensorflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/init_tensorflow.h -------------------------------------------------------------------------------- /tensorflow/lite/testing/join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/join.h -------------------------------------------------------------------------------- /tensorflow/lite/testing/join_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/join_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/testing/kernel_test/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/kernel_test/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/testing/kernel_test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/kernel_test/util.h -------------------------------------------------------------------------------- /tensorflow/lite/testing/message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/message.cc -------------------------------------------------------------------------------- /tensorflow/lite/testing/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/message.h -------------------------------------------------------------------------------- /tensorflow/lite/testing/message_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/message_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/testing/nnapi_example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/nnapi_example.cc -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/abs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/abs.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/add_n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/add_n.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/cast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/cast.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/ceil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/ceil.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/concat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/concat.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/conv.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/cos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/cos.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/elu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/elu.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/equal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/equal.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/exp.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/eye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/eye.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/fill.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/floor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/floor.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/gather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/gather.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/l2norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/l2norm.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/less.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/less.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/logic.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/lstm.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/neg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/neg.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/pack.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/pad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/pad.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/padv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/padv2.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/pool.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/prelu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/prelu.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/range.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/rank.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/reduce.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/relu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/relu.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/relu1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/relu1.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/relu6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/relu6.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/rfft2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/rfft2d.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/round.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/round.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/shape.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/slice.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/split.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/splitv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/splitv.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/tanh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/tanh.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/tile.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/topk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/topk.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/unique.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/unpack.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/op_tests/where.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/op_tests/where.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/parse_testdata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/parse_testdata.cc -------------------------------------------------------------------------------- /tensorflow/lite/testing/parse_testdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/parse_testdata.h -------------------------------------------------------------------------------- /tensorflow/lite/testing/split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/split.cc -------------------------------------------------------------------------------- /tensorflow/lite/testing/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/split.h -------------------------------------------------------------------------------- /tensorflow/lite/testing/split_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/split_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/testing/string_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/string_util.cc -------------------------------------------------------------------------------- /tensorflow/lite/testing/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/string_util.h -------------------------------------------------------------------------------- /tensorflow/lite/testing/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/test_runner.h -------------------------------------------------------------------------------- /tensorflow/lite/testing/tf_driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/tf_driver.cc -------------------------------------------------------------------------------- /tensorflow/lite/testing/tf_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/tf_driver.h -------------------------------------------------------------------------------- /tensorflow/lite/testing/tf_driver_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/tf_driver_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/testing/tflite_diff_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/tflite_diff_util.h -------------------------------------------------------------------------------- /tensorflow/lite/testing/tflite_driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/tflite_driver.cc -------------------------------------------------------------------------------- /tensorflow/lite/testing/tflite_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/tflite_driver.h -------------------------------------------------------------------------------- /tensorflow/lite/testing/toco_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/toco_convert.py -------------------------------------------------------------------------------- /tensorflow/lite/testing/tokenize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/tokenize.cc -------------------------------------------------------------------------------- /tensorflow/lite/testing/tokenize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/tokenize.h -------------------------------------------------------------------------------- /tensorflow/lite/testing/tokenize_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/tokenize_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/testing/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/util.h -------------------------------------------------------------------------------- /tensorflow/lite/testing/zip_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/testing/zip_test_utils.py -------------------------------------------------------------------------------- /tensorflow/lite/tflite_version_script.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tflite_version_script.lds -------------------------------------------------------------------------------- /tensorflow/lite/tflite_with_xnnpack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tflite_with_xnnpack.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/toco/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/README.md -------------------------------------------------------------------------------- /tensorflow/lite/toco/args.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/args.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/args.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/dump_graphviz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/dump_graphviz.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/dump_graphviz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/dump_graphviz.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/export_tensorflow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/export_tensorflow.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/export_tensorflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/export_tensorflow.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/format_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/format_port.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/g3doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/g3doc/README.md -------------------------------------------------------------------------------- /tensorflow/lite/toco/import_tensorflow.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/import_tensorflow.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/import_tensorflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/import_tensorflow.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/logging/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/logging/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/toco/logging/gen_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/logging/gen_html.py -------------------------------------------------------------------------------- /tensorflow/lite/toco/logging/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/logging/template.html -------------------------------------------------------------------------------- /tensorflow/lite/toco/logging/testdata/toco_tf_graph.dot: -------------------------------------------------------------------------------- 1 | digraph {a -> b} 2 | -------------------------------------------------------------------------------- /tensorflow/lite/toco/logging/testdata/toco_tflite_graph.dot: -------------------------------------------------------------------------------- 1 | digraph {a -> b} 2 | -------------------------------------------------------------------------------- /tensorflow/lite/toco/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/model.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/model_cmdline_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/model_cmdline_flags.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/model_flags.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/model_flags.proto -------------------------------------------------------------------------------- /tensorflow/lite/toco/python/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/python/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/toco/runtime/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/runtime/common.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/runtime/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/runtime/types.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/tensorflow_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/tensorflow_util.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/tensorflow_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/tensorflow_util.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/tflite/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/tflite/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/toco/tflite/export.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/tflite/export.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/tflite/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/tflite/export.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/tflite/export_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/tflite/export_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/tflite/import.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/tflite/import.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/tflite/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/tflite/import.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/tflite/import_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/tflite/import_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/tflite/op_version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/tflite/op_version.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/tflite/op_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/tflite/op_version.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/tflite/operator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/tflite/operator.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/tflite/operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/tflite/operator.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/tflite/types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/tflite/types.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/tflite/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/tflite/types.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/tflite/types_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/tflite/types_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/toco.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/toco.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/toco_cmdline_flags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/toco_cmdline_flags.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/toco_cmdline_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/toco_cmdline_flags.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/toco_convert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/toco_convert.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/toco_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/toco_convert.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/toco_convert_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/toco_convert_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/toco_flags.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/toco_flags.proto -------------------------------------------------------------------------------- /tensorflow/lite/toco/toco_port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/toco_port.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/toco_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/toco_port.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/toco_port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/toco_port_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/toco_tooling.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/toco_tooling.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/toco_tooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/toco_tooling.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/toco_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/toco_types.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/tooling_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/tooling_util.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/tooling_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/tooling_util.h -------------------------------------------------------------------------------- /tensorflow/lite/toco/tooling_util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/tooling_util_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/toco/types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/toco/types.proto -------------------------------------------------------------------------------- /tensorflow/lite/tools/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/tools/benchmark/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/benchmark/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/tools/benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/benchmark/README.md -------------------------------------------------------------------------------- /tensorflow/lite/tools/benchmark/ios/TFLiteBenchmark/TFLiteBenchmark/Frameworks/.gitignore: -------------------------------------------------------------------------------- 1 | *.framework/ 2 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/build_aar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/build_aar.sh -------------------------------------------------------------------------------- /tensorflow/lite/tools/cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/cmake/README.md -------------------------------------------------------------------------------- /tensorflow/lite/tools/command_line_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/command_line_flags.h -------------------------------------------------------------------------------- /tensorflow/lite/tools/delegates/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/delegates/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/tools/delegates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/delegates/README.md -------------------------------------------------------------------------------- /tensorflow/lite/tools/evaluation/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/evaluation/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/tools/evaluation/testdata/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/evaluation/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/evaluation/utils.cc -------------------------------------------------------------------------------- /tensorflow/lite/tools/evaluation/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/evaluation/utils.h -------------------------------------------------------------------------------- /tensorflow/lite/tools/flatbuffer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/flatbuffer_utils.py -------------------------------------------------------------------------------- /tensorflow/lite/tools/list_flex_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/list_flex_ops.cc -------------------------------------------------------------------------------- /tensorflow/lite/tools/list_flex_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/list_flex_ops.h -------------------------------------------------------------------------------- /tensorflow/lite/tools/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/logging.h -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/make/Makefile -------------------------------------------------------------------------------- /tensorflow/lite/tools/make/build_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/make/build_lib.sh -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/optimize/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/tools/optimize/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/optimize/test_util.h -------------------------------------------------------------------------------- /tensorflow/lite/tools/pip_package/MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include * *.py 2 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/pip_package/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /tensorflow/lite/tools/sanitizers/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/sanitizers/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/tools/signature/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/signature/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/tools/strip_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/strip_strings.py -------------------------------------------------------------------------------- /tensorflow/lite/tools/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/test_utils.py -------------------------------------------------------------------------------- /tensorflow/lite/tools/tool_params.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/tool_params.cc -------------------------------------------------------------------------------- /tensorflow/lite/tools/tool_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/tool_params.h -------------------------------------------------------------------------------- /tensorflow/lite/tools/verifier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/verifier.cc -------------------------------------------------------------------------------- /tensorflow/lite/tools/verifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/verifier.h -------------------------------------------------------------------------------- /tensorflow/lite/tools/verifier_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/verifier_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/tools/versioning/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/versioning/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/tools/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/visualize.py -------------------------------------------------------------------------------- /tensorflow/lite/tools/visualize_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/visualize_test.py -------------------------------------------------------------------------------- /tensorflow/lite/tools/zip_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tools/zip_files.py -------------------------------------------------------------------------------- /tensorflow/lite/tutorials/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tutorials/BUILD -------------------------------------------------------------------------------- /tensorflow/lite/tutorials/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/tutorials/dataset.py -------------------------------------------------------------------------------- /tensorflow/lite/type_to_tflitetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/type_to_tflitetype.h -------------------------------------------------------------------------------- /tensorflow/lite/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/util.cc -------------------------------------------------------------------------------- /tensorflow/lite/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/util.h -------------------------------------------------------------------------------- /tensorflow/lite/util_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/util_test.cc -------------------------------------------------------------------------------- /tensorflow/lite/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/lite/version.h -------------------------------------------------------------------------------- /tensorflow/opensource_only.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/opensource_only.files -------------------------------------------------------------------------------- /tensorflow/tensorflow.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/tensorflow.bzl -------------------------------------------------------------------------------- /tensorflow/tf_exported_symbols.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/tf_exported_symbols.lds -------------------------------------------------------------------------------- /tensorflow/tf_version_script.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/tf_version_script.lds -------------------------------------------------------------------------------- /tensorflow/version_check.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/version_check.bzl -------------------------------------------------------------------------------- /tensorflow/workspace.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tensorflow/workspace.bzl -------------------------------------------------------------------------------- /third_party/eigen.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/third_party/eigen.BUILD -------------------------------------------------------------------------------- /third_party/eigen3/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/third_party/eigen3/BUILD -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/Cholesky: -------------------------------------------------------------------------------- 1 | #include "Eigen/Cholesky" 2 | -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/Core: -------------------------------------------------------------------------------- 1 | #include "Eigen/Core" 2 | -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/third_party/eigen3/Eigen/Eigenvalues -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/LU: -------------------------------------------------------------------------------- 1 | #include "Eigen/LU" 2 | -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/OrderingMethods: -------------------------------------------------------------------------------- 1 | #include "Eigen/OrderingMethods" -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/QR: -------------------------------------------------------------------------------- 1 | #include "Eigen/QR" 2 | -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/SVD: -------------------------------------------------------------------------------- 1 | #include "Eigen/SVD" 2 | -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/SparseCholesky: -------------------------------------------------------------------------------- 1 | #include "Eigen/SparseCholesky" -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/SparseCore: -------------------------------------------------------------------------------- 1 | #include "Eigen/SparseCore" -------------------------------------------------------------------------------- /third_party/eigen3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/third_party/eigen3/LICENSE -------------------------------------------------------------------------------- /third_party/eigen3/gpu_packet_math.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/third_party/eigen3/gpu_packet_math.patch -------------------------------------------------------------------------------- /third_party/eigen3/unsupported/Eigen/CXX11/ThreadPool: -------------------------------------------------------------------------------- 1 | #include "unsupported/Eigen/CXX11/ThreadPool" 2 | -------------------------------------------------------------------------------- /third_party/eigen3/unsupported/Eigen/MatrixFunctions: -------------------------------------------------------------------------------- 1 | #include "unsupported/Eigen/MatrixFunctions" 2 | -------------------------------------------------------------------------------- /third_party/eigen3/unsupported/Eigen/SpecialFunctions: -------------------------------------------------------------------------------- 1 | #include "unsupported/Eigen/SpecialFunctions" 2 | -------------------------------------------------------------------------------- /third_party/fft2d/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/third_party/fft2d/BUILD -------------------------------------------------------------------------------- /third_party/fft2d/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/third_party/fft2d/LICENSE -------------------------------------------------------------------------------- /third_party/fft2d/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/third_party/fft2d/fft.h -------------------------------------------------------------------------------- /third_party/fft2d/fft2d.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/third_party/fft2d/fft2d.BUILD -------------------------------------------------------------------------------- /third_party/fft2d/fft2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/third_party/fft2d/fft2d.h -------------------------------------------------------------------------------- /tools/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tools/build.sh -------------------------------------------------------------------------------- /tools/build_android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tools/build_android.sh -------------------------------------------------------------------------------- /tools/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tools/build_linux.sh -------------------------------------------------------------------------------- /tools/build_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingsoft-wps/KSAI-Lite/HEAD/tools/build_windows.bat --------------------------------------------------------------------------------