├── .travis.yml ├── README.md ├── aes_128_test ├── README.md ├── aes2.c ├── aes2.h ├── aes_cbc.c ├── aes_cbc.h ├── cipher.c ├── cipher.h ├── cipher_internal.h ├── cipher_wrap.c ├── config.h ├── gcm.c ├── gcm.h └── main.c ├── aes_192_test ├── README.md ├── aes2.c ├── aes2.h ├── aes_cbc.c ├── aes_cbc.h ├── cipher.c ├── cipher.h ├── cipher_internal.h ├── cipher_wrap.c ├── config.h ├── gcm.c ├── gcm.h └── main.c ├── aes_256_test ├── README.md ├── aes2.c ├── aes2.h ├── aes_cbc.c ├── aes_cbc.h ├── cipher.c ├── cipher.h ├── cipher_internal.h ├── cipher_wrap.c ├── config.h ├── gcm.c ├── gcm.h └── main.c ├── face_detect ├── README.md ├── detect.kmodel ├── dvp_camera.c ├── dvp_camera.h ├── font.h ├── image_process.c ├── image_process.h ├── incbin.h ├── jlt32009a.c ├── jlt32009a.h ├── kfpkg │ ├── detect.kmodel │ ├── face_detect.bin │ ├── flash-list.json │ └── kfpkg.kfpkg ├── lcd.c ├── lcd.h ├── main.c ├── ov5640.c ├── ov5640.h ├── ov5640af.h ├── ov5640cfg.h ├── project_cfg.h ├── region_layer.c ├── region_layer.h ├── w25qxx.c └── w25qxx.h ├── fft_test ├── README.md ├── fft_soft.c ├── fft_soft.h └── main.c ├── flash ├── README.md ├── main.c ├── w25qxx.c └── w25qxx.h ├── gpio ├── README.md ├── main.c └── project_cfg.h ├── gpiohs_interrupt ├── README.md ├── main.c └── project_cfg.h ├── hello_world └── main.c ├── i2c_slave ├── README.md ├── i2c_slave.c ├── i2c_slave.h ├── main.c └── project_cfg.h ├── i2s_play ├── README.md ├── i2s_play_pcm.h ├── main.c └── project_cfg.h ├── lcd ├── README.md ├── font.h ├── jlt32009a.c ├── jlt32009a.h ├── lcd.c ├── lcd.h ├── main.c └── project_cfg.h ├── lcd_green_board ├── README.md ├── font.h ├── jlt32009a.c ├── jlt32009a.h ├── lcd.c ├── lcd.h ├── main.c └── project_cfg.h ├── lcd_lichee_pi ├── README.md ├── font.h ├── img.h ├── jlt32009a.c ├── jlt32009a.h ├── lcd.c ├── lcd.h ├── main.c └── project_cfg.h ├── lcd_ov5640 ├── README.md ├── dvp_camera.c ├── dvp_camera.h ├── font.h ├── jlt32009a.c ├── jlt32009a.h ├── lcd.c ├── lcd.h ├── main.c ├── ov5640.c ├── ov5640.h ├── ov5640af.h ├── ov5640cfg.h └── project_cfg.h ├── mic_play ├── README.md ├── main.c └── project_cfg.h ├── network_tcp_test ├── README.md ├── main.c └── project_cfg.h ├── network_tcp_test_remote ├── Makefile ├── README.md ├── client.c ├── server.c └── tcp_client.c ├── network_tftp_client ├── README.md ├── k_tftp_client.c ├── k_tftp_client.h ├── main.c └── project_cfg.h ├── pwm ├── README.md ├── main.c └── project_cfg.h ├── rtc ├── README.md └── main.c ├── sd3068 ├── README.md ├── main.c ├── project_cfg.h ├── sd3068.c └── sd3068.h ├── sdcard_filesystem ├── README.md ├── main.c └── project_cfg.h ├── sha256_test ├── README.md └── main.c ├── shared ├── flatbuffers │ ├── base.h │ ├── code_generators.h │ ├── flatbuffers.h │ ├── flatc.h │ ├── flexbuffers.h │ ├── grpc.h │ ├── hash.h │ ├── idl.h │ ├── minireflect.h │ ├── reflection.h │ ├── reflection_generated.h │ ├── registry.h │ ├── stl_emulation.h │ └── util.h ├── libtensorflow-lite.a └── tensorflow │ ├── allocation.h │ ├── arena_planner.h │ ├── builtin_op_data.h │ ├── builtin_ops.h │ ├── c │ ├── builtin_op_data.h │ └── c_api_internal.h │ ├── context.h │ ├── context_util.h │ ├── core │ └── api │ │ ├── error_reporter.h │ │ ├── flatbuffer_conversions.h │ │ └── op_resolver.h │ ├── delegates │ ├── flex │ │ ├── buffer_map.h │ │ ├── delegate.h │ │ ├── delegate_data.h │ │ ├── kernel.h │ │ ├── test_util.h │ │ └── util.h │ └── nnapi │ │ └── nnapi_delegate.h │ ├── error_reporter.h │ ├── examples │ ├── ios │ │ ├── camera │ │ │ ├── CameraExampleAppDelegate.h │ │ │ └── CameraExampleViewController.h │ │ └── simple │ │ │ ├── AppDelegate.h │ │ │ ├── RunModelViewController.h │ │ │ └── ios_image_load.h │ └── label_image │ │ ├── bitmap_helpers.h │ │ ├── bitmap_helpers_impl.h │ │ ├── get_top_n.h │ │ ├── get_top_n_impl.h │ │ └── label_image.h │ ├── experimental │ ├── c │ │ ├── c_api.h │ │ ├── c_api_experimental.h │ │ └── c_api_internal.h │ ├── kernels │ │ ├── ctc_beam_entry.h │ │ ├── ctc_beam_scorer.h │ │ ├── ctc_beam_search.h │ │ ├── ctc_decoder.h │ │ ├── ctc_loss_util.h │ │ └── top_n.h │ ├── micro │ │ ├── compatibility.h │ │ ├── examples │ │ │ └── micro_speech │ │ │ │ ├── no_30ms_sample_data.h │ │ │ │ ├── no_features_data.h │ │ │ │ ├── no_power_spectrum_data.h │ │ │ │ ├── preprocessor.h │ │ │ │ ├── tiny_conv_model_data.h │ │ │ │ ├── yes_30ms_sample_data.h │ │ │ │ ├── yes_features_data.h │ │ │ │ └── yes_power_spectrum_data.h │ │ ├── kernels │ │ │ ├── all_ops_resolver.h │ │ │ └── test_utils.h │ │ ├── micro_error_reporter.h │ │ ├── micro_interpreter.h │ │ ├── micro_mutable_op_resolver.h │ │ ├── simple_tensor_allocator.h │ │ └── testing │ │ │ └── micro_test.h │ ├── microfrontend │ │ └── lib │ │ │ ├── bits.h │ │ │ ├── fft.h │ │ │ ├── fft_io.h │ │ │ ├── fft_util.h │ │ │ ├── filterbank.h │ │ │ ├── filterbank_io.h │ │ │ ├── filterbank_util.h │ │ │ ├── frontend.h │ │ │ ├── frontend_io.h │ │ │ ├── frontend_util.h │ │ │ ├── log_lut.h │ │ │ ├── log_scale.h │ │ │ ├── log_scale_io.h │ │ │ ├── log_scale_util.h │ │ │ ├── noise_reduction.h │ │ │ ├── noise_reduction_io.h │ │ │ ├── noise_reduction_util.h │ │ │ ├── pcan_gain_control.h │ │ │ ├── pcan_gain_control_util.h │ │ │ ├── window.h │ │ │ ├── window_io.h │ │ │ └── window_util.h │ └── writer │ │ ├── enum_mapping.h │ │ └── writer_lib.h │ ├── graph_info.h │ ├── interpreter.h │ ├── java │ └── src │ │ └── main │ │ └── native │ │ ├── exception_jni.h │ │ ├── init_tensorflow_jni.h │ │ ├── nativeinterpreterwrapper_jni.h │ │ ├── tensor_jni.h │ │ └── tensorflow_lite_jni.h │ ├── kernels │ ├── activation_functor.h │ ├── eigen_support.h │ ├── gemm_support.h │ ├── internal │ │ ├── common.h │ │ ├── compatibility.h │ │ ├── kernel_utils.h │ │ ├── legacy_types.h │ │ ├── mfcc.h │ │ ├── mfcc_dct.h │ │ ├── mfcc_mel_filterbank.h │ │ ├── optimized │ │ │ ├── cblas_conv.h │ │ │ ├── cblas_reference.h │ │ │ ├── cpu_check.h │ │ │ ├── depthwiseconv_float.h │ │ │ ├── depthwiseconv_uint8.h │ │ │ ├── depthwiseconv_uint8_3x3_filter.h │ │ │ ├── eigen_spatial_convolutions.h │ │ │ ├── eigen_tensor_reduced_instantiations_google.h │ │ │ ├── eigen_tensor_reduced_instantiations_oss.h │ │ │ ├── legacy_optimized_ops.h │ │ │ ├── multithreaded_conv.h │ │ │ ├── neon_tensor_utils.h │ │ │ ├── optimized_ops.h │ │ │ └── tensor_utils_impl.h │ │ ├── quantization_util.h │ │ ├── reference │ │ │ ├── depthwiseconv_float.h │ │ │ ├── depthwiseconv_uint8.h │ │ │ ├── fully_connected.h │ │ │ ├── legacy_reference_ops.h │ │ │ ├── portable_tensor_utils.h │ │ │ ├── reference_ops.h │ │ │ └── softmax.h │ │ ├── round.h │ │ ├── spectrogram.h │ │ ├── strided_slice_logic.h │ │ ├── tensor.h │ │ ├── tensor_ctypes.h │ │ ├── tensor_utils.h │ │ ├── test_util.h │ │ └── types.h │ ├── kernel_util.h │ ├── lstm_eval.h │ ├── op_macros.h │ ├── padding.h │ ├── register.h │ └── test_util.h │ ├── lite │ ├── allocation.h │ ├── arena_planner.h │ ├── builtin_op_data.h │ ├── builtin_ops.h │ ├── c │ │ ├── builtin_op_data.h │ │ └── c_api_internal.h │ ├── context.h │ ├── context_util.h │ ├── core │ │ └── api │ │ │ ├── error_reporter.h │ │ │ ├── flatbuffer_conversions.h │ │ │ └── op_resolver.h │ ├── delegates │ │ ├── flex │ │ │ ├── buffer_map.h │ │ │ ├── delegate.h │ │ │ ├── delegate_data.h │ │ │ ├── kernel.h │ │ │ ├── test_util.h │ │ │ └── util.h │ │ └── nnapi │ │ │ └── nnapi_delegate.h │ ├── error_reporter.h │ ├── examples │ │ ├── ios │ │ │ ├── camera │ │ │ │ ├── CameraExampleAppDelegate.h │ │ │ │ └── CameraExampleViewController.h │ │ │ └── simple │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── RunModelViewController.h │ │ │ │ └── ios_image_load.h │ │ └── label_image │ │ │ ├── bitmap_helpers.h │ │ │ ├── bitmap_helpers_impl.h │ │ │ ├── get_top_n.h │ │ │ ├── get_top_n_impl.h │ │ │ └── label_image.h │ ├── experimental │ │ ├── c │ │ │ ├── c_api.h │ │ │ ├── c_api_experimental.h │ │ │ └── c_api_internal.h │ │ ├── kernels │ │ │ ├── ctc_beam_entry.h │ │ │ ├── ctc_beam_scorer.h │ │ │ ├── ctc_beam_search.h │ │ │ ├── ctc_decoder.h │ │ │ ├── ctc_loss_util.h │ │ │ └── top_n.h │ │ ├── micro │ │ │ ├── compatibility.h │ │ │ ├── examples │ │ │ │ └── micro_speech │ │ │ │ │ ├── no_30ms_sample_data.h │ │ │ │ │ ├── no_features_data.h │ │ │ │ │ ├── no_power_spectrum_data.h │ │ │ │ │ ├── preprocessor.h │ │ │ │ │ ├── tiny_conv_model_data.h │ │ │ │ │ ├── yes_30ms_sample_data.h │ │ │ │ │ ├── yes_features_data.h │ │ │ │ │ └── yes_power_spectrum_data.h │ │ │ ├── kernels │ │ │ │ ├── all_ops_resolver.h │ │ │ │ └── test_utils.h │ │ │ ├── micro_error_reporter.h │ │ │ ├── micro_interpreter.h │ │ │ ├── micro_mutable_op_resolver.h │ │ │ ├── simple_tensor_allocator.h │ │ │ └── testing │ │ │ │ └── micro_test.h │ │ ├── microfrontend │ │ │ └── lib │ │ │ │ ├── bits.h │ │ │ │ ├── fft.h │ │ │ │ ├── fft_io.h │ │ │ │ ├── fft_util.h │ │ │ │ ├── filterbank.h │ │ │ │ ├── filterbank_io.h │ │ │ │ ├── filterbank_util.h │ │ │ │ ├── frontend.h │ │ │ │ ├── frontend_io.h │ │ │ │ ├── frontend_util.h │ │ │ │ ├── log_lut.h │ │ │ │ ├── log_scale.h │ │ │ │ ├── log_scale_io.h │ │ │ │ ├── log_scale_util.h │ │ │ │ ├── noise_reduction.h │ │ │ │ ├── noise_reduction_io.h │ │ │ │ ├── noise_reduction_util.h │ │ │ │ ├── pcan_gain_control.h │ │ │ │ ├── pcan_gain_control_util.h │ │ │ │ ├── window.h │ │ │ │ ├── window_io.h │ │ │ │ └── window_util.h │ │ └── writer │ │ │ ├── enum_mapping.h │ │ │ └── writer_lib.h │ ├── graph_info.h │ ├── interpreter.h │ ├── java │ │ └── src │ │ │ └── main │ │ │ └── native │ │ │ ├── exception_jni.h │ │ │ ├── init_tensorflow_jni.h │ │ │ ├── nativeinterpreterwrapper_jni.h │ │ │ ├── tensor_jni.h │ │ │ └── tensorflow_lite_jni.h │ ├── kernels │ │ ├── activation_functor.h │ │ ├── eigen_support.h │ │ ├── gemm_support.h │ │ ├── internal │ │ │ ├── common.h │ │ │ ├── compatibility.h │ │ │ ├── kernel_utils.h │ │ │ ├── legacy_types.h │ │ │ ├── mfcc.h │ │ │ ├── mfcc_dct.h │ │ │ ├── mfcc_mel_filterbank.h │ │ │ ├── optimized │ │ │ │ ├── cblas_conv.h │ │ │ │ ├── cblas_reference.h │ │ │ │ ├── cpu_check.h │ │ │ │ ├── depthwiseconv_float.h │ │ │ │ ├── depthwiseconv_uint8.h │ │ │ │ ├── depthwiseconv_uint8_3x3_filter.h │ │ │ │ ├── eigen_spatial_convolutions.h │ │ │ │ ├── eigen_tensor_reduced_instantiations_google.h │ │ │ │ ├── eigen_tensor_reduced_instantiations_oss.h │ │ │ │ ├── legacy_optimized_ops.h │ │ │ │ ├── multithreaded_conv.h │ │ │ │ ├── neon_tensor_utils.h │ │ │ │ ├── optimized_ops.h │ │ │ │ └── tensor_utils_impl.h │ │ │ ├── quantization_util.h │ │ │ ├── reference │ │ │ │ ├── depthwiseconv_float.h │ │ │ │ ├── depthwiseconv_uint8.h │ │ │ │ ├── fully_connected.h │ │ │ │ ├── legacy_reference_ops.h │ │ │ │ ├── portable_tensor_utils.h │ │ │ │ ├── reference_ops.h │ │ │ │ └── softmax.h │ │ │ ├── round.h │ │ │ ├── spectrogram.h │ │ │ ├── strided_slice_logic.h │ │ │ ├── tensor.h │ │ │ ├── tensor_ctypes.h │ │ │ ├── tensor_utils.h │ │ │ ├── test_util.h │ │ │ └── types.h │ │ ├── kernel_util.h │ │ ├── lstm_eval.h │ │ ├── op_macros.h │ │ ├── padding.h │ │ ├── register.h │ │ └── test_util.h │ ├── memory_planner.h │ ├── model.h │ ├── models │ │ └── smartreply │ │ │ └── predictor.h │ ├── mutable_op_resolver.h │ ├── nnapi │ │ └── NeuralNetworksShim.h │ ├── nnapi_delegate.h │ ├── op_resolver.h │ ├── optional_debug_tools.h │ ├── profiling │ │ ├── profile_buffer.h │ │ ├── profile_summarizer.h │ │ ├── profiler.h │ │ └── time.h │ ├── python │ │ └── interpreter_wrapper │ │ │ └── interpreter_wrapper.h │ ├── schema │ │ ├── builtin_ops_header │ │ │ └── generator.h │ │ └── schema_generated.h │ ├── simple_memory_arena.h │ ├── stderr_reporter.h │ ├── string.h │ ├── string_util.h │ ├── testing │ │ ├── generate_testspec.h │ │ ├── init_tensorflow.h │ │ ├── join.h │ │ ├── message.h │ │ ├── parse_testdata.h │ │ ├── split.h │ │ ├── test_runner.h │ │ ├── tf_driver.h │ │ ├── tflite_diff_flags.h │ │ ├── tflite_diff_util.h │ │ ├── tflite_driver.h │ │ ├── tokenize.h │ │ └── util.h │ ├── toco │ │ ├── allocate_transient_arrays.h │ │ ├── args.h │ │ ├── dump_graphviz.h │ │ ├── export_tensorflow.h │ │ ├── format_port.h │ │ ├── graph_transformations │ │ │ ├── graph_transformations.h │ │ │ ├── lstm_utils.h │ │ │ ├── quantization_util.h │ │ │ └── remove_trivial_passthrough.h │ │ ├── import_tensorflow.h │ │ ├── model.h │ │ ├── model_cmdline_flags.h │ │ ├── python │ │ │ └── toco_python_api.h │ │ ├── runtime │ │ │ ├── common.h │ │ │ └── types.h │ │ ├── tensorflow_graph_matching │ │ │ ├── cluster.h │ │ │ ├── cluster_utils.h │ │ │ ├── resolve_cluster.h │ │ │ └── resolve_svdf.h │ │ ├── tensorflow_util.h │ │ ├── tflite │ │ │ ├── builtin_operator.h │ │ │ ├── custom_operator.h │ │ │ ├── export.h │ │ │ ├── import.h │ │ │ ├── operator.h │ │ │ ├── simple_operator.h │ │ │ ├── types.h │ │ │ └── whitelisted_flex_ops.h │ │ ├── toco_cmdline_flags.h │ │ ├── toco_graphviz_dump_options.h │ │ ├── toco_port.h │ │ ├── toco_tooling.h │ │ ├── toco_types.h │ │ └── tooling_util.h │ ├── tools │ │ ├── accuracy │ │ │ ├── accuracy_eval_stage.h │ │ │ ├── csv_writer.h │ │ │ ├── eval_pipeline.h │ │ │ ├── eval_pipeline_builder.h │ │ │ ├── file_reader_stage.h │ │ │ ├── ilsvrc │ │ │ │ ├── imagenet_model_evaluator.h │ │ │ │ ├── imagenet_topk_eval.h │ │ │ │ └── inception_preprocessing.h │ │ │ ├── run_tflite_model_stage.h │ │ │ ├── stage.h │ │ │ └── utils.h │ │ ├── benchmark │ │ │ ├── benchmark_model.h │ │ │ ├── benchmark_params.h │ │ │ ├── benchmark_tflite_model.h │ │ │ ├── command_line_flags.h │ │ │ ├── ios │ │ │ │ └── TFLiteBenchmark │ │ │ │ │ └── TFLiteBenchmark │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ └── BenchmarkViewController.h │ │ │ └── logging.h │ │ ├── gen_op_registration.h │ │ ├── make │ │ │ └── downloads │ │ │ │ ├── absl │ │ │ │ └── absl │ │ │ │ │ ├── algorithm │ │ │ │ │ ├── algorithm.h │ │ │ │ │ └── container.h │ │ │ │ │ ├── base │ │ │ │ │ ├── attributes.h │ │ │ │ │ ├── call_once.h │ │ │ │ │ ├── casts.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── dynamic_annotations.h │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── atomic_hook.h │ │ │ │ │ │ ├── bits.h │ │ │ │ │ │ ├── cycleclock.h │ │ │ │ │ │ ├── direct_mmap.h │ │ │ │ │ │ ├── endian.h │ │ │ │ │ │ ├── exception_safety_testing.h │ │ │ │ │ │ ├── exception_testing.h │ │ │ │ │ │ ├── hide_ptr.h │ │ │ │ │ │ ├── identity.h │ │ │ │ │ │ ├── inline_variable.h │ │ │ │ │ │ ├── inline_variable_testing.h │ │ │ │ │ │ ├── invoke.h │ │ │ │ │ │ ├── low_level_alloc.h │ │ │ │ │ │ ├── low_level_scheduling.h │ │ │ │ │ │ ├── per_thread_tls.h │ │ │ │ │ │ ├── pretty_function.h │ │ │ │ │ │ ├── raw_logging.h │ │ │ │ │ │ ├── scheduling_mode.h │ │ │ │ │ │ ├── spinlock.h │ │ │ │ │ │ ├── spinlock_wait.h │ │ │ │ │ │ ├── sysinfo.h │ │ │ │ │ │ ├── thread_identity.h │ │ │ │ │ │ ├── throw_delegate.h │ │ │ │ │ │ ├── tsan_mutex_interface.h │ │ │ │ │ │ ├── unaligned_access.h │ │ │ │ │ │ └── unscaledcycleclock.h │ │ │ │ │ ├── log_severity.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── optimization.h │ │ │ │ │ ├── policy_checks.h │ │ │ │ │ ├── port.h │ │ │ │ │ └── thread_annotations.h │ │ │ │ │ ├── container │ │ │ │ │ ├── fixed_array.h │ │ │ │ │ ├── flat_hash_map.h │ │ │ │ │ ├── flat_hash_set.h │ │ │ │ │ ├── inlined_vector.h │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── compressed_tuple.h │ │ │ │ │ │ ├── container_memory.h │ │ │ │ │ │ ├── hash_function_defaults.h │ │ │ │ │ │ ├── hash_generator_testing.h │ │ │ │ │ │ ├── hash_policy_testing.h │ │ │ │ │ │ ├── hash_policy_traits.h │ │ │ │ │ │ ├── hashtable_debug.h │ │ │ │ │ │ ├── hashtable_debug_hooks.h │ │ │ │ │ │ ├── layout.h │ │ │ │ │ │ ├── node_hash_policy.h │ │ │ │ │ │ ├── raw_hash_map.h │ │ │ │ │ │ ├── raw_hash_set.h │ │ │ │ │ │ ├── test_instance_tracker.h │ │ │ │ │ │ ├── tracked.h │ │ │ │ │ │ ├── unordered_map_constructor_test.h │ │ │ │ │ │ ├── unordered_map_lookup_test.h │ │ │ │ │ │ ├── unordered_map_modifiers_test.h │ │ │ │ │ │ ├── unordered_set_constructor_test.h │ │ │ │ │ │ ├── unordered_set_lookup_test.h │ │ │ │ │ │ └── unordered_set_modifiers_test.h │ │ │ │ │ ├── node_hash_map.h │ │ │ │ │ └── node_hash_set.h │ │ │ │ │ ├── debugging │ │ │ │ │ ├── failure_signal_handler.h │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── address_is_readable.h │ │ │ │ │ │ ├── demangle.h │ │ │ │ │ │ ├── elf_mem_image.h │ │ │ │ │ │ ├── examine_stack.h │ │ │ │ │ │ ├── stack_consumption.h │ │ │ │ │ │ ├── stacktrace_config.h │ │ │ │ │ │ ├── symbolize.h │ │ │ │ │ │ └── vdso_support.h │ │ │ │ │ ├── leak_check.h │ │ │ │ │ ├── stacktrace.h │ │ │ │ │ └── symbolize.h │ │ │ │ │ ├── hash │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── hash_testing.h │ │ │ │ │ └── internal │ │ │ │ │ │ ├── city.h │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ └── spy_hash_state.h │ │ │ │ │ ├── memory │ │ │ │ │ └── memory.h │ │ │ │ │ ├── meta │ │ │ │ │ └── type_traits.h │ │ │ │ │ ├── numeric │ │ │ │ │ └── int128.h │ │ │ │ │ ├── strings │ │ │ │ │ ├── ascii.h │ │ │ │ │ ├── charconv.h │ │ │ │ │ ├── escaping.h │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── char_map.h │ │ │ │ │ │ ├── charconv_bigint.h │ │ │ │ │ │ ├── charconv_parse.h │ │ │ │ │ │ ├── escaping_test_common.h │ │ │ │ │ │ ├── memutil.h │ │ │ │ │ │ ├── numbers_test_common.h │ │ │ │ │ │ ├── ostringstream.h │ │ │ │ │ │ ├── resize_uninitialized.h │ │ │ │ │ │ ├── stl_type_traits.h │ │ │ │ │ │ ├── str_format │ │ │ │ │ │ │ ├── arg.h │ │ │ │ │ │ │ ├── bind.h │ │ │ │ │ │ │ ├── checker.h │ │ │ │ │ │ │ ├── extension.h │ │ │ │ │ │ │ ├── float_conversion.h │ │ │ │ │ │ │ ├── output.h │ │ │ │ │ │ │ └── parser.h │ │ │ │ │ │ ├── str_join_internal.h │ │ │ │ │ │ ├── str_split_internal.h │ │ │ │ │ │ └── utf8.h │ │ │ │ │ ├── match.h │ │ │ │ │ ├── numbers.h │ │ │ │ │ ├── str_cat.h │ │ │ │ │ ├── str_format.h │ │ │ │ │ ├── str_join.h │ │ │ │ │ ├── str_replace.h │ │ │ │ │ ├── str_split.h │ │ │ │ │ ├── string_view.h │ │ │ │ │ ├── strip.h │ │ │ │ │ └── substitute.h │ │ │ │ │ ├── synchronization │ │ │ │ │ ├── barrier.h │ │ │ │ │ ├── blocking_counter.h │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── create_thread_identity.h │ │ │ │ │ │ ├── graphcycles.h │ │ │ │ │ │ ├── kernel_timeout.h │ │ │ │ │ │ ├── per_thread_sem.h │ │ │ │ │ │ ├── thread_pool.h │ │ │ │ │ │ └── waiter.h │ │ │ │ │ ├── mutex.h │ │ │ │ │ └── notification.h │ │ │ │ │ ├── time │ │ │ │ │ ├── civil_time.h │ │ │ │ │ ├── clock.h │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── cctz │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ └── cctz │ │ │ │ │ │ │ │ │ ├── civil_time.h │ │ │ │ │ │ │ │ │ ├── civil_time_detail.h │ │ │ │ │ │ │ │ │ ├── time_zone.h │ │ │ │ │ │ │ │ │ └── zone_info_source.h │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── time_zone_fixed.h │ │ │ │ │ │ │ │ ├── time_zone_if.h │ │ │ │ │ │ │ │ ├── time_zone_impl.h │ │ │ │ │ │ │ │ ├── time_zone_info.h │ │ │ │ │ │ │ │ ├── time_zone_libc.h │ │ │ │ │ │ │ │ ├── time_zone_posix.h │ │ │ │ │ │ │ │ └── tzfile.h │ │ │ │ │ │ └── test_util.h │ │ │ │ │ └── time.h │ │ │ │ │ ├── types │ │ │ │ │ ├── any.h │ │ │ │ │ ├── bad_any_cast.h │ │ │ │ │ ├── bad_optional_access.h │ │ │ │ │ ├── bad_variant_access.h │ │ │ │ │ ├── internal │ │ │ │ │ │ └── variant.h │ │ │ │ │ ├── optional.h │ │ │ │ │ ├── span.h │ │ │ │ │ └── variant.h │ │ │ │ │ └── utility │ │ │ │ │ └── utility.h │ │ │ │ ├── eigen │ │ │ │ ├── Eigen │ │ │ │ │ └── src │ │ │ │ │ │ ├── Cholesky │ │ │ │ │ │ ├── LDLT.h │ │ │ │ │ │ ├── LLT.h │ │ │ │ │ │ └── LLT_LAPACKE.h │ │ │ │ │ │ ├── CholmodSupport │ │ │ │ │ │ └── CholmodSupport.h │ │ │ │ │ │ ├── Core │ │ │ │ │ │ ├── ArithmeticSequence.h │ │ │ │ │ │ ├── Array.h │ │ │ │ │ │ ├── ArrayBase.h │ │ │ │ │ │ ├── ArrayWrapper.h │ │ │ │ │ │ ├── Assign.h │ │ │ │ │ │ ├── AssignEvaluator.h │ │ │ │ │ │ ├── Assign_MKL.h │ │ │ │ │ │ ├── BandMatrix.h │ │ │ │ │ │ ├── Block.h │ │ │ │ │ │ ├── BooleanRedux.h │ │ │ │ │ │ ├── CommaInitializer.h │ │ │ │ │ │ ├── ConditionEstimator.h │ │ │ │ │ │ ├── CoreEvaluators.h │ │ │ │ │ │ ├── CoreIterators.h │ │ │ │ │ │ ├── CwiseBinaryOp.h │ │ │ │ │ │ ├── CwiseNullaryOp.h │ │ │ │ │ │ ├── CwiseTernaryOp.h │ │ │ │ │ │ ├── CwiseUnaryOp.h │ │ │ │ │ │ ├── CwiseUnaryView.h │ │ │ │ │ │ ├── DenseBase.h │ │ │ │ │ │ ├── DenseCoeffsBase.h │ │ │ │ │ │ ├── DenseStorage.h │ │ │ │ │ │ ├── Diagonal.h │ │ │ │ │ │ ├── DiagonalMatrix.h │ │ │ │ │ │ ├── DiagonalProduct.h │ │ │ │ │ │ ├── Dot.h │ │ │ │ │ │ ├── EigenBase.h │ │ │ │ │ │ ├── ForceAlignedAccess.h │ │ │ │ │ │ ├── Fuzzy.h │ │ │ │ │ │ ├── GeneralProduct.h │ │ │ │ │ │ ├── GenericPacketMath.h │ │ │ │ │ │ ├── GlobalFunctions.h │ │ │ │ │ │ ├── IO.h │ │ │ │ │ │ ├── IndexedView.h │ │ │ │ │ │ ├── Inverse.h │ │ │ │ │ │ ├── Map.h │ │ │ │ │ │ ├── MapBase.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── MathFunctionsImpl.h │ │ │ │ │ │ ├── Matrix.h │ │ │ │ │ │ ├── MatrixBase.h │ │ │ │ │ │ ├── NestByValue.h │ │ │ │ │ │ ├── NoAlias.h │ │ │ │ │ │ ├── NumTraits.h │ │ │ │ │ │ ├── PermutationMatrix.h │ │ │ │ │ │ ├── PlainObjectBase.h │ │ │ │ │ │ ├── Product.h │ │ │ │ │ │ ├── ProductEvaluators.h │ │ │ │ │ │ ├── Random.h │ │ │ │ │ │ ├── Redux.h │ │ │ │ │ │ ├── Ref.h │ │ │ │ │ │ ├── Replicate.h │ │ │ │ │ │ ├── ReturnByValue.h │ │ │ │ │ │ ├── Reverse.h │ │ │ │ │ │ ├── Select.h │ │ │ │ │ │ ├── SelfAdjointView.h │ │ │ │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ │ │ │ ├── Solve.h │ │ │ │ │ │ ├── SolveTriangular.h │ │ │ │ │ │ ├── SolverBase.h │ │ │ │ │ │ ├── StableNorm.h │ │ │ │ │ │ ├── Stride.h │ │ │ │ │ │ ├── Swap.h │ │ │ │ │ │ ├── Transpose.h │ │ │ │ │ │ ├── Transpositions.h │ │ │ │ │ │ ├── TriangularMatrix.h │ │ │ │ │ │ ├── VectorBlock.h │ │ │ │ │ │ ├── VectorwiseOp.h │ │ │ │ │ │ ├── Visitor.h │ │ │ │ │ │ ├── arch │ │ │ │ │ │ │ ├── AVX │ │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ │ ├── AVX512 │ │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ │ ├── AltiVec │ │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ │ ├── CUDA │ │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ │ ├── Half.h │ │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ │ ├── PacketMathHalf.h │ │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ │ ├── Default │ │ │ │ │ │ │ │ ├── ConjHelper.h │ │ │ │ │ │ │ │ └── Settings.h │ │ │ │ │ │ │ ├── NEON │ │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ │ ├── SSE │ │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ │ └── ZVector │ │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ ├── functors │ │ │ │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ │ │ │ ├── BinaryFunctors.h │ │ │ │ │ │ │ ├── NullaryFunctors.h │ │ │ │ │ │ │ ├── StlFunctors.h │ │ │ │ │ │ │ ├── TernaryFunctors.h │ │ │ │ │ │ │ └── UnaryFunctors.h │ │ │ │ │ │ ├── products │ │ │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ │ │ │ ├── Parallelizer.h │ │ │ │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ │ │ │ └── TriangularSolverVector.h │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── BlasUtil.h │ │ │ │ │ │ │ ├── Constants.h │ │ │ │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ │ │ │ ├── IndexedViewHelper.h │ │ │ │ │ │ │ ├── IntegralConstant.h │ │ │ │ │ │ │ ├── MKL_support.h │ │ │ │ │ │ │ ├── Macros.h │ │ │ │ │ │ │ ├── Memory.h │ │ │ │ │ │ │ ├── Meta.h │ │ │ │ │ │ │ ├── NonMPL2.h │ │ │ │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ │ │ │ ├── StaticAssert.h │ │ │ │ │ │ │ ├── SymbolicIndex.h │ │ │ │ │ │ │ └── XprHelper.h │ │ │ │ │ │ ├── Eigenvalues │ │ │ │ │ │ ├── ComplexEigenSolver.h │ │ │ │ │ │ ├── ComplexSchur.h │ │ │ │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ │ │ │ ├── EigenSolver.h │ │ │ │ │ │ ├── GeneralizedEigenSolver.h │ │ │ │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ │ │ │ ├── HessenbergDecomposition.h │ │ │ │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ │ │ │ ├── RealQZ.h │ │ │ │ │ │ ├── RealSchur.h │ │ │ │ │ │ ├── RealSchur_LAPACKE.h │ │ │ │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ │ │ │ └── Tridiagonalization.h │ │ │ │ │ │ ├── Geometry │ │ │ │ │ │ ├── AlignedBox.h │ │ │ │ │ │ ├── AngleAxis.h │ │ │ │ │ │ ├── EulerAngles.h │ │ │ │ │ │ ├── Homogeneous.h │ │ │ │ │ │ ├── Hyperplane.h │ │ │ │ │ │ ├── OrthoMethods.h │ │ │ │ │ │ ├── ParametrizedLine.h │ │ │ │ │ │ ├── Quaternion.h │ │ │ │ │ │ ├── Rotation2D.h │ │ │ │ │ │ ├── RotationBase.h │ │ │ │ │ │ ├── Scaling.h │ │ │ │ │ │ ├── Transform.h │ │ │ │ │ │ ├── Translation.h │ │ │ │ │ │ ├── Umeyama.h │ │ │ │ │ │ └── arch │ │ │ │ │ │ │ └── Geometry_SSE.h │ │ │ │ │ │ ├── Householder │ │ │ │ │ │ ├── BlockHouseholder.h │ │ │ │ │ │ ├── Householder.h │ │ │ │ │ │ └── HouseholderSequence.h │ │ │ │ │ │ ├── IterativeLinearSolvers │ │ │ │ │ │ ├── BasicPreconditioners.h │ │ │ │ │ │ ├── BiCGSTAB.h │ │ │ │ │ │ ├── ConjugateGradient.h │ │ │ │ │ │ ├── IncompleteCholesky.h │ │ │ │ │ │ ├── IncompleteLUT.h │ │ │ │ │ │ ├── IterativeSolverBase.h │ │ │ │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ │ │ │ └── SolveWithGuess.h │ │ │ │ │ │ ├── Jacobi │ │ │ │ │ │ └── Jacobi.h │ │ │ │ │ │ ├── KLUSupport │ │ │ │ │ │ └── KLUSupport.h │ │ │ │ │ │ ├── LU │ │ │ │ │ │ ├── Determinant.h │ │ │ │ │ │ ├── FullPivLU.h │ │ │ │ │ │ ├── InverseImpl.h │ │ │ │ │ │ ├── PartialPivLU.h │ │ │ │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ │ │ │ └── arch │ │ │ │ │ │ │ └── Inverse_SSE.h │ │ │ │ │ │ ├── MetisSupport │ │ │ │ │ │ └── MetisSupport.h │ │ │ │ │ │ ├── OrderingMethods │ │ │ │ │ │ ├── Amd.h │ │ │ │ │ │ ├── Eigen_Colamd.h │ │ │ │ │ │ └── Ordering.h │ │ │ │ │ │ ├── PaStiXSupport │ │ │ │ │ │ └── PaStiXSupport.h │ │ │ │ │ │ ├── PardisoSupport │ │ │ │ │ │ └── PardisoSupport.h │ │ │ │ │ │ ├── QR │ │ │ │ │ │ ├── ColPivHouseholderQR.h │ │ │ │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ │ │ │ ├── FullPivHouseholderQR.h │ │ │ │ │ │ ├── HouseholderQR.h │ │ │ │ │ │ └── HouseholderQR_LAPACKE.h │ │ │ │ │ │ ├── SPQRSupport │ │ │ │ │ │ └── SuiteSparseQRSupport.h │ │ │ │ │ │ ├── SVD │ │ │ │ │ │ ├── BDCSVD.h │ │ │ │ │ │ ├── JacobiSVD.h │ │ │ │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ │ │ │ ├── SVDBase.h │ │ │ │ │ │ └── UpperBidiagonalization.h │ │ │ │ │ │ ├── SparseCholesky │ │ │ │ │ │ ├── SimplicialCholesky.h │ │ │ │ │ │ └── SimplicialCholesky_impl.h │ │ │ │ │ │ ├── SparseCore │ │ │ │ │ │ ├── AmbiVector.h │ │ │ │ │ │ ├── CompressedStorage.h │ │ │ │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ │ │ │ ├── MappedSparseMatrix.h │ │ │ │ │ │ ├── SparseAssign.h │ │ │ │ │ │ ├── SparseBlock.h │ │ │ │ │ │ ├── SparseColEtree.h │ │ │ │ │ │ ├── SparseCompressedBase.h │ │ │ │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ │ │ │ ├── SparseDenseProduct.h │ │ │ │ │ │ ├── SparseDiagonalProduct.h │ │ │ │ │ │ ├── SparseDot.h │ │ │ │ │ │ ├── SparseFuzzy.h │ │ │ │ │ │ ├── SparseMap.h │ │ │ │ │ │ ├── SparseMatrix.h │ │ │ │ │ │ ├── SparseMatrixBase.h │ │ │ │ │ │ ├── SparsePermutation.h │ │ │ │ │ │ ├── SparseProduct.h │ │ │ │ │ │ ├── SparseRedux.h │ │ │ │ │ │ ├── SparseRef.h │ │ │ │ │ │ ├── SparseSelfAdjointView.h │ │ │ │ │ │ ├── SparseSolverBase.h │ │ │ │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ │ │ │ ├── SparseTranspose.h │ │ │ │ │ │ ├── SparseTriangularView.h │ │ │ │ │ │ ├── SparseUtil.h │ │ │ │ │ │ ├── SparseVector.h │ │ │ │ │ │ ├── SparseView.h │ │ │ │ │ │ └── TriangularSolver.h │ │ │ │ │ │ ├── SparseLU │ │ │ │ │ │ ├── SparseLU.h │ │ │ │ │ │ ├── SparseLUImpl.h │ │ │ │ │ │ ├── SparseLU_Memory.h │ │ │ │ │ │ ├── SparseLU_Structs.h │ │ │ │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ │ │ │ ├── SparseLU_Utils.h │ │ │ │ │ │ ├── SparseLU_column_bmod.h │ │ │ │ │ │ ├── SparseLU_column_dfs.h │ │ │ │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ │ │ │ ├── SparseLU_panel_bmod.h │ │ │ │ │ │ ├── SparseLU_panel_dfs.h │ │ │ │ │ │ ├── SparseLU_pivotL.h │ │ │ │ │ │ ├── SparseLU_pruneL.h │ │ │ │ │ │ └── SparseLU_relax_snode.h │ │ │ │ │ │ ├── SparseQR │ │ │ │ │ │ └── SparseQR.h │ │ │ │ │ │ ├── StlSupport │ │ │ │ │ │ ├── StdDeque.h │ │ │ │ │ │ ├── StdList.h │ │ │ │ │ │ ├── StdVector.h │ │ │ │ │ │ └── details.h │ │ │ │ │ │ ├── SuperLUSupport │ │ │ │ │ │ └── SuperLUSupport.h │ │ │ │ │ │ ├── UmfPackSupport │ │ │ │ │ │ └── UmfPackSupport.h │ │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── Image.h │ │ │ │ │ │ ├── Kernel.h │ │ │ │ │ │ ├── RealSvd2x2.h │ │ │ │ │ │ ├── blas.h │ │ │ │ │ │ ├── lapack.h │ │ │ │ │ │ ├── lapacke.h │ │ │ │ │ │ └── lapacke_mangling.h │ │ │ │ │ │ └── plugins │ │ │ │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ │ │ │ ├── BlockMethods.h │ │ │ │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ │ │ │ ├── IndexedViewMethods.h │ │ │ │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ │ │ │ └── MatrixCwiseUnaryOps.h │ │ │ │ ├── bench │ │ │ │ │ ├── BenchSparseUtil.h │ │ │ │ │ ├── BenchTimer.h │ │ │ │ │ ├── BenchUtil.h │ │ │ │ │ ├── basicbenchmark.h │ │ │ │ │ ├── btl │ │ │ │ │ │ ├── generic_bench │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ └── utilities.h │ │ │ │ │ │ └── libs │ │ │ │ │ │ │ └── BLAS │ │ │ │ │ │ │ ├── blas.h │ │ │ │ │ │ │ └── c_interface_base.h │ │ │ │ │ ├── perf_monitoring │ │ │ │ │ │ ├── gemm_common.h │ │ │ │ │ │ └── gemv_common.h │ │ │ │ │ ├── spbench │ │ │ │ │ │ ├── spbenchsolver.h │ │ │ │ │ │ └── spbenchstyle.h │ │ │ │ │ └── tensors │ │ │ │ │ │ ├── benchmark.h │ │ │ │ │ │ └── tensor_benchmarks.h │ │ │ │ ├── blas │ │ │ │ │ ├── BandTriangularSolver.h │ │ │ │ │ ├── GeneralRank1Update.h │ │ │ │ │ ├── PackedSelfadjointProduct.h │ │ │ │ │ ├── PackedTriangularMatrixVector.h │ │ │ │ │ ├── PackedTriangularSolverVector.h │ │ │ │ │ ├── Rank2Update.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── f2c │ │ │ │ │ │ └── datatypes.h │ │ │ │ │ ├── level1_cplx_impl.h │ │ │ │ │ ├── level1_impl.h │ │ │ │ │ ├── level1_real_impl.h │ │ │ │ │ ├── level2_cplx_impl.h │ │ │ │ │ ├── level2_impl.h │ │ │ │ │ ├── level2_real_impl.h │ │ │ │ │ └── level3_impl.h │ │ │ │ ├── demos │ │ │ │ │ ├── mandelbrot │ │ │ │ │ │ └── mandelbrot.h │ │ │ │ │ ├── mix_eigen_and_c │ │ │ │ │ │ └── binary_library.h │ │ │ │ │ └── opengl │ │ │ │ │ │ ├── camera.h │ │ │ │ │ │ ├── gpuhelper.h │ │ │ │ │ │ ├── icosphere.h │ │ │ │ │ │ ├── quaternion_demo.h │ │ │ │ │ │ └── trackball.h │ │ │ │ ├── lapack │ │ │ │ │ └── lapack_common.h │ │ │ │ ├── test │ │ │ │ │ ├── bug1213.h │ │ │ │ │ ├── cuda_common.h │ │ │ │ │ ├── evaluator_common.h │ │ │ │ │ ├── main.h │ │ │ │ │ ├── product.h │ │ │ │ │ ├── sparse.h │ │ │ │ │ ├── sparse_solver.h │ │ │ │ │ ├── svd_common.h │ │ │ │ │ └── svd_fill.h │ │ │ │ └── unsupported │ │ │ │ │ ├── Eigen │ │ │ │ │ ├── CXX11 │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── Tensor │ │ │ │ │ │ │ ├── Tensor.h │ │ │ │ │ │ │ ├── TensorArgMax.h │ │ │ │ │ │ │ ├── TensorArgMaxSycl.h │ │ │ │ │ │ │ ├── TensorAssign.h │ │ │ │ │ │ │ ├── TensorBase.h │ │ │ │ │ │ │ ├── TensorBroadcasting.h │ │ │ │ │ │ │ ├── TensorChipping.h │ │ │ │ │ │ │ ├── TensorConcatenation.h │ │ │ │ │ │ │ ├── TensorContraction.h │ │ │ │ │ │ │ ├── TensorContractionBlocking.h │ │ │ │ │ │ │ ├── TensorContractionCuda.h │ │ │ │ │ │ │ ├── TensorContractionMapper.h │ │ │ │ │ │ │ ├── TensorContractionSycl.h │ │ │ │ │ │ │ ├── TensorContractionThreadPool.h │ │ │ │ │ │ │ ├── TensorConversion.h │ │ │ │ │ │ │ ├── TensorConvolution.h │ │ │ │ │ │ │ ├── TensorConvolutionSycl.h │ │ │ │ │ │ │ ├── TensorCostModel.h │ │ │ │ │ │ │ ├── TensorCustomOp.h │ │ │ │ │ │ │ ├── TensorDevice.h │ │ │ │ │ │ │ ├── TensorDeviceCuda.h │ │ │ │ │ │ │ ├── TensorDeviceDefault.h │ │ │ │ │ │ │ ├── TensorDeviceSycl.h │ │ │ │ │ │ │ ├── TensorDeviceThreadPool.h │ │ │ │ │ │ │ ├── TensorDimensionList.h │ │ │ │ │ │ │ ├── TensorDimensions.h │ │ │ │ │ │ │ ├── TensorEvalTo.h │ │ │ │ │ │ │ ├── TensorEvaluator.h │ │ │ │ │ │ │ ├── TensorExecutor.h │ │ │ │ │ │ │ ├── TensorExpr.h │ │ │ │ │ │ │ ├── TensorFFT.h │ │ │ │ │ │ │ ├── TensorFixedSize.h │ │ │ │ │ │ │ ├── TensorForcedEval.h │ │ │ │ │ │ │ ├── TensorForwardDeclarations.h │ │ │ │ │ │ │ ├── TensorFunctors.h │ │ │ │ │ │ │ ├── TensorGenerator.h │ │ │ │ │ │ │ ├── TensorGlobalFunctions.h │ │ │ │ │ │ │ ├── TensorIO.h │ │ │ │ │ │ │ ├── TensorImagePatch.h │ │ │ │ │ │ │ ├── TensorIndexList.h │ │ │ │ │ │ │ ├── TensorInflation.h │ │ │ │ │ │ │ ├── TensorInitializer.h │ │ │ │ │ │ │ ├── TensorIntDiv.h │ │ │ │ │ │ │ ├── TensorLayoutSwap.h │ │ │ │ │ │ │ ├── TensorMacros.h │ │ │ │ │ │ │ ├── TensorMap.h │ │ │ │ │ │ │ ├── TensorMeta.h │ │ │ │ │ │ │ ├── TensorMorphing.h │ │ │ │ │ │ │ ├── TensorPadding.h │ │ │ │ │ │ │ ├── TensorPatch.h │ │ │ │ │ │ │ ├── TensorRandom.h │ │ │ │ │ │ │ ├── TensorReduction.h │ │ │ │ │ │ │ ├── TensorReductionCuda.h │ │ │ │ │ │ │ ├── TensorReductionSycl.h │ │ │ │ │ │ │ ├── TensorRef.h │ │ │ │ │ │ │ ├── TensorReverse.h │ │ │ │ │ │ │ ├── TensorScan.h │ │ │ │ │ │ │ ├── TensorShuffling.h │ │ │ │ │ │ │ ├── TensorStorage.h │ │ │ │ │ │ │ ├── TensorStriding.h │ │ │ │ │ │ │ ├── TensorSycl.h │ │ │ │ │ │ │ ├── TensorSyclConvertToDeviceExpression.h │ │ │ │ │ │ │ ├── TensorSyclExprConstructor.h │ │ │ │ │ │ │ ├── TensorSyclExtractAccessor.h │ │ │ │ │ │ │ ├── TensorSyclExtractFunctors.h │ │ │ │ │ │ │ ├── TensorSyclFunctors.h │ │ │ │ │ │ │ ├── TensorSyclLeafCount.h │ │ │ │ │ │ │ ├── TensorSyclPlaceHolderExpr.h │ │ │ │ │ │ │ ├── TensorSyclRun.h │ │ │ │ │ │ │ ├── TensorSyclTuple.h │ │ │ │ │ │ │ ├── TensorTrace.h │ │ │ │ │ │ │ ├── TensorTraits.h │ │ │ │ │ │ │ ├── TensorUInt128.h │ │ │ │ │ │ │ └── TensorVolumePatch.h │ │ │ │ │ │ │ ├── TensorSymmetry │ │ │ │ │ │ │ ├── DynamicSymmetry.h │ │ │ │ │ │ │ ├── StaticSymmetry.h │ │ │ │ │ │ │ ├── Symmetry.h │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ └── TemplateGroupTheory.h │ │ │ │ │ │ │ ├── ThreadPool │ │ │ │ │ │ │ ├── EventCount.h │ │ │ │ │ │ │ ├── NonBlockingThreadPool.h │ │ │ │ │ │ │ ├── RunQueue.h │ │ │ │ │ │ │ ├── SimpleThreadPool.h │ │ │ │ │ │ │ ├── ThreadCancel.h │ │ │ │ │ │ │ ├── ThreadEnvironment.h │ │ │ │ │ │ │ ├── ThreadLocal.h │ │ │ │ │ │ │ ├── ThreadPoolInterface.h │ │ │ │ │ │ │ └── ThreadYield.h │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── CXX11Meta.h │ │ │ │ │ │ │ ├── CXX11Workarounds.h │ │ │ │ │ │ │ ├── EmulateArray.h │ │ │ │ │ │ │ ├── EmulateCXX11Meta.h │ │ │ │ │ │ │ └── MaxSizeVector.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── AutoDiff │ │ │ │ │ │ ├── AutoDiffJacobian.h │ │ │ │ │ │ ├── AutoDiffScalar.h │ │ │ │ │ │ └── AutoDiffVector.h │ │ │ │ │ │ ├── BVH │ │ │ │ │ │ ├── BVAlgorithms.h │ │ │ │ │ │ └── KdBVH.h │ │ │ │ │ │ ├── Eigenvalues │ │ │ │ │ │ └── ArpackSelfAdjointEigenSolver.h │ │ │ │ │ │ ├── EulerAngles │ │ │ │ │ │ ├── EulerAngles.h │ │ │ │ │ │ └── EulerSystem.h │ │ │ │ │ │ ├── FFT │ │ │ │ │ │ ├── ei_fftw_impl.h │ │ │ │ │ │ └── ei_kissfft_impl.h │ │ │ │ │ │ ├── IterativeSolvers │ │ │ │ │ │ ├── ConstrainedConjGrad.h │ │ │ │ │ │ ├── DGMRES.h │ │ │ │ │ │ ├── GMRES.h │ │ │ │ │ │ ├── IncompleteLU.h │ │ │ │ │ │ ├── IterationController.h │ │ │ │ │ │ ├── MINRES.h │ │ │ │ │ │ └── Scaling.h │ │ │ │ │ │ ├── KroneckerProduct │ │ │ │ │ │ └── KroneckerTensorProduct.h │ │ │ │ │ │ ├── LevenbergMarquardt │ │ │ │ │ │ ├── LMcovar.h │ │ │ │ │ │ ├── LMonestep.h │ │ │ │ │ │ ├── LMpar.h │ │ │ │ │ │ ├── LMqrsolv.h │ │ │ │ │ │ └── LevenbergMarquardt.h │ │ │ │ │ │ ├── MatrixFunctions │ │ │ │ │ │ ├── MatrixExponential.h │ │ │ │ │ │ ├── MatrixFunction.h │ │ │ │ │ │ ├── MatrixLogarithm.h │ │ │ │ │ │ ├── MatrixPower.h │ │ │ │ │ │ ├── MatrixSquareRoot.h │ │ │ │ │ │ └── StemFunction.h │ │ │ │ │ │ ├── MoreVectorization │ │ │ │ │ │ └── MathFunctions.h │ │ │ │ │ │ ├── NonLinearOptimization │ │ │ │ │ │ ├── HybridNonLinearSolver.h │ │ │ │ │ │ ├── LevenbergMarquardt.h │ │ │ │ │ │ ├── chkder.h │ │ │ │ │ │ ├── covar.h │ │ │ │ │ │ ├── dogleg.h │ │ │ │ │ │ ├── fdjac1.h │ │ │ │ │ │ ├── lmpar.h │ │ │ │ │ │ ├── qrsolv.h │ │ │ │ │ │ ├── r1mpyq.h │ │ │ │ │ │ ├── r1updt.h │ │ │ │ │ │ └── rwupdt.h │ │ │ │ │ │ ├── NumericalDiff │ │ │ │ │ │ └── NumericalDiff.h │ │ │ │ │ │ ├── Polynomials │ │ │ │ │ │ ├── Companion.h │ │ │ │ │ │ ├── PolynomialSolver.h │ │ │ │ │ │ └── PolynomialUtils.h │ │ │ │ │ │ ├── Skyline │ │ │ │ │ │ ├── SkylineInplaceLU.h │ │ │ │ │ │ ├── SkylineMatrix.h │ │ │ │ │ │ ├── SkylineMatrixBase.h │ │ │ │ │ │ ├── SkylineProduct.h │ │ │ │ │ │ ├── SkylineStorage.h │ │ │ │ │ │ └── SkylineUtil.h │ │ │ │ │ │ ├── SparseExtra │ │ │ │ │ │ ├── BlockOfDynamicSparseMatrix.h │ │ │ │ │ │ ├── BlockSparseMatrix.h │ │ │ │ │ │ ├── DynamicSparseMatrix.h │ │ │ │ │ │ ├── MarketIO.h │ │ │ │ │ │ ├── MatrixMarketIterator.h │ │ │ │ │ │ └── RandomSetter.h │ │ │ │ │ │ ├── SpecialFunctions │ │ │ │ │ │ ├── SpecialFunctionsArrayAPI.h │ │ │ │ │ │ ├── SpecialFunctionsFunctors.h │ │ │ │ │ │ ├── SpecialFunctionsHalf.h │ │ │ │ │ │ ├── SpecialFunctionsImpl.h │ │ │ │ │ │ ├── SpecialFunctionsPacketMath.h │ │ │ │ │ │ └── arch │ │ │ │ │ │ │ └── CUDA │ │ │ │ │ │ │ └── CudaSpecialFunctions.h │ │ │ │ │ │ └── Splines │ │ │ │ │ │ ├── Spline.h │ │ │ │ │ │ ├── SplineFitting.h │ │ │ │ │ │ └── SplineFwd.h │ │ │ │ │ └── test │ │ │ │ │ ├── matrix_functions.h │ │ │ │ │ └── mpreal │ │ │ │ │ └── mpreal.h │ │ │ │ ├── farmhash │ │ │ │ ├── dev │ │ │ │ │ └── farmhash.h │ │ │ │ └── src │ │ │ │ │ └── farmhash.h │ │ │ │ ├── flatbuffers │ │ │ │ ├── grpc │ │ │ │ │ └── src │ │ │ │ │ │ └── compiler │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── cpp_generator.h │ │ │ │ │ │ ├── go_generator.h │ │ │ │ │ │ ├── java_generator.h │ │ │ │ │ │ └── schema_interface.h │ │ │ │ ├── include │ │ │ │ │ └── flatbuffers │ │ │ │ │ │ ├── base.h │ │ │ │ │ │ ├── code_generators.h │ │ │ │ │ │ ├── flatbuffers.h │ │ │ │ │ │ ├── flatc.h │ │ │ │ │ │ ├── flexbuffers.h │ │ │ │ │ │ ├── grpc.h │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ ├── idl.h │ │ │ │ │ │ ├── minireflect.h │ │ │ │ │ │ ├── reflection.h │ │ │ │ │ │ ├── reflection_generated.h │ │ │ │ │ │ ├── registry.h │ │ │ │ │ │ ├── stl_emulation.h │ │ │ │ │ │ └── util.h │ │ │ │ ├── samples │ │ │ │ │ └── monster_generated.h │ │ │ │ └── tests │ │ │ │ │ ├── monster_test.grpc.fb.h │ │ │ │ │ ├── monster_test_generated.h │ │ │ │ │ ├── namespace_test │ │ │ │ │ ├── namespace_test1_generated.h │ │ │ │ │ └── namespace_test2_generated.h │ │ │ │ │ └── union_vector │ │ │ │ │ └── union_vector_generated.h │ │ │ │ ├── gemmlowp │ │ │ │ ├── eight_bit_int_gemm │ │ │ │ │ └── eight_bit_int_gemm.h │ │ │ │ ├── fixedpoint │ │ │ │ │ ├── fixedpoint.h │ │ │ │ │ ├── fixedpoint_avx.h │ │ │ │ │ ├── fixedpoint_msa.h │ │ │ │ │ ├── fixedpoint_neon.h │ │ │ │ │ └── fixedpoint_sse.h │ │ │ │ ├── internal │ │ │ │ │ ├── allocator.h │ │ │ │ │ ├── block_params.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── compute.h │ │ │ │ │ ├── dispatch_gemm_shape.h │ │ │ │ │ ├── kernel.h │ │ │ │ │ ├── kernel_avx.h │ │ │ │ │ ├── kernel_default.h │ │ │ │ │ ├── kernel_msa.h │ │ │ │ │ ├── kernel_neon.h │ │ │ │ │ ├── kernel_reference.h │ │ │ │ │ ├── kernel_sse.h │ │ │ │ │ ├── multi_thread_gemm.h │ │ │ │ │ ├── output.h │ │ │ │ │ ├── output_avx.h │ │ │ │ │ ├── output_msa.h │ │ │ │ │ ├── output_neon.h │ │ │ │ │ ├── output_sse.h │ │ │ │ │ ├── pack.h │ │ │ │ │ ├── pack_avx.h │ │ │ │ │ ├── pack_msa.h │ │ │ │ │ ├── pack_neon.h │ │ │ │ │ ├── pack_sse.h │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── simd_wrappers.h │ │ │ │ │ ├── simd_wrappers_common_neon_sse.h │ │ │ │ │ ├── simd_wrappers_msa.h │ │ │ │ │ ├── simd_wrappers_neon.h │ │ │ │ │ ├── simd_wrappers_sse.h │ │ │ │ │ ├── single_thread_gemm.h │ │ │ │ │ └── unpack.h │ │ │ │ ├── meta │ │ │ │ │ ├── base.h │ │ │ │ │ ├── legacy_multi_thread_common.h │ │ │ │ │ ├── legacy_multi_thread_gemm.h │ │ │ │ │ ├── legacy_multi_thread_gemv.h │ │ │ │ │ ├── legacy_operations_common.h │ │ │ │ │ ├── legacy_single_thread_gemm.h │ │ │ │ │ ├── multi_thread_common.h │ │ │ │ │ ├── multi_thread_gemm.h │ │ │ │ │ ├── multi_thread_transform.h │ │ │ │ │ ├── quantized_mul_kernels.h │ │ │ │ │ ├── quantized_mul_kernels_arm_32.h │ │ │ │ │ ├── quantized_mul_kernels_arm_64.h │ │ │ │ │ ├── single_thread_gemm.h │ │ │ │ │ ├── single_thread_transform.h │ │ │ │ │ ├── streams.h │ │ │ │ │ ├── streams_arm_32.h │ │ │ │ │ ├── streams_arm_64.h │ │ │ │ │ ├── transform_kernels.h │ │ │ │ │ ├── transform_kernels_arm_32.h │ │ │ │ │ └── transform_kernels_arm_64.h │ │ │ │ ├── profiling │ │ │ │ │ ├── instrumentation.h │ │ │ │ │ ├── profiler.h │ │ │ │ │ └── pthread_everywhere.h │ │ │ │ ├── public │ │ │ │ │ ├── bit_depth.h │ │ │ │ │ ├── gemmlowp.h │ │ │ │ │ ├── map.h │ │ │ │ │ └── output_stages.h │ │ │ │ └── test │ │ │ │ │ ├── ios │ │ │ │ │ └── gemmlowp_test │ │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ │ └── ViewController.h │ │ │ │ │ ├── test.h │ │ │ │ │ └── test_data.h │ │ │ │ ├── googletest │ │ │ │ ├── googlemock │ │ │ │ │ ├── include │ │ │ │ │ │ └── gmock │ │ │ │ │ │ │ ├── gmock-actions.h │ │ │ │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ │ │ │ ├── gmock-generated-nice-strict.h │ │ │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ │ │ ├── gmock-more-actions.h │ │ │ │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ │ │ │ ├── gmock.h │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── custom │ │ │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ │ │ └── gmock-port.h │ │ │ │ │ │ │ ├── gmock-generated-internal-utils.h │ │ │ │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ │ │ │ └── gmock-port.h │ │ │ │ │ └── test │ │ │ │ │ │ └── gmock_link_test.h │ │ │ │ └── googletest │ │ │ │ │ ├── include │ │ │ │ │ └── gtest │ │ │ │ │ │ ├── gtest-death-test.h │ │ │ │ │ │ ├── gtest-message.h │ │ │ │ │ │ ├── gtest-param-test.h │ │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ │ ├── gtest-spi.h │ │ │ │ │ │ ├── gtest-test-part.h │ │ │ │ │ │ ├── gtest-typed-test.h │ │ │ │ │ │ ├── gtest.h │ │ │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ │ │ ├── gtest_prod.h │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── custom │ │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ │ └── gtest.h │ │ │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ │ │ ├── gtest-filepath.h │ │ │ │ │ │ ├── gtest-internal.h │ │ │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ │ │ ├── gtest-param-util.h │ │ │ │ │ │ ├── gtest-port-arch.h │ │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ │ ├── gtest-string.h │ │ │ │ │ │ ├── gtest-tuple.h │ │ │ │ │ │ └── gtest-type-util.h │ │ │ │ │ ├── samples │ │ │ │ │ ├── prime_tables.h │ │ │ │ │ ├── sample1.h │ │ │ │ │ ├── sample2.h │ │ │ │ │ ├── sample3-inl.h │ │ │ │ │ └── sample4.h │ │ │ │ │ ├── src │ │ │ │ │ └── gtest-internal-inl.h │ │ │ │ │ ├── test │ │ │ │ │ ├── gtest-param-test_test.h │ │ │ │ │ ├── gtest-typed-test_test.h │ │ │ │ │ └── production.h │ │ │ │ │ └── xcode │ │ │ │ │ └── Samples │ │ │ │ │ └── FrameworkSample │ │ │ │ │ └── widget.h │ │ │ │ └── neon_2_sse │ │ │ │ └── NEON_2_SSE.h │ │ ├── optimize │ │ │ └── quantize_weights.h │ │ └── verifier.h │ ├── util.h │ └── version.h │ ├── memory_planner.h │ ├── model.h │ ├── models │ └── smartreply │ │ └── predictor.h │ ├── mutable_op_resolver.h │ ├── nnapi │ └── NeuralNetworksShim.h │ ├── nnapi_delegate.h │ ├── op_resolver.h │ ├── optional_debug_tools.h │ ├── profiling │ ├── profile_buffer.h │ ├── profile_summarizer.h │ ├── profiler.h │ └── time.h │ ├── python │ └── interpreter_wrapper │ │ └── interpreter_wrapper.h │ ├── schema │ ├── builtin_ops_header │ │ └── generator.h │ └── schema_generated.h │ ├── simple_memory_arena.h │ ├── stderr_reporter.h │ ├── string.h │ ├── string_util.h │ ├── testing │ ├── generate_testspec.h │ ├── init_tensorflow.h │ ├── join.h │ ├── message.h │ ├── parse_testdata.h │ ├── split.h │ ├── test_runner.h │ ├── tf_driver.h │ ├── tflite_diff_flags.h │ ├── tflite_diff_util.h │ ├── tflite_driver.h │ ├── tokenize.h │ └── util.h │ ├── toco │ ├── allocate_transient_arrays.h │ ├── args.h │ ├── dump_graphviz.h │ ├── export_tensorflow.h │ ├── format_port.h │ ├── graph_transformations │ │ ├── graph_transformations.h │ │ ├── lstm_utils.h │ │ ├── quantization_util.h │ │ └── remove_trivial_passthrough.h │ ├── import_tensorflow.h │ ├── model.h │ ├── model_cmdline_flags.h │ ├── python │ │ └── toco_python_api.h │ ├── runtime │ │ ├── common.h │ │ └── types.h │ ├── tensorflow_graph_matching │ │ ├── cluster.h │ │ ├── cluster_utils.h │ │ ├── resolve_cluster.h │ │ └── resolve_svdf.h │ ├── tensorflow_util.h │ ├── tflite │ │ ├── builtin_operator.h │ │ ├── custom_operator.h │ │ ├── export.h │ │ ├── import.h │ │ ├── operator.h │ │ ├── simple_operator.h │ │ ├── types.h │ │ └── whitelisted_flex_ops.h │ ├── toco_cmdline_flags.h │ ├── toco_graphviz_dump_options.h │ ├── toco_port.h │ ├── toco_tooling.h │ ├── toco_types.h │ └── tooling_util.h │ ├── tools │ ├── accuracy │ │ ├── accuracy_eval_stage.h │ │ ├── csv_writer.h │ │ ├── eval_pipeline.h │ │ ├── eval_pipeline_builder.h │ │ ├── file_reader_stage.h │ │ ├── ilsvrc │ │ │ ├── imagenet_model_evaluator.h │ │ │ ├── imagenet_topk_eval.h │ │ │ └── inception_preprocessing.h │ │ ├── run_tflite_model_stage.h │ │ ├── stage.h │ │ └── utils.h │ ├── benchmark │ │ ├── benchmark_model.h │ │ ├── benchmark_params.h │ │ ├── benchmark_tflite_model.h │ │ ├── command_line_flags.h │ │ ├── ios │ │ │ └── TFLiteBenchmark │ │ │ │ └── TFLiteBenchmark │ │ │ │ ├── AppDelegate.h │ │ │ │ └── BenchmarkViewController.h │ │ └── logging.h │ ├── gen_op_registration.h │ ├── make │ │ └── downloads │ │ │ ├── absl │ │ │ └── absl │ │ │ │ ├── algorithm │ │ │ │ ├── algorithm.h │ │ │ │ └── container.h │ │ │ │ ├── base │ │ │ │ ├── attributes.h │ │ │ │ ├── call_once.h │ │ │ │ ├── casts.h │ │ │ │ ├── config.h │ │ │ │ ├── dynamic_annotations.h │ │ │ │ ├── internal │ │ │ │ │ ├── atomic_hook.h │ │ │ │ │ ├── bits.h │ │ │ │ │ ├── cycleclock.h │ │ │ │ │ ├── direct_mmap.h │ │ │ │ │ ├── endian.h │ │ │ │ │ ├── exception_safety_testing.h │ │ │ │ │ ├── exception_testing.h │ │ │ │ │ ├── hide_ptr.h │ │ │ │ │ ├── identity.h │ │ │ │ │ ├── inline_variable.h │ │ │ │ │ ├── inline_variable_testing.h │ │ │ │ │ ├── invoke.h │ │ │ │ │ ├── low_level_alloc.h │ │ │ │ │ ├── low_level_scheduling.h │ │ │ │ │ ├── per_thread_tls.h │ │ │ │ │ ├── pretty_function.h │ │ │ │ │ ├── raw_logging.h │ │ │ │ │ ├── scheduling_mode.h │ │ │ │ │ ├── spinlock.h │ │ │ │ │ ├── spinlock_wait.h │ │ │ │ │ ├── sysinfo.h │ │ │ │ │ ├── thread_identity.h │ │ │ │ │ ├── throw_delegate.h │ │ │ │ │ ├── tsan_mutex_interface.h │ │ │ │ │ ├── unaligned_access.h │ │ │ │ │ └── unscaledcycleclock.h │ │ │ │ ├── log_severity.h │ │ │ │ ├── macros.h │ │ │ │ ├── optimization.h │ │ │ │ ├── policy_checks.h │ │ │ │ ├── port.h │ │ │ │ └── thread_annotations.h │ │ │ │ ├── container │ │ │ │ ├── fixed_array.h │ │ │ │ ├── flat_hash_map.h │ │ │ │ ├── flat_hash_set.h │ │ │ │ ├── inlined_vector.h │ │ │ │ ├── internal │ │ │ │ │ ├── compressed_tuple.h │ │ │ │ │ ├── container_memory.h │ │ │ │ │ ├── hash_function_defaults.h │ │ │ │ │ ├── hash_generator_testing.h │ │ │ │ │ ├── hash_policy_testing.h │ │ │ │ │ ├── hash_policy_traits.h │ │ │ │ │ ├── hashtable_debug.h │ │ │ │ │ ├── hashtable_debug_hooks.h │ │ │ │ │ ├── layout.h │ │ │ │ │ ├── node_hash_policy.h │ │ │ │ │ ├── raw_hash_map.h │ │ │ │ │ ├── raw_hash_set.h │ │ │ │ │ ├── test_instance_tracker.h │ │ │ │ │ ├── tracked.h │ │ │ │ │ ├── unordered_map_constructor_test.h │ │ │ │ │ ├── unordered_map_lookup_test.h │ │ │ │ │ ├── unordered_map_modifiers_test.h │ │ │ │ │ ├── unordered_set_constructor_test.h │ │ │ │ │ ├── unordered_set_lookup_test.h │ │ │ │ │ └── unordered_set_modifiers_test.h │ │ │ │ ├── node_hash_map.h │ │ │ │ └── node_hash_set.h │ │ │ │ ├── debugging │ │ │ │ ├── failure_signal_handler.h │ │ │ │ ├── internal │ │ │ │ │ ├── address_is_readable.h │ │ │ │ │ ├── demangle.h │ │ │ │ │ ├── elf_mem_image.h │ │ │ │ │ ├── examine_stack.h │ │ │ │ │ ├── stack_consumption.h │ │ │ │ │ ├── stacktrace_config.h │ │ │ │ │ ├── symbolize.h │ │ │ │ │ └── vdso_support.h │ │ │ │ ├── leak_check.h │ │ │ │ ├── stacktrace.h │ │ │ │ └── symbolize.h │ │ │ │ ├── hash │ │ │ │ ├── hash.h │ │ │ │ ├── hash_testing.h │ │ │ │ └── internal │ │ │ │ │ ├── city.h │ │ │ │ │ ├── hash.h │ │ │ │ │ └── spy_hash_state.h │ │ │ │ ├── memory │ │ │ │ └── memory.h │ │ │ │ ├── meta │ │ │ │ └── type_traits.h │ │ │ │ ├── numeric │ │ │ │ └── int128.h │ │ │ │ ├── strings │ │ │ │ ├── ascii.h │ │ │ │ ├── charconv.h │ │ │ │ ├── escaping.h │ │ │ │ ├── internal │ │ │ │ │ ├── char_map.h │ │ │ │ │ ├── charconv_bigint.h │ │ │ │ │ ├── charconv_parse.h │ │ │ │ │ ├── escaping_test_common.h │ │ │ │ │ ├── memutil.h │ │ │ │ │ ├── numbers_test_common.h │ │ │ │ │ ├── ostringstream.h │ │ │ │ │ ├── resize_uninitialized.h │ │ │ │ │ ├── stl_type_traits.h │ │ │ │ │ ├── str_format │ │ │ │ │ │ ├── arg.h │ │ │ │ │ │ ├── bind.h │ │ │ │ │ │ ├── checker.h │ │ │ │ │ │ ├── extension.h │ │ │ │ │ │ ├── float_conversion.h │ │ │ │ │ │ ├── output.h │ │ │ │ │ │ └── parser.h │ │ │ │ │ ├── str_join_internal.h │ │ │ │ │ ├── str_split_internal.h │ │ │ │ │ └── utf8.h │ │ │ │ ├── match.h │ │ │ │ ├── numbers.h │ │ │ │ ├── str_cat.h │ │ │ │ ├── str_format.h │ │ │ │ ├── str_join.h │ │ │ │ ├── str_replace.h │ │ │ │ ├── str_split.h │ │ │ │ ├── string_view.h │ │ │ │ ├── strip.h │ │ │ │ └── substitute.h │ │ │ │ ├── synchronization │ │ │ │ ├── barrier.h │ │ │ │ ├── blocking_counter.h │ │ │ │ ├── internal │ │ │ │ │ ├── create_thread_identity.h │ │ │ │ │ ├── graphcycles.h │ │ │ │ │ ├── kernel_timeout.h │ │ │ │ │ ├── per_thread_sem.h │ │ │ │ │ ├── thread_pool.h │ │ │ │ │ └── waiter.h │ │ │ │ ├── mutex.h │ │ │ │ └── notification.h │ │ │ │ ├── time │ │ │ │ ├── civil_time.h │ │ │ │ ├── clock.h │ │ │ │ ├── internal │ │ │ │ │ ├── cctz │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ └── cctz │ │ │ │ │ │ │ │ ├── civil_time.h │ │ │ │ │ │ │ │ ├── civil_time_detail.h │ │ │ │ │ │ │ │ ├── time_zone.h │ │ │ │ │ │ │ │ └── zone_info_source.h │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── time_zone_fixed.h │ │ │ │ │ │ │ ├── time_zone_if.h │ │ │ │ │ │ │ ├── time_zone_impl.h │ │ │ │ │ │ │ ├── time_zone_info.h │ │ │ │ │ │ │ ├── time_zone_libc.h │ │ │ │ │ │ │ ├── time_zone_posix.h │ │ │ │ │ │ │ └── tzfile.h │ │ │ │ │ └── test_util.h │ │ │ │ └── time.h │ │ │ │ ├── types │ │ │ │ ├── any.h │ │ │ │ ├── bad_any_cast.h │ │ │ │ ├── bad_optional_access.h │ │ │ │ ├── bad_variant_access.h │ │ │ │ ├── internal │ │ │ │ │ └── variant.h │ │ │ │ ├── optional.h │ │ │ │ ├── span.h │ │ │ │ └── variant.h │ │ │ │ └── utility │ │ │ │ └── utility.h │ │ │ ├── eigen │ │ │ ├── Eigen │ │ │ │ └── src │ │ │ │ │ ├── Cholesky │ │ │ │ │ ├── LDLT.h │ │ │ │ │ ├── LLT.h │ │ │ │ │ └── LLT_LAPACKE.h │ │ │ │ │ ├── CholmodSupport │ │ │ │ │ └── CholmodSupport.h │ │ │ │ │ ├── Core │ │ │ │ │ ├── ArithmeticSequence.h │ │ │ │ │ ├── Array.h │ │ │ │ │ ├── ArrayBase.h │ │ │ │ │ ├── ArrayWrapper.h │ │ │ │ │ ├── Assign.h │ │ │ │ │ ├── AssignEvaluator.h │ │ │ │ │ ├── Assign_MKL.h │ │ │ │ │ ├── BandMatrix.h │ │ │ │ │ ├── Block.h │ │ │ │ │ ├── BooleanRedux.h │ │ │ │ │ ├── CommaInitializer.h │ │ │ │ │ ├── ConditionEstimator.h │ │ │ │ │ ├── CoreEvaluators.h │ │ │ │ │ ├── CoreIterators.h │ │ │ │ │ ├── CwiseBinaryOp.h │ │ │ │ │ ├── CwiseNullaryOp.h │ │ │ │ │ ├── CwiseTernaryOp.h │ │ │ │ │ ├── CwiseUnaryOp.h │ │ │ │ │ ├── CwiseUnaryView.h │ │ │ │ │ ├── DenseBase.h │ │ │ │ │ ├── DenseCoeffsBase.h │ │ │ │ │ ├── DenseStorage.h │ │ │ │ │ ├── Diagonal.h │ │ │ │ │ ├── DiagonalMatrix.h │ │ │ │ │ ├── DiagonalProduct.h │ │ │ │ │ ├── Dot.h │ │ │ │ │ ├── EigenBase.h │ │ │ │ │ ├── ForceAlignedAccess.h │ │ │ │ │ ├── Fuzzy.h │ │ │ │ │ ├── GeneralProduct.h │ │ │ │ │ ├── GenericPacketMath.h │ │ │ │ │ ├── GlobalFunctions.h │ │ │ │ │ ├── IO.h │ │ │ │ │ ├── IndexedView.h │ │ │ │ │ ├── Inverse.h │ │ │ │ │ ├── Map.h │ │ │ │ │ ├── MapBase.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── MathFunctionsImpl.h │ │ │ │ │ ├── Matrix.h │ │ │ │ │ ├── MatrixBase.h │ │ │ │ │ ├── NestByValue.h │ │ │ │ │ ├── NoAlias.h │ │ │ │ │ ├── NumTraits.h │ │ │ │ │ ├── PermutationMatrix.h │ │ │ │ │ ├── PlainObjectBase.h │ │ │ │ │ ├── Product.h │ │ │ │ │ ├── ProductEvaluators.h │ │ │ │ │ ├── Random.h │ │ │ │ │ ├── Redux.h │ │ │ │ │ ├── Ref.h │ │ │ │ │ ├── Replicate.h │ │ │ │ │ ├── ReturnByValue.h │ │ │ │ │ ├── Reverse.h │ │ │ │ │ ├── Select.h │ │ │ │ │ ├── SelfAdjointView.h │ │ │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ │ │ ├── Solve.h │ │ │ │ │ ├── SolveTriangular.h │ │ │ │ │ ├── SolverBase.h │ │ │ │ │ ├── StableNorm.h │ │ │ │ │ ├── Stride.h │ │ │ │ │ ├── Swap.h │ │ │ │ │ ├── Transpose.h │ │ │ │ │ ├── Transpositions.h │ │ │ │ │ ├── TriangularMatrix.h │ │ │ │ │ ├── VectorBlock.h │ │ │ │ │ ├── VectorwiseOp.h │ │ │ │ │ ├── Visitor.h │ │ │ │ │ ├── arch │ │ │ │ │ │ ├── AVX │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ ├── AVX512 │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ ├── AltiVec │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ ├── CUDA │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── Half.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ ├── PacketMathHalf.h │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ ├── Default │ │ │ │ │ │ │ ├── ConjHelper.h │ │ │ │ │ │ │ └── Settings.h │ │ │ │ │ │ ├── NEON │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ ├── SSE │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ └── ZVector │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── functors │ │ │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ │ │ ├── BinaryFunctors.h │ │ │ │ │ │ ├── NullaryFunctors.h │ │ │ │ │ │ ├── StlFunctors.h │ │ │ │ │ │ ├── TernaryFunctors.h │ │ │ │ │ │ └── UnaryFunctors.h │ │ │ │ │ ├── products │ │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ │ │ ├── Parallelizer.h │ │ │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ │ │ └── TriangularSolverVector.h │ │ │ │ │ └── util │ │ │ │ │ │ ├── BlasUtil.h │ │ │ │ │ │ ├── Constants.h │ │ │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ │ │ ├── IndexedViewHelper.h │ │ │ │ │ │ ├── IntegralConstant.h │ │ │ │ │ │ ├── MKL_support.h │ │ │ │ │ │ ├── Macros.h │ │ │ │ │ │ ├── Memory.h │ │ │ │ │ │ ├── Meta.h │ │ │ │ │ │ ├── NonMPL2.h │ │ │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ │ │ ├── StaticAssert.h │ │ │ │ │ │ ├── SymbolicIndex.h │ │ │ │ │ │ └── XprHelper.h │ │ │ │ │ ├── Eigenvalues │ │ │ │ │ ├── ComplexEigenSolver.h │ │ │ │ │ ├── ComplexSchur.h │ │ │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ │ │ ├── EigenSolver.h │ │ │ │ │ ├── GeneralizedEigenSolver.h │ │ │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ │ │ ├── HessenbergDecomposition.h │ │ │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ │ │ ├── RealQZ.h │ │ │ │ │ ├── RealSchur.h │ │ │ │ │ ├── RealSchur_LAPACKE.h │ │ │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ │ │ └── Tridiagonalization.h │ │ │ │ │ ├── Geometry │ │ │ │ │ ├── AlignedBox.h │ │ │ │ │ ├── AngleAxis.h │ │ │ │ │ ├── EulerAngles.h │ │ │ │ │ ├── Homogeneous.h │ │ │ │ │ ├── Hyperplane.h │ │ │ │ │ ├── OrthoMethods.h │ │ │ │ │ ├── ParametrizedLine.h │ │ │ │ │ ├── Quaternion.h │ │ │ │ │ ├── Rotation2D.h │ │ │ │ │ ├── RotationBase.h │ │ │ │ │ ├── Scaling.h │ │ │ │ │ ├── Transform.h │ │ │ │ │ ├── Translation.h │ │ │ │ │ ├── Umeyama.h │ │ │ │ │ └── arch │ │ │ │ │ │ └── Geometry_SSE.h │ │ │ │ │ ├── Householder │ │ │ │ │ ├── BlockHouseholder.h │ │ │ │ │ ├── Householder.h │ │ │ │ │ └── HouseholderSequence.h │ │ │ │ │ ├── IterativeLinearSolvers │ │ │ │ │ ├── BasicPreconditioners.h │ │ │ │ │ ├── BiCGSTAB.h │ │ │ │ │ ├── ConjugateGradient.h │ │ │ │ │ ├── IncompleteCholesky.h │ │ │ │ │ ├── IncompleteLUT.h │ │ │ │ │ ├── IterativeSolverBase.h │ │ │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ │ │ └── SolveWithGuess.h │ │ │ │ │ ├── Jacobi │ │ │ │ │ └── Jacobi.h │ │ │ │ │ ├── KLUSupport │ │ │ │ │ └── KLUSupport.h │ │ │ │ │ ├── LU │ │ │ │ │ ├── Determinant.h │ │ │ │ │ ├── FullPivLU.h │ │ │ │ │ ├── InverseImpl.h │ │ │ │ │ ├── PartialPivLU.h │ │ │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ │ │ └── arch │ │ │ │ │ │ └── Inverse_SSE.h │ │ │ │ │ ├── MetisSupport │ │ │ │ │ └── MetisSupport.h │ │ │ │ │ ├── OrderingMethods │ │ │ │ │ ├── Amd.h │ │ │ │ │ ├── Eigen_Colamd.h │ │ │ │ │ └── Ordering.h │ │ │ │ │ ├── PaStiXSupport │ │ │ │ │ └── PaStiXSupport.h │ │ │ │ │ ├── PardisoSupport │ │ │ │ │ └── PardisoSupport.h │ │ │ │ │ ├── QR │ │ │ │ │ ├── ColPivHouseholderQR.h │ │ │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ │ │ ├── FullPivHouseholderQR.h │ │ │ │ │ ├── HouseholderQR.h │ │ │ │ │ └── HouseholderQR_LAPACKE.h │ │ │ │ │ ├── SPQRSupport │ │ │ │ │ └── SuiteSparseQRSupport.h │ │ │ │ │ ├── SVD │ │ │ │ │ ├── BDCSVD.h │ │ │ │ │ ├── JacobiSVD.h │ │ │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ │ │ ├── SVDBase.h │ │ │ │ │ └── UpperBidiagonalization.h │ │ │ │ │ ├── SparseCholesky │ │ │ │ │ ├── SimplicialCholesky.h │ │ │ │ │ └── SimplicialCholesky_impl.h │ │ │ │ │ ├── SparseCore │ │ │ │ │ ├── AmbiVector.h │ │ │ │ │ ├── CompressedStorage.h │ │ │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ │ │ ├── MappedSparseMatrix.h │ │ │ │ │ ├── SparseAssign.h │ │ │ │ │ ├── SparseBlock.h │ │ │ │ │ ├── SparseColEtree.h │ │ │ │ │ ├── SparseCompressedBase.h │ │ │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ │ │ ├── SparseDenseProduct.h │ │ │ │ │ ├── SparseDiagonalProduct.h │ │ │ │ │ ├── SparseDot.h │ │ │ │ │ ├── SparseFuzzy.h │ │ │ │ │ ├── SparseMap.h │ │ │ │ │ ├── SparseMatrix.h │ │ │ │ │ ├── SparseMatrixBase.h │ │ │ │ │ ├── SparsePermutation.h │ │ │ │ │ ├── SparseProduct.h │ │ │ │ │ ├── SparseRedux.h │ │ │ │ │ ├── SparseRef.h │ │ │ │ │ ├── SparseSelfAdjointView.h │ │ │ │ │ ├── SparseSolverBase.h │ │ │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ │ │ ├── SparseTranspose.h │ │ │ │ │ ├── SparseTriangularView.h │ │ │ │ │ ├── SparseUtil.h │ │ │ │ │ ├── SparseVector.h │ │ │ │ │ ├── SparseView.h │ │ │ │ │ └── TriangularSolver.h │ │ │ │ │ ├── SparseLU │ │ │ │ │ ├── SparseLU.h │ │ │ │ │ ├── SparseLUImpl.h │ │ │ │ │ ├── SparseLU_Memory.h │ │ │ │ │ ├── SparseLU_Structs.h │ │ │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ │ │ ├── SparseLU_Utils.h │ │ │ │ │ ├── SparseLU_column_bmod.h │ │ │ │ │ ├── SparseLU_column_dfs.h │ │ │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ │ │ ├── SparseLU_panel_bmod.h │ │ │ │ │ ├── SparseLU_panel_dfs.h │ │ │ │ │ ├── SparseLU_pivotL.h │ │ │ │ │ ├── SparseLU_pruneL.h │ │ │ │ │ └── SparseLU_relax_snode.h │ │ │ │ │ ├── SparseQR │ │ │ │ │ └── SparseQR.h │ │ │ │ │ ├── StlSupport │ │ │ │ │ ├── StdDeque.h │ │ │ │ │ ├── StdList.h │ │ │ │ │ ├── StdVector.h │ │ │ │ │ └── details.h │ │ │ │ │ ├── SuperLUSupport │ │ │ │ │ └── SuperLUSupport.h │ │ │ │ │ ├── UmfPackSupport │ │ │ │ │ └── UmfPackSupport.h │ │ │ │ │ ├── misc │ │ │ │ │ ├── Image.h │ │ │ │ │ ├── Kernel.h │ │ │ │ │ ├── RealSvd2x2.h │ │ │ │ │ ├── blas.h │ │ │ │ │ ├── lapack.h │ │ │ │ │ ├── lapacke.h │ │ │ │ │ └── lapacke_mangling.h │ │ │ │ │ └── plugins │ │ │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ │ │ ├── BlockMethods.h │ │ │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ │ │ ├── IndexedViewMethods.h │ │ │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ │ │ └── MatrixCwiseUnaryOps.h │ │ │ ├── bench │ │ │ │ ├── BenchSparseUtil.h │ │ │ │ ├── BenchTimer.h │ │ │ │ ├── BenchUtil.h │ │ │ │ ├── basicbenchmark.h │ │ │ │ ├── btl │ │ │ │ │ ├── generic_bench │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── utilities.h │ │ │ │ │ └── libs │ │ │ │ │ │ └── BLAS │ │ │ │ │ │ ├── blas.h │ │ │ │ │ │ └── c_interface_base.h │ │ │ │ ├── perf_monitoring │ │ │ │ │ ├── gemm_common.h │ │ │ │ │ └── gemv_common.h │ │ │ │ ├── spbench │ │ │ │ │ ├── spbenchsolver.h │ │ │ │ │ └── spbenchstyle.h │ │ │ │ └── tensors │ │ │ │ │ ├── benchmark.h │ │ │ │ │ └── tensor_benchmarks.h │ │ │ ├── blas │ │ │ │ ├── BandTriangularSolver.h │ │ │ │ ├── GeneralRank1Update.h │ │ │ │ ├── PackedSelfadjointProduct.h │ │ │ │ ├── PackedTriangularMatrixVector.h │ │ │ │ ├── PackedTriangularSolverVector.h │ │ │ │ ├── Rank2Update.h │ │ │ │ ├── common.h │ │ │ │ ├── f2c │ │ │ │ │ └── datatypes.h │ │ │ │ ├── level1_cplx_impl.h │ │ │ │ ├── level1_impl.h │ │ │ │ ├── level1_real_impl.h │ │ │ │ ├── level2_cplx_impl.h │ │ │ │ ├── level2_impl.h │ │ │ │ ├── level2_real_impl.h │ │ │ │ └── level3_impl.h │ │ │ ├── demos │ │ │ │ ├── mandelbrot │ │ │ │ │ └── mandelbrot.h │ │ │ │ ├── mix_eigen_and_c │ │ │ │ │ └── binary_library.h │ │ │ │ └── opengl │ │ │ │ │ ├── camera.h │ │ │ │ │ ├── gpuhelper.h │ │ │ │ │ ├── icosphere.h │ │ │ │ │ ├── quaternion_demo.h │ │ │ │ │ └── trackball.h │ │ │ ├── lapack │ │ │ │ └── lapack_common.h │ │ │ ├── test │ │ │ │ ├── bug1213.h │ │ │ │ ├── cuda_common.h │ │ │ │ ├── evaluator_common.h │ │ │ │ ├── main.h │ │ │ │ ├── product.h │ │ │ │ ├── sparse.h │ │ │ │ ├── sparse_solver.h │ │ │ │ ├── svd_common.h │ │ │ │ └── svd_fill.h │ │ │ └── unsupported │ │ │ │ ├── Eigen │ │ │ │ ├── CXX11 │ │ │ │ │ └── src │ │ │ │ │ │ ├── Tensor │ │ │ │ │ │ ├── Tensor.h │ │ │ │ │ │ ├── TensorArgMax.h │ │ │ │ │ │ ├── TensorArgMaxSycl.h │ │ │ │ │ │ ├── TensorAssign.h │ │ │ │ │ │ ├── TensorBase.h │ │ │ │ │ │ ├── TensorBroadcasting.h │ │ │ │ │ │ ├── TensorChipping.h │ │ │ │ │ │ ├── TensorConcatenation.h │ │ │ │ │ │ ├── TensorContraction.h │ │ │ │ │ │ ├── TensorContractionBlocking.h │ │ │ │ │ │ ├── TensorContractionCuda.h │ │ │ │ │ │ ├── TensorContractionMapper.h │ │ │ │ │ │ ├── TensorContractionSycl.h │ │ │ │ │ │ ├── TensorContractionThreadPool.h │ │ │ │ │ │ ├── TensorConversion.h │ │ │ │ │ │ ├── TensorConvolution.h │ │ │ │ │ │ ├── TensorConvolutionSycl.h │ │ │ │ │ │ ├── TensorCostModel.h │ │ │ │ │ │ ├── TensorCustomOp.h │ │ │ │ │ │ ├── TensorDevice.h │ │ │ │ │ │ ├── TensorDeviceCuda.h │ │ │ │ │ │ ├── TensorDeviceDefault.h │ │ │ │ │ │ ├── TensorDeviceSycl.h │ │ │ │ │ │ ├── TensorDeviceThreadPool.h │ │ │ │ │ │ ├── TensorDimensionList.h │ │ │ │ │ │ ├── TensorDimensions.h │ │ │ │ │ │ ├── TensorEvalTo.h │ │ │ │ │ │ ├── TensorEvaluator.h │ │ │ │ │ │ ├── TensorExecutor.h │ │ │ │ │ │ ├── TensorExpr.h │ │ │ │ │ │ ├── TensorFFT.h │ │ │ │ │ │ ├── TensorFixedSize.h │ │ │ │ │ │ ├── TensorForcedEval.h │ │ │ │ │ │ ├── TensorForwardDeclarations.h │ │ │ │ │ │ ├── TensorFunctors.h │ │ │ │ │ │ ├── TensorGenerator.h │ │ │ │ │ │ ├── TensorGlobalFunctions.h │ │ │ │ │ │ ├── TensorIO.h │ │ │ │ │ │ ├── TensorImagePatch.h │ │ │ │ │ │ ├── TensorIndexList.h │ │ │ │ │ │ ├── TensorInflation.h │ │ │ │ │ │ ├── TensorInitializer.h │ │ │ │ │ │ ├── TensorIntDiv.h │ │ │ │ │ │ ├── TensorLayoutSwap.h │ │ │ │ │ │ ├── TensorMacros.h │ │ │ │ │ │ ├── TensorMap.h │ │ │ │ │ │ ├── TensorMeta.h │ │ │ │ │ │ ├── TensorMorphing.h │ │ │ │ │ │ ├── TensorPadding.h │ │ │ │ │ │ ├── TensorPatch.h │ │ │ │ │ │ ├── TensorRandom.h │ │ │ │ │ │ ├── TensorReduction.h │ │ │ │ │ │ ├── TensorReductionCuda.h │ │ │ │ │ │ ├── TensorReductionSycl.h │ │ │ │ │ │ ├── TensorRef.h │ │ │ │ │ │ ├── TensorReverse.h │ │ │ │ │ │ ├── TensorScan.h │ │ │ │ │ │ ├── TensorShuffling.h │ │ │ │ │ │ ├── TensorStorage.h │ │ │ │ │ │ ├── TensorStriding.h │ │ │ │ │ │ ├── TensorSycl.h │ │ │ │ │ │ ├── TensorSyclConvertToDeviceExpression.h │ │ │ │ │ │ ├── TensorSyclExprConstructor.h │ │ │ │ │ │ ├── TensorSyclExtractAccessor.h │ │ │ │ │ │ ├── TensorSyclExtractFunctors.h │ │ │ │ │ │ ├── TensorSyclFunctors.h │ │ │ │ │ │ ├── TensorSyclLeafCount.h │ │ │ │ │ │ ├── TensorSyclPlaceHolderExpr.h │ │ │ │ │ │ ├── TensorSyclRun.h │ │ │ │ │ │ ├── TensorSyclTuple.h │ │ │ │ │ │ ├── TensorTrace.h │ │ │ │ │ │ ├── TensorTraits.h │ │ │ │ │ │ ├── TensorUInt128.h │ │ │ │ │ │ └── TensorVolumePatch.h │ │ │ │ │ │ ├── TensorSymmetry │ │ │ │ │ │ ├── DynamicSymmetry.h │ │ │ │ │ │ ├── StaticSymmetry.h │ │ │ │ │ │ ├── Symmetry.h │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── TemplateGroupTheory.h │ │ │ │ │ │ ├── ThreadPool │ │ │ │ │ │ ├── EventCount.h │ │ │ │ │ │ ├── NonBlockingThreadPool.h │ │ │ │ │ │ ├── RunQueue.h │ │ │ │ │ │ ├── SimpleThreadPool.h │ │ │ │ │ │ ├── ThreadCancel.h │ │ │ │ │ │ ├── ThreadEnvironment.h │ │ │ │ │ │ ├── ThreadLocal.h │ │ │ │ │ │ ├── ThreadPoolInterface.h │ │ │ │ │ │ └── ThreadYield.h │ │ │ │ │ │ └── util │ │ │ │ │ │ ├── CXX11Meta.h │ │ │ │ │ │ ├── CXX11Workarounds.h │ │ │ │ │ │ ├── EmulateArray.h │ │ │ │ │ │ ├── EmulateCXX11Meta.h │ │ │ │ │ │ └── MaxSizeVector.h │ │ │ │ └── src │ │ │ │ │ ├── AutoDiff │ │ │ │ │ ├── AutoDiffJacobian.h │ │ │ │ │ ├── AutoDiffScalar.h │ │ │ │ │ └── AutoDiffVector.h │ │ │ │ │ ├── BVH │ │ │ │ │ ├── BVAlgorithms.h │ │ │ │ │ └── KdBVH.h │ │ │ │ │ ├── Eigenvalues │ │ │ │ │ └── ArpackSelfAdjointEigenSolver.h │ │ │ │ │ ├── EulerAngles │ │ │ │ │ ├── EulerAngles.h │ │ │ │ │ └── EulerSystem.h │ │ │ │ │ ├── FFT │ │ │ │ │ ├── ei_fftw_impl.h │ │ │ │ │ └── ei_kissfft_impl.h │ │ │ │ │ ├── IterativeSolvers │ │ │ │ │ ├── ConstrainedConjGrad.h │ │ │ │ │ ├── DGMRES.h │ │ │ │ │ ├── GMRES.h │ │ │ │ │ ├── IncompleteLU.h │ │ │ │ │ ├── IterationController.h │ │ │ │ │ ├── MINRES.h │ │ │ │ │ └── Scaling.h │ │ │ │ │ ├── KroneckerProduct │ │ │ │ │ └── KroneckerTensorProduct.h │ │ │ │ │ ├── LevenbergMarquardt │ │ │ │ │ ├── LMcovar.h │ │ │ │ │ ├── LMonestep.h │ │ │ │ │ ├── LMpar.h │ │ │ │ │ ├── LMqrsolv.h │ │ │ │ │ └── LevenbergMarquardt.h │ │ │ │ │ ├── MatrixFunctions │ │ │ │ │ ├── MatrixExponential.h │ │ │ │ │ ├── MatrixFunction.h │ │ │ │ │ ├── MatrixLogarithm.h │ │ │ │ │ ├── MatrixPower.h │ │ │ │ │ ├── MatrixSquareRoot.h │ │ │ │ │ └── StemFunction.h │ │ │ │ │ ├── MoreVectorization │ │ │ │ │ └── MathFunctions.h │ │ │ │ │ ├── NonLinearOptimization │ │ │ │ │ ├── HybridNonLinearSolver.h │ │ │ │ │ ├── LevenbergMarquardt.h │ │ │ │ │ ├── chkder.h │ │ │ │ │ ├── covar.h │ │ │ │ │ ├── dogleg.h │ │ │ │ │ ├── fdjac1.h │ │ │ │ │ ├── lmpar.h │ │ │ │ │ ├── qrsolv.h │ │ │ │ │ ├── r1mpyq.h │ │ │ │ │ ├── r1updt.h │ │ │ │ │ └── rwupdt.h │ │ │ │ │ ├── NumericalDiff │ │ │ │ │ └── NumericalDiff.h │ │ │ │ │ ├── Polynomials │ │ │ │ │ ├── Companion.h │ │ │ │ │ ├── PolynomialSolver.h │ │ │ │ │ └── PolynomialUtils.h │ │ │ │ │ ├── Skyline │ │ │ │ │ ├── SkylineInplaceLU.h │ │ │ │ │ ├── SkylineMatrix.h │ │ │ │ │ ├── SkylineMatrixBase.h │ │ │ │ │ ├── SkylineProduct.h │ │ │ │ │ ├── SkylineStorage.h │ │ │ │ │ └── SkylineUtil.h │ │ │ │ │ ├── SparseExtra │ │ │ │ │ ├── BlockOfDynamicSparseMatrix.h │ │ │ │ │ ├── BlockSparseMatrix.h │ │ │ │ │ ├── DynamicSparseMatrix.h │ │ │ │ │ ├── MarketIO.h │ │ │ │ │ ├── MatrixMarketIterator.h │ │ │ │ │ └── RandomSetter.h │ │ │ │ │ ├── SpecialFunctions │ │ │ │ │ ├── SpecialFunctionsArrayAPI.h │ │ │ │ │ ├── SpecialFunctionsFunctors.h │ │ │ │ │ ├── SpecialFunctionsHalf.h │ │ │ │ │ ├── SpecialFunctionsImpl.h │ │ │ │ │ ├── SpecialFunctionsPacketMath.h │ │ │ │ │ └── arch │ │ │ │ │ │ └── CUDA │ │ │ │ │ │ └── CudaSpecialFunctions.h │ │ │ │ │ └── Splines │ │ │ │ │ ├── Spline.h │ │ │ │ │ ├── SplineFitting.h │ │ │ │ │ └── SplineFwd.h │ │ │ │ └── test │ │ │ │ ├── matrix_functions.h │ │ │ │ └── mpreal │ │ │ │ └── mpreal.h │ │ │ ├── farmhash │ │ │ ├── dev │ │ │ │ └── farmhash.h │ │ │ └── src │ │ │ │ └── farmhash.h │ │ │ ├── flatbuffers │ │ │ ├── grpc │ │ │ │ └── src │ │ │ │ │ └── compiler │ │ │ │ │ ├── config.h │ │ │ │ │ ├── cpp_generator.h │ │ │ │ │ ├── go_generator.h │ │ │ │ │ ├── java_generator.h │ │ │ │ │ └── schema_interface.h │ │ │ ├── include │ │ │ │ └── flatbuffers │ │ │ │ │ ├── base.h │ │ │ │ │ ├── code_generators.h │ │ │ │ │ ├── flatbuffers.h │ │ │ │ │ ├── flatc.h │ │ │ │ │ ├── flexbuffers.h │ │ │ │ │ ├── grpc.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── idl.h │ │ │ │ │ ├── minireflect.h │ │ │ │ │ ├── reflection.h │ │ │ │ │ ├── reflection_generated.h │ │ │ │ │ ├── registry.h │ │ │ │ │ ├── stl_emulation.h │ │ │ │ │ └── util.h │ │ │ ├── samples │ │ │ │ └── monster_generated.h │ │ │ └── tests │ │ │ │ ├── monster_test.grpc.fb.h │ │ │ │ ├── monster_test_generated.h │ │ │ │ ├── namespace_test │ │ │ │ ├── namespace_test1_generated.h │ │ │ │ └── namespace_test2_generated.h │ │ │ │ └── union_vector │ │ │ │ └── union_vector_generated.h │ │ │ ├── gemmlowp │ │ │ ├── eight_bit_int_gemm │ │ │ │ └── eight_bit_int_gemm.h │ │ │ ├── fixedpoint │ │ │ │ ├── fixedpoint.h │ │ │ │ ├── fixedpoint_avx.h │ │ │ │ ├── fixedpoint_msa.h │ │ │ │ ├── fixedpoint_neon.h │ │ │ │ └── fixedpoint_sse.h │ │ │ ├── internal │ │ │ │ ├── allocator.h │ │ │ │ ├── block_params.h │ │ │ │ ├── common.h │ │ │ │ ├── compute.h │ │ │ │ ├── dispatch_gemm_shape.h │ │ │ │ ├── kernel.h │ │ │ │ ├── kernel_avx.h │ │ │ │ ├── kernel_default.h │ │ │ │ ├── kernel_msa.h │ │ │ │ ├── kernel_neon.h │ │ │ │ ├── kernel_reference.h │ │ │ │ ├── kernel_sse.h │ │ │ │ ├── multi_thread_gemm.h │ │ │ │ ├── output.h │ │ │ │ ├── output_avx.h │ │ │ │ ├── output_msa.h │ │ │ │ ├── output_neon.h │ │ │ │ ├── output_sse.h │ │ │ │ ├── pack.h │ │ │ │ ├── pack_avx.h │ │ │ │ ├── pack_msa.h │ │ │ │ ├── pack_neon.h │ │ │ │ ├── pack_sse.h │ │ │ │ ├── platform.h │ │ │ │ ├── simd_wrappers.h │ │ │ │ ├── simd_wrappers_common_neon_sse.h │ │ │ │ ├── simd_wrappers_msa.h │ │ │ │ ├── simd_wrappers_neon.h │ │ │ │ ├── simd_wrappers_sse.h │ │ │ │ ├── single_thread_gemm.h │ │ │ │ └── unpack.h │ │ │ ├── meta │ │ │ │ ├── base.h │ │ │ │ ├── legacy_multi_thread_common.h │ │ │ │ ├── legacy_multi_thread_gemm.h │ │ │ │ ├── legacy_multi_thread_gemv.h │ │ │ │ ├── legacy_operations_common.h │ │ │ │ ├── legacy_single_thread_gemm.h │ │ │ │ ├── multi_thread_common.h │ │ │ │ ├── multi_thread_gemm.h │ │ │ │ ├── multi_thread_transform.h │ │ │ │ ├── quantized_mul_kernels.h │ │ │ │ ├── quantized_mul_kernels_arm_32.h │ │ │ │ ├── quantized_mul_kernels_arm_64.h │ │ │ │ ├── single_thread_gemm.h │ │ │ │ ├── single_thread_transform.h │ │ │ │ ├── streams.h │ │ │ │ ├── streams_arm_32.h │ │ │ │ ├── streams_arm_64.h │ │ │ │ ├── transform_kernels.h │ │ │ │ ├── transform_kernels_arm_32.h │ │ │ │ └── transform_kernels_arm_64.h │ │ │ ├── profiling │ │ │ │ ├── instrumentation.h │ │ │ │ ├── profiler.h │ │ │ │ └── pthread_everywhere.h │ │ │ ├── public │ │ │ │ ├── bit_depth.h │ │ │ │ ├── gemmlowp.h │ │ │ │ ├── map.h │ │ │ │ └── output_stages.h │ │ │ └── test │ │ │ │ ├── ios │ │ │ │ └── gemmlowp_test │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ └── ViewController.h │ │ │ │ ├── test.h │ │ │ │ └── test_data.h │ │ │ ├── googletest │ │ │ ├── googlemock │ │ │ │ ├── include │ │ │ │ │ └── gmock │ │ │ │ │ │ ├── gmock-actions.h │ │ │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ │ │ ├── gmock-generated-nice-strict.h │ │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ │ ├── gmock-more-actions.h │ │ │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ │ │ ├── gmock.h │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── custom │ │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ │ └── gmock-port.h │ │ │ │ │ │ ├── gmock-generated-internal-utils.h │ │ │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ │ │ └── gmock-port.h │ │ │ │ └── test │ │ │ │ │ └── gmock_link_test.h │ │ │ └── googletest │ │ │ │ ├── include │ │ │ │ └── gtest │ │ │ │ │ ├── gtest-death-test.h │ │ │ │ │ ├── gtest-message.h │ │ │ │ │ ├── gtest-param-test.h │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ ├── gtest-spi.h │ │ │ │ │ ├── gtest-test-part.h │ │ │ │ │ ├── gtest-typed-test.h │ │ │ │ │ ├── gtest.h │ │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ │ ├── gtest_prod.h │ │ │ │ │ └── internal │ │ │ │ │ ├── custom │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ └── gtest.h │ │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ │ ├── gtest-filepath.h │ │ │ │ │ ├── gtest-internal.h │ │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ │ ├── gtest-param-util.h │ │ │ │ │ ├── gtest-port-arch.h │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-string.h │ │ │ │ │ ├── gtest-tuple.h │ │ │ │ │ └── gtest-type-util.h │ │ │ │ ├── samples │ │ │ │ ├── prime_tables.h │ │ │ │ ├── sample1.h │ │ │ │ ├── sample2.h │ │ │ │ ├── sample3-inl.h │ │ │ │ └── sample4.h │ │ │ │ ├── src │ │ │ │ └── gtest-internal-inl.h │ │ │ │ ├── test │ │ │ │ ├── gtest-param-test_test.h │ │ │ │ ├── gtest-typed-test_test.h │ │ │ │ └── production.h │ │ │ │ └── xcode │ │ │ │ └── Samples │ │ │ │ └── FrameworkSample │ │ │ │ └── widget.h │ │ │ └── neon_2_sse │ │ │ └── NEON_2_SSE.h │ ├── optimize │ │ └── quantize_weights.h │ └── verifier.h │ ├── util.h │ └── version.h ├── spi_slave ├── README.md ├── main.c ├── project.cmake ├── project_cfg.h ├── spi_master.c ├── spi_master.h ├── spi_slave.c └── spi_slave.h ├── tcp_server ├── README.md ├── main.c └── project_cfg.h ├── tflite_label_image ├── bitmap_helpers.cpp ├── bitmap_helpers.h ├── bitmap_helpers_impl.h ├── get_top_n.h ├── get_top_n_impl.h ├── grace_hopper.bmp ├── incbin.h ├── label_image.h ├── labels.c ├── main.cpp ├── mobilenet_v1_0.5_128_quant.tflite ├── project.cmake ├── project_cfg.c └── project_cfg.h ├── uart ├── README.md ├── main.c └── project_cfg.h ├── wdt ├── README.md └── main.c └── ws2812b ├── README.md ├── main.c └── project_cfg.h /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/README.md -------------------------------------------------------------------------------- /aes_128_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_128_test/README.md -------------------------------------------------------------------------------- /aes_128_test/aes2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_128_test/aes2.c -------------------------------------------------------------------------------- /aes_128_test/aes2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_128_test/aes2.h -------------------------------------------------------------------------------- /aes_128_test/aes_cbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_128_test/aes_cbc.c -------------------------------------------------------------------------------- /aes_128_test/aes_cbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_128_test/aes_cbc.h -------------------------------------------------------------------------------- /aes_128_test/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_128_test/cipher.c -------------------------------------------------------------------------------- /aes_128_test/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_128_test/cipher.h -------------------------------------------------------------------------------- /aes_128_test/cipher_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_128_test/cipher_internal.h -------------------------------------------------------------------------------- /aes_128_test/cipher_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_128_test/cipher_wrap.c -------------------------------------------------------------------------------- /aes_128_test/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_128_test/config.h -------------------------------------------------------------------------------- /aes_128_test/gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_128_test/gcm.c -------------------------------------------------------------------------------- /aes_128_test/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_128_test/gcm.h -------------------------------------------------------------------------------- /aes_128_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_128_test/main.c -------------------------------------------------------------------------------- /aes_192_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_192_test/README.md -------------------------------------------------------------------------------- /aes_192_test/aes2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_192_test/aes2.c -------------------------------------------------------------------------------- /aes_192_test/aes2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_192_test/aes2.h -------------------------------------------------------------------------------- /aes_192_test/aes_cbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_192_test/aes_cbc.c -------------------------------------------------------------------------------- /aes_192_test/aes_cbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_192_test/aes_cbc.h -------------------------------------------------------------------------------- /aes_192_test/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_192_test/cipher.c -------------------------------------------------------------------------------- /aes_192_test/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_192_test/cipher.h -------------------------------------------------------------------------------- /aes_192_test/cipher_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_192_test/cipher_internal.h -------------------------------------------------------------------------------- /aes_192_test/cipher_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_192_test/cipher_wrap.c -------------------------------------------------------------------------------- /aes_192_test/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_192_test/config.h -------------------------------------------------------------------------------- /aes_192_test/gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_192_test/gcm.c -------------------------------------------------------------------------------- /aes_192_test/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_192_test/gcm.h -------------------------------------------------------------------------------- /aes_192_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_192_test/main.c -------------------------------------------------------------------------------- /aes_256_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_256_test/README.md -------------------------------------------------------------------------------- /aes_256_test/aes2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_256_test/aes2.c -------------------------------------------------------------------------------- /aes_256_test/aes2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_256_test/aes2.h -------------------------------------------------------------------------------- /aes_256_test/aes_cbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_256_test/aes_cbc.c -------------------------------------------------------------------------------- /aes_256_test/aes_cbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_256_test/aes_cbc.h -------------------------------------------------------------------------------- /aes_256_test/cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_256_test/cipher.c -------------------------------------------------------------------------------- /aes_256_test/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_256_test/cipher.h -------------------------------------------------------------------------------- /aes_256_test/cipher_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_256_test/cipher_internal.h -------------------------------------------------------------------------------- /aes_256_test/cipher_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_256_test/cipher_wrap.c -------------------------------------------------------------------------------- /aes_256_test/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_256_test/config.h -------------------------------------------------------------------------------- /aes_256_test/gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_256_test/gcm.c -------------------------------------------------------------------------------- /aes_256_test/gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_256_test/gcm.h -------------------------------------------------------------------------------- /aes_256_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/aes_256_test/main.c -------------------------------------------------------------------------------- /face_detect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/README.md -------------------------------------------------------------------------------- /face_detect/detect.kmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/detect.kmodel -------------------------------------------------------------------------------- /face_detect/dvp_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/dvp_camera.c -------------------------------------------------------------------------------- /face_detect/dvp_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/dvp_camera.h -------------------------------------------------------------------------------- /face_detect/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/font.h -------------------------------------------------------------------------------- /face_detect/image_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/image_process.c -------------------------------------------------------------------------------- /face_detect/image_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/image_process.h -------------------------------------------------------------------------------- /face_detect/incbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/incbin.h -------------------------------------------------------------------------------- /face_detect/jlt32009a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/jlt32009a.c -------------------------------------------------------------------------------- /face_detect/jlt32009a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/jlt32009a.h -------------------------------------------------------------------------------- /face_detect/kfpkg/detect.kmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/kfpkg/detect.kmodel -------------------------------------------------------------------------------- /face_detect/kfpkg/face_detect.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/kfpkg/face_detect.bin -------------------------------------------------------------------------------- /face_detect/kfpkg/flash-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/kfpkg/flash-list.json -------------------------------------------------------------------------------- /face_detect/kfpkg/kfpkg.kfpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/kfpkg/kfpkg.kfpkg -------------------------------------------------------------------------------- /face_detect/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/lcd.c -------------------------------------------------------------------------------- /face_detect/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/lcd.h -------------------------------------------------------------------------------- /face_detect/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/main.c -------------------------------------------------------------------------------- /face_detect/ov5640.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/ov5640.c -------------------------------------------------------------------------------- /face_detect/ov5640.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/ov5640.h -------------------------------------------------------------------------------- /face_detect/ov5640af.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/ov5640af.h -------------------------------------------------------------------------------- /face_detect/ov5640cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/ov5640cfg.h -------------------------------------------------------------------------------- /face_detect/project_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/project_cfg.h -------------------------------------------------------------------------------- /face_detect/region_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/region_layer.c -------------------------------------------------------------------------------- /face_detect/region_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/region_layer.h -------------------------------------------------------------------------------- /face_detect/w25qxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/w25qxx.c -------------------------------------------------------------------------------- /face_detect/w25qxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/face_detect/w25qxx.h -------------------------------------------------------------------------------- /fft_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/fft_test/README.md -------------------------------------------------------------------------------- /fft_test/fft_soft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/fft_test/fft_soft.c -------------------------------------------------------------------------------- /fft_test/fft_soft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/fft_test/fft_soft.h -------------------------------------------------------------------------------- /fft_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/fft_test/main.c -------------------------------------------------------------------------------- /flash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/flash/README.md -------------------------------------------------------------------------------- /flash/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/flash/main.c -------------------------------------------------------------------------------- /flash/w25qxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/flash/w25qxx.c -------------------------------------------------------------------------------- /flash/w25qxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/flash/w25qxx.h -------------------------------------------------------------------------------- /gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/gpio/README.md -------------------------------------------------------------------------------- /gpio/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/gpio/main.c -------------------------------------------------------------------------------- /gpio/project_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/gpio/project_cfg.h -------------------------------------------------------------------------------- /gpiohs_interrupt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/gpiohs_interrupt/README.md -------------------------------------------------------------------------------- /gpiohs_interrupt/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/gpiohs_interrupt/main.c -------------------------------------------------------------------------------- /gpiohs_interrupt/project_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/gpiohs_interrupt/project_cfg.h -------------------------------------------------------------------------------- /hello_world/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/hello_world/main.c -------------------------------------------------------------------------------- /i2c_slave/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/i2c_slave/README.md -------------------------------------------------------------------------------- /i2c_slave/i2c_slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/i2c_slave/i2c_slave.c -------------------------------------------------------------------------------- /i2c_slave/i2c_slave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/i2c_slave/i2c_slave.h -------------------------------------------------------------------------------- /i2c_slave/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/i2c_slave/main.c -------------------------------------------------------------------------------- /i2c_slave/project_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/i2c_slave/project_cfg.h -------------------------------------------------------------------------------- /i2s_play/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/i2s_play/README.md -------------------------------------------------------------------------------- /i2s_play/i2s_play_pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/i2s_play/i2s_play_pcm.h -------------------------------------------------------------------------------- /i2s_play/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/i2s_play/main.c -------------------------------------------------------------------------------- /i2s_play/project_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/i2s_play/project_cfg.h -------------------------------------------------------------------------------- /lcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd/README.md -------------------------------------------------------------------------------- /lcd/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd/font.h -------------------------------------------------------------------------------- /lcd/jlt32009a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd/jlt32009a.c -------------------------------------------------------------------------------- /lcd/jlt32009a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd/jlt32009a.h -------------------------------------------------------------------------------- /lcd/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd/lcd.c -------------------------------------------------------------------------------- /lcd/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd/lcd.h -------------------------------------------------------------------------------- /lcd/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd/main.c -------------------------------------------------------------------------------- /lcd/project_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd/project_cfg.h -------------------------------------------------------------------------------- /lcd_green_board/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_green_board/README.md -------------------------------------------------------------------------------- /lcd_green_board/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_green_board/font.h -------------------------------------------------------------------------------- /lcd_green_board/jlt32009a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_green_board/jlt32009a.c -------------------------------------------------------------------------------- /lcd_green_board/jlt32009a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_green_board/jlt32009a.h -------------------------------------------------------------------------------- /lcd_green_board/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_green_board/lcd.c -------------------------------------------------------------------------------- /lcd_green_board/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_green_board/lcd.h -------------------------------------------------------------------------------- /lcd_green_board/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_green_board/main.c -------------------------------------------------------------------------------- /lcd_green_board/project_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_green_board/project_cfg.h -------------------------------------------------------------------------------- /lcd_lichee_pi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_lichee_pi/README.md -------------------------------------------------------------------------------- /lcd_lichee_pi/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_lichee_pi/font.h -------------------------------------------------------------------------------- /lcd_lichee_pi/img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_lichee_pi/img.h -------------------------------------------------------------------------------- /lcd_lichee_pi/jlt32009a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_lichee_pi/jlt32009a.c -------------------------------------------------------------------------------- /lcd_lichee_pi/jlt32009a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_lichee_pi/jlt32009a.h -------------------------------------------------------------------------------- /lcd_lichee_pi/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_lichee_pi/lcd.c -------------------------------------------------------------------------------- /lcd_lichee_pi/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_lichee_pi/lcd.h -------------------------------------------------------------------------------- /lcd_lichee_pi/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_lichee_pi/main.c -------------------------------------------------------------------------------- /lcd_lichee_pi/project_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_lichee_pi/project_cfg.h -------------------------------------------------------------------------------- /lcd_ov5640/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_ov5640/README.md -------------------------------------------------------------------------------- /lcd_ov5640/dvp_camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_ov5640/dvp_camera.c -------------------------------------------------------------------------------- /lcd_ov5640/dvp_camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_ov5640/dvp_camera.h -------------------------------------------------------------------------------- /lcd_ov5640/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_ov5640/font.h -------------------------------------------------------------------------------- /lcd_ov5640/jlt32009a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_ov5640/jlt32009a.c -------------------------------------------------------------------------------- /lcd_ov5640/jlt32009a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_ov5640/jlt32009a.h -------------------------------------------------------------------------------- /lcd_ov5640/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_ov5640/lcd.c -------------------------------------------------------------------------------- /lcd_ov5640/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_ov5640/lcd.h -------------------------------------------------------------------------------- /lcd_ov5640/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_ov5640/main.c -------------------------------------------------------------------------------- /lcd_ov5640/ov5640.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_ov5640/ov5640.c -------------------------------------------------------------------------------- /lcd_ov5640/ov5640.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_ov5640/ov5640.h -------------------------------------------------------------------------------- /lcd_ov5640/ov5640af.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_ov5640/ov5640af.h -------------------------------------------------------------------------------- /lcd_ov5640/ov5640cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_ov5640/ov5640cfg.h -------------------------------------------------------------------------------- /lcd_ov5640/project_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/lcd_ov5640/project_cfg.h -------------------------------------------------------------------------------- /mic_play/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/mic_play/README.md -------------------------------------------------------------------------------- /mic_play/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/mic_play/main.c -------------------------------------------------------------------------------- /mic_play/project_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/mic_play/project_cfg.h -------------------------------------------------------------------------------- /network_tcp_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/network_tcp_test/README.md -------------------------------------------------------------------------------- /network_tcp_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/network_tcp_test/main.c -------------------------------------------------------------------------------- /network_tcp_test/project_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/network_tcp_test/project_cfg.h -------------------------------------------------------------------------------- /network_tcp_test_remote/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/network_tcp_test_remote/Makefile -------------------------------------------------------------------------------- /network_tcp_test_remote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/network_tcp_test_remote/README.md -------------------------------------------------------------------------------- /network_tcp_test_remote/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/network_tcp_test_remote/client.c -------------------------------------------------------------------------------- /network_tcp_test_remote/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/network_tcp_test_remote/server.c -------------------------------------------------------------------------------- /network_tcp_test_remote/tcp_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/network_tcp_test_remote/tcp_client.c -------------------------------------------------------------------------------- /network_tftp_client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/network_tftp_client/README.md -------------------------------------------------------------------------------- /network_tftp_client/k_tftp_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/network_tftp_client/k_tftp_client.c -------------------------------------------------------------------------------- /network_tftp_client/k_tftp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/network_tftp_client/k_tftp_client.h -------------------------------------------------------------------------------- /network_tftp_client/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/network_tftp_client/main.c -------------------------------------------------------------------------------- /network_tftp_client/project_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/network_tftp_client/project_cfg.h -------------------------------------------------------------------------------- /pwm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/pwm/README.md -------------------------------------------------------------------------------- /pwm/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/pwm/main.c -------------------------------------------------------------------------------- /pwm/project_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/pwm/project_cfg.h -------------------------------------------------------------------------------- /rtc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/rtc/README.md -------------------------------------------------------------------------------- /rtc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/rtc/main.c -------------------------------------------------------------------------------- /sd3068/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/sd3068/README.md -------------------------------------------------------------------------------- /sd3068/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/sd3068/main.c -------------------------------------------------------------------------------- /sd3068/project_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/sd3068/project_cfg.h -------------------------------------------------------------------------------- /sd3068/sd3068.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/sd3068/sd3068.c -------------------------------------------------------------------------------- /sd3068/sd3068.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/sd3068/sd3068.h -------------------------------------------------------------------------------- /sdcard_filesystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/sdcard_filesystem/README.md -------------------------------------------------------------------------------- /sdcard_filesystem/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/sdcard_filesystem/main.c -------------------------------------------------------------------------------- /sdcard_filesystem/project_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/sdcard_filesystem/project_cfg.h -------------------------------------------------------------------------------- /sha256_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/sha256_test/README.md -------------------------------------------------------------------------------- /sha256_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/sha256_test/main.c -------------------------------------------------------------------------------- /shared/flatbuffers/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/flatbuffers/base.h -------------------------------------------------------------------------------- /shared/flatbuffers/code_generators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/flatbuffers/code_generators.h -------------------------------------------------------------------------------- /shared/flatbuffers/flatbuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/flatbuffers/flatbuffers.h -------------------------------------------------------------------------------- /shared/flatbuffers/flatc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/flatbuffers/flatc.h -------------------------------------------------------------------------------- /shared/flatbuffers/flexbuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/flatbuffers/flexbuffers.h -------------------------------------------------------------------------------- /shared/flatbuffers/grpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/flatbuffers/grpc.h -------------------------------------------------------------------------------- /shared/flatbuffers/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/flatbuffers/hash.h -------------------------------------------------------------------------------- /shared/flatbuffers/idl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/flatbuffers/idl.h -------------------------------------------------------------------------------- /shared/flatbuffers/minireflect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/flatbuffers/minireflect.h -------------------------------------------------------------------------------- /shared/flatbuffers/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/flatbuffers/reflection.h -------------------------------------------------------------------------------- /shared/flatbuffers/reflection_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/flatbuffers/reflection_generated.h -------------------------------------------------------------------------------- /shared/flatbuffers/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/flatbuffers/registry.h -------------------------------------------------------------------------------- /shared/flatbuffers/stl_emulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/flatbuffers/stl_emulation.h -------------------------------------------------------------------------------- /shared/flatbuffers/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/flatbuffers/util.h -------------------------------------------------------------------------------- /shared/libtensorflow-lite.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/libtensorflow-lite.a -------------------------------------------------------------------------------- /shared/tensorflow/allocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/allocation.h -------------------------------------------------------------------------------- /shared/tensorflow/arena_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/arena_planner.h -------------------------------------------------------------------------------- /shared/tensorflow/builtin_op_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/builtin_op_data.h -------------------------------------------------------------------------------- /shared/tensorflow/builtin_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/builtin_ops.h -------------------------------------------------------------------------------- /shared/tensorflow/c/builtin_op_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/c/builtin_op_data.h -------------------------------------------------------------------------------- /shared/tensorflow/c/c_api_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/c/c_api_internal.h -------------------------------------------------------------------------------- /shared/tensorflow/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/context.h -------------------------------------------------------------------------------- /shared/tensorflow/context_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/context_util.h -------------------------------------------------------------------------------- /shared/tensorflow/core/api/error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/core/api/error_reporter.h -------------------------------------------------------------------------------- /shared/tensorflow/core/api/flatbuffer_conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/core/api/flatbuffer_conversions.h -------------------------------------------------------------------------------- /shared/tensorflow/core/api/op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/core/api/op_resolver.h -------------------------------------------------------------------------------- /shared/tensorflow/delegates/flex/buffer_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/delegates/flex/buffer_map.h -------------------------------------------------------------------------------- /shared/tensorflow/delegates/flex/delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/delegates/flex/delegate.h -------------------------------------------------------------------------------- /shared/tensorflow/delegates/flex/delegate_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/delegates/flex/delegate_data.h -------------------------------------------------------------------------------- /shared/tensorflow/delegates/flex/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/delegates/flex/kernel.h -------------------------------------------------------------------------------- /shared/tensorflow/delegates/flex/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/delegates/flex/test_util.h -------------------------------------------------------------------------------- /shared/tensorflow/delegates/flex/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/delegates/flex/util.h -------------------------------------------------------------------------------- /shared/tensorflow/delegates/nnapi/nnapi_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/delegates/nnapi/nnapi_delegate.h -------------------------------------------------------------------------------- /shared/tensorflow/error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/error_reporter.h -------------------------------------------------------------------------------- /shared/tensorflow/examples/ios/camera/CameraExampleAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/examples/ios/camera/CameraExampleAppDelegate.h -------------------------------------------------------------------------------- /shared/tensorflow/examples/ios/camera/CameraExampleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/examples/ios/camera/CameraExampleViewController.h -------------------------------------------------------------------------------- /shared/tensorflow/examples/ios/simple/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/examples/ios/simple/AppDelegate.h -------------------------------------------------------------------------------- /shared/tensorflow/examples/ios/simple/RunModelViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/examples/ios/simple/RunModelViewController.h -------------------------------------------------------------------------------- /shared/tensorflow/examples/ios/simple/ios_image_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/examples/ios/simple/ios_image_load.h -------------------------------------------------------------------------------- /shared/tensorflow/examples/label_image/bitmap_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/examples/label_image/bitmap_helpers.h -------------------------------------------------------------------------------- /shared/tensorflow/examples/label_image/bitmap_helpers_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/examples/label_image/bitmap_helpers_impl.h -------------------------------------------------------------------------------- /shared/tensorflow/examples/label_image/get_top_n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/examples/label_image/get_top_n.h -------------------------------------------------------------------------------- /shared/tensorflow/examples/label_image/get_top_n_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/examples/label_image/get_top_n_impl.h -------------------------------------------------------------------------------- /shared/tensorflow/examples/label_image/label_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/examples/label_image/label_image.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/c/c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/c/c_api.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/c/c_api_experimental.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/c/c_api_experimental.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/c/c_api_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/c/c_api_internal.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/kernels/ctc_beam_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/kernels/ctc_beam_entry.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/kernels/ctc_beam_scorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/kernels/ctc_beam_scorer.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/kernels/ctc_beam_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/kernels/ctc_beam_search.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/kernels/ctc_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/kernels/ctc_decoder.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/kernels/ctc_loss_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/kernels/ctc_loss_util.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/kernels/top_n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/kernels/top_n.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/micro/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/micro/compatibility.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/micro/kernels/all_ops_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/micro/kernels/all_ops_resolver.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/micro/kernels/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/micro/kernels/test_utils.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/micro/micro_error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/micro/micro_error_reporter.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/micro/micro_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/micro/micro_interpreter.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/micro/micro_mutable_op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/micro/micro_mutable_op_resolver.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/micro/simple_tensor_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/micro/simple_tensor_allocator.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/micro/testing/micro_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/micro/testing/micro_test.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/microfrontend/lib/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/microfrontend/lib/bits.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/microfrontend/lib/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/microfrontend/lib/fft.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/microfrontend/lib/fft_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/microfrontend/lib/fft_io.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/microfrontend/lib/fft_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/microfrontend/lib/fft_util.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/microfrontend/lib/filterbank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/microfrontend/lib/filterbank.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/microfrontend/lib/filterbank_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/microfrontend/lib/filterbank_io.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/microfrontend/lib/filterbank_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/microfrontend/lib/filterbank_util.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/microfrontend/lib/frontend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/microfrontend/lib/frontend.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/microfrontend/lib/frontend_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/microfrontend/lib/frontend_io.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/microfrontend/lib/frontend_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/microfrontend/lib/frontend_util.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/microfrontend/lib/log_lut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/microfrontend/lib/log_lut.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/microfrontend/lib/log_scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/microfrontend/lib/log_scale.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/microfrontend/lib/log_scale_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/microfrontend/lib/log_scale_io.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/microfrontend/lib/log_scale_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/microfrontend/lib/log_scale_util.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/microfrontend/lib/noise_reduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/microfrontend/lib/noise_reduction.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/microfrontend/lib/noise_reduction_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/microfrontend/lib/noise_reduction_io.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/microfrontend/lib/pcan_gain_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/microfrontend/lib/pcan_gain_control.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/microfrontend/lib/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/microfrontend/lib/window.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/microfrontend/lib/window_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/microfrontend/lib/window_io.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/microfrontend/lib/window_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/microfrontend/lib/window_util.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/writer/enum_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/writer/enum_mapping.h -------------------------------------------------------------------------------- /shared/tensorflow/experimental/writer/writer_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/experimental/writer/writer_lib.h -------------------------------------------------------------------------------- /shared/tensorflow/graph_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/graph_info.h -------------------------------------------------------------------------------- /shared/tensorflow/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/interpreter.h -------------------------------------------------------------------------------- /shared/tensorflow/java/src/main/native/exception_jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/java/src/main/native/exception_jni.h -------------------------------------------------------------------------------- /shared/tensorflow/java/src/main/native/init_tensorflow_jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/java/src/main/native/init_tensorflow_jni.h -------------------------------------------------------------------------------- /shared/tensorflow/java/src/main/native/nativeinterpreterwrapper_jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/java/src/main/native/nativeinterpreterwrapper_jni.h -------------------------------------------------------------------------------- /shared/tensorflow/java/src/main/native/tensor_jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/java/src/main/native/tensor_jni.h -------------------------------------------------------------------------------- /shared/tensorflow/java/src/main/native/tensorflow_lite_jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/java/src/main/native/tensorflow_lite_jni.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/activation_functor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/activation_functor.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/eigen_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/eigen_support.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/gemm_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/gemm_support.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/common.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/compatibility.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/kernel_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/kernel_utils.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/legacy_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/legacy_types.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/mfcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/mfcc.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/mfcc_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/mfcc_dct.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/mfcc_mel_filterbank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/mfcc_mel_filterbank.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/optimized/cblas_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/optimized/cblas_conv.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/optimized/cblas_reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/optimized/cblas_reference.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/optimized/cpu_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/optimized/cpu_check.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/optimized/depthwiseconv_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/optimized/depthwiseconv_float.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/optimized/depthwiseconv_uint8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/optimized/depthwiseconv_uint8.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/optimized/legacy_optimized_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/optimized/legacy_optimized_ops.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/optimized/multithreaded_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/optimized/multithreaded_conv.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/optimized/neon_tensor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/optimized/neon_tensor_utils.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/optimized/optimized_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/optimized/optimized_ops.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/optimized/tensor_utils_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/optimized/tensor_utils_impl.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/quantization_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/quantization_util.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/reference/depthwiseconv_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/reference/depthwiseconv_float.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/reference/depthwiseconv_uint8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/reference/depthwiseconv_uint8.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/reference/fully_connected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/reference/fully_connected.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/reference/legacy_reference_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/reference/legacy_reference_ops.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/reference/portable_tensor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/reference/portable_tensor_utils.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/reference/reference_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/reference/reference_ops.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/reference/softmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/reference/softmax.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/round.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/spectrogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/spectrogram.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/strided_slice_logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/strided_slice_logic.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/tensor.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/tensor_ctypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/tensor_ctypes.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/tensor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/tensor_utils.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/test_util.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/internal/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/internal/types.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/kernel_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/kernel_util.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/lstm_eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/lstm_eval.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/op_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/op_macros.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/padding.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/register.h -------------------------------------------------------------------------------- /shared/tensorflow/kernels/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/kernels/test_util.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/allocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/allocation.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/arena_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/arena_planner.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/builtin_op_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/builtin_op_data.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/builtin_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/builtin_ops.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/c/builtin_op_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/c/builtin_op_data.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/c/c_api_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/c/c_api_internal.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/context.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/context_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/context_util.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/core/api/error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/core/api/error_reporter.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/core/api/flatbuffer_conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/core/api/flatbuffer_conversions.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/core/api/op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/core/api/op_resolver.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/delegates/flex/buffer_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/delegates/flex/buffer_map.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/delegates/flex/delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/delegates/flex/delegate.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/delegates/flex/delegate_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/delegates/flex/delegate_data.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/delegates/flex/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/delegates/flex/kernel.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/delegates/flex/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/delegates/flex/test_util.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/delegates/flex/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/delegates/flex/util.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/delegates/nnapi/nnapi_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/delegates/nnapi/nnapi_delegate.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/error_reporter.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/examples/ios/camera/CameraExampleAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/examples/ios/camera/CameraExampleAppDelegate.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/examples/ios/simple/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/examples/ios/simple/AppDelegate.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/examples/ios/simple/RunModelViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/examples/ios/simple/RunModelViewController.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/examples/ios/simple/ios_image_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/examples/ios/simple/ios_image_load.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/examples/label_image/bitmap_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/examples/label_image/bitmap_helpers.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/examples/label_image/bitmap_helpers_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/examples/label_image/bitmap_helpers_impl.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/examples/label_image/get_top_n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/examples/label_image/get_top_n.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/examples/label_image/get_top_n_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/examples/label_image/get_top_n_impl.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/examples/label_image/label_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/examples/label_image/label_image.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/c/c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/c/c_api.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/c/c_api_experimental.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/c/c_api_experimental.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/c/c_api_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/c/c_api_internal.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/kernels/ctc_beam_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/kernels/ctc_beam_entry.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/kernels/ctc_beam_scorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/kernels/ctc_beam_scorer.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/kernels/ctc_beam_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/kernels/ctc_beam_search.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/kernels/ctc_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/kernels/ctc_decoder.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/kernels/ctc_loss_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/kernels/ctc_loss_util.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/kernels/top_n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/kernels/top_n.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/micro/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/micro/compatibility.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/micro/kernels/all_ops_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/micro/kernels/all_ops_resolver.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/micro/kernels/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/micro/kernels/test_utils.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/micro/micro_error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/micro/micro_error_reporter.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/micro/micro_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/micro/micro_interpreter.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/micro/micro_mutable_op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/micro/micro_mutable_op_resolver.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/micro/simple_tensor_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/micro/simple_tensor_allocator.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/micro/testing/micro_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/micro/testing/micro_test.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/microfrontend/lib/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/microfrontend/lib/bits.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/microfrontend/lib/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/microfrontend/lib/fft.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/microfrontend/lib/fft_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/microfrontend/lib/fft_io.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/microfrontend/lib/fft_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/microfrontend/lib/fft_util.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/microfrontend/lib/filterbank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/microfrontend/lib/filterbank.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/microfrontend/lib/filterbank_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/microfrontend/lib/filterbank_io.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/microfrontend/lib/frontend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/microfrontend/lib/frontend.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/microfrontend/lib/frontend_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/microfrontend/lib/frontend_io.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/microfrontend/lib/frontend_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/microfrontend/lib/frontend_util.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/microfrontend/lib/log_lut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/microfrontend/lib/log_lut.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/microfrontend/lib/log_scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/microfrontend/lib/log_scale.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/microfrontend/lib/log_scale_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/microfrontend/lib/log_scale_io.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/microfrontend/lib/log_scale_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/microfrontend/lib/log_scale_util.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/microfrontend/lib/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/microfrontend/lib/window.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/microfrontend/lib/window_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/microfrontend/lib/window_io.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/microfrontend/lib/window_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/microfrontend/lib/window_util.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/writer/enum_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/writer/enum_mapping.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/experimental/writer/writer_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/experimental/writer/writer_lib.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/graph_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/graph_info.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/interpreter.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/java/src/main/native/exception_jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/java/src/main/native/exception_jni.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/java/src/main/native/init_tensorflow_jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/java/src/main/native/init_tensorflow_jni.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/java/src/main/native/tensor_jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/java/src/main/native/tensor_jni.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/java/src/main/native/tensorflow_lite_jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/java/src/main/native/tensorflow_lite_jni.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/activation_functor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/activation_functor.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/eigen_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/eigen_support.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/gemm_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/gemm_support.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/common.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/compatibility.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/kernel_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/kernel_utils.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/legacy_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/legacy_types.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/mfcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/mfcc.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/mfcc_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/mfcc_dct.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/mfcc_mel_filterbank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/mfcc_mel_filterbank.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/optimized/cblas_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/optimized/cblas_conv.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/optimized/cblas_reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/optimized/cblas_reference.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/optimized/cpu_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/optimized/cpu_check.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/optimized/multithreaded_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/optimized/multithreaded_conv.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/optimized/neon_tensor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/optimized/neon_tensor_utils.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/optimized/optimized_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/optimized/optimized_ops.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/optimized/tensor_utils_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/optimized/tensor_utils_impl.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/quantization_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/quantization_util.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/reference/fully_connected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/reference/fully_connected.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/reference/reference_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/reference/reference_ops.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/reference/softmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/reference/softmax.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/round.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/spectrogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/spectrogram.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/strided_slice_logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/strided_slice_logic.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/tensor.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/tensor_ctypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/tensor_ctypes.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/tensor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/tensor_utils.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/test_util.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/internal/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/internal/types.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/kernel_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/kernel_util.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/lstm_eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/lstm_eval.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/op_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/op_macros.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/padding.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/register.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/kernels/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/kernels/test_util.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/memory_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/memory_planner.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/model.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/models/smartreply/predictor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/models/smartreply/predictor.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/mutable_op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/mutable_op_resolver.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/nnapi/NeuralNetworksShim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/nnapi/NeuralNetworksShim.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/nnapi_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/nnapi_delegate.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/op_resolver.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/optional_debug_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/optional_debug_tools.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/profiling/profile_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/profiling/profile_buffer.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/profiling/profile_summarizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/profiling/profile_summarizer.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/profiling/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/profiling/profiler.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/profiling/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/profiling/time.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/schema/builtin_ops_header/generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/schema/builtin_ops_header/generator.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/schema/schema_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/schema/schema_generated.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/simple_memory_arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/simple_memory_arena.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/stderr_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/stderr_reporter.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/string.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/string_util.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/testing/generate_testspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/testing/generate_testspec.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/testing/init_tensorflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/testing/init_tensorflow.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/testing/join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/testing/join.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/testing/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/testing/message.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/testing/parse_testdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/testing/parse_testdata.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/testing/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/testing/split.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/testing/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/testing/test_runner.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/testing/tf_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/testing/tf_driver.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/testing/tflite_diff_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/testing/tflite_diff_flags.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/testing/tflite_diff_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/testing/tflite_diff_util.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/testing/tflite_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/testing/tflite_driver.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/testing/tokenize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/testing/tokenize.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/testing/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/testing/util.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/allocate_transient_arrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/allocate_transient_arrays.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/args.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/dump_graphviz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/dump_graphviz.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/export_tensorflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/export_tensorflow.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/format_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/format_port.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/graph_transformations/lstm_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/graph_transformations/lstm_utils.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/graph_transformations/quantization_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/graph_transformations/quantization_util.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/import_tensorflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/import_tensorflow.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/model.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/model_cmdline_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/model_cmdline_flags.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/python/toco_python_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/python/toco_python_api.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/runtime/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/runtime/common.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/runtime/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/runtime/types.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/tensorflow_graph_matching/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/tensorflow_graph_matching/cluster.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/tensorflow_graph_matching/cluster_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/tensorflow_graph_matching/cluster_utils.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/tensorflow_graph_matching/resolve_svdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/tensorflow_graph_matching/resolve_svdf.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/tensorflow_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/tensorflow_util.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/tflite/builtin_operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/tflite/builtin_operator.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/tflite/custom_operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/tflite/custom_operator.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/tflite/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/tflite/export.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/tflite/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/tflite/import.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/tflite/operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/tflite/operator.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/tflite/simple_operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/tflite/simple_operator.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/tflite/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/tflite/types.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/tflite/whitelisted_flex_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/tflite/whitelisted_flex_ops.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/toco_cmdline_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/toco_cmdline_flags.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/toco_graphviz_dump_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/toco_graphviz_dump_options.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/toco_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/toco_port.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/toco_tooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/toco_tooling.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/toco_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/toco_types.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/toco/tooling_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/toco/tooling_util.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/accuracy/accuracy_eval_stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/accuracy/accuracy_eval_stage.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/accuracy/csv_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/accuracy/csv_writer.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/accuracy/eval_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/accuracy/eval_pipeline.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/accuracy/eval_pipeline_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/accuracy/eval_pipeline_builder.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/accuracy/file_reader_stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/accuracy/file_reader_stage.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/accuracy/ilsvrc/imagenet_topk_eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/accuracy/ilsvrc/imagenet_topk_eval.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/accuracy/ilsvrc/inception_preprocessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/accuracy/ilsvrc/inception_preprocessing.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/accuracy/run_tflite_model_stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/accuracy/run_tflite_model_stage.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/accuracy/stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/accuracy/stage.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/accuracy/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/accuracy/utils.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/benchmark/benchmark_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/benchmark/benchmark_model.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/benchmark/benchmark_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/benchmark/benchmark_params.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/benchmark/benchmark_tflite_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/benchmark/benchmark_tflite_model.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/benchmark/command_line_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/benchmark/command_line_flags.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/benchmark/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/benchmark/logging.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/gen_op_registration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/gen_op_registration.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/absl/absl/base/call_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/absl/absl/base/call_once.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/absl/absl/base/casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/absl/absl/base/casts.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/absl/absl/base/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/absl/absl/base/config.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/absl/absl/base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/absl/absl/base/macros.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/absl/absl/base/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/absl/absl/base/port.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/absl/absl/hash/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/absl/absl/hash/hash.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/absl/absl/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/absl/absl/memory/memory.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/absl/absl/numeric/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/absl/absl/numeric/int128.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/absl/absl/strings/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/absl/absl/strings/ascii.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/absl/absl/strings/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/absl/absl/strings/match.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/absl/absl/strings/strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/absl/absl/strings/strip.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/absl/absl/time/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/absl/absl/time/clock.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/absl/absl/time/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/absl/absl/time/time.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/absl/absl/types/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/absl/absl/types/any.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/absl/absl/types/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/absl/absl/types/optional.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/absl/absl/types/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/absl/absl/types/span.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/absl/absl/types/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/absl/absl/types/variant.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/eigen/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/bench/BenchTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/eigen/bench/BenchTimer.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/bench/BenchUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/eigen/bench/BenchUtil.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/blas/Rank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/eigen/blas/Rank2Update.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/blas/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/eigen/blas/common.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/blas/f2c/datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/eigen/blas/f2c/datatypes.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/blas/level1_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/eigen/blas/level1_impl.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/blas/level2_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/eigen/blas/level2_impl.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/blas/level3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/eigen/blas/level3_impl.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/test/bug1213.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/eigen/test/bug1213.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/test/cuda_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/eigen/test/cuda_common.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/test/evaluator_common.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/test/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/eigen/test/main.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/test/product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/eigen/test/product.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/test/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/eigen/test/sparse.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/test/sparse_solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/eigen/test/sparse_solver.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/test/svd_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/eigen/test/svd_common.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/eigen/test/svd_fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/eigen/test/svd_fill.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/farmhash/dev/farmhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/farmhash/dev/farmhash.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/farmhash/src/farmhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/farmhash/src/farmhash.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/gemmlowp/internal/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/gemmlowp/internal/common.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/gemmlowp/internal/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/gemmlowp/internal/kernel.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/gemmlowp/internal/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/gemmlowp/internal/output.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/gemmlowp/internal/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/gemmlowp/internal/pack.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/gemmlowp/internal/unpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/gemmlowp/internal/unpack.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/gemmlowp/meta/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/gemmlowp/meta/base.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/gemmlowp/meta/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/gemmlowp/meta/streams.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/gemmlowp/public/gemmlowp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/gemmlowp/public/gemmlowp.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/gemmlowp/public/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/gemmlowp/public/map.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/gemmlowp/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/gemmlowp/test/test.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/gemmlowp/test/test_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/gemmlowp/test/test_data.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/make/downloads/neon_2_sse/NEON_2_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/make/downloads/neon_2_sse/NEON_2_SSE.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/optimize/quantize_weights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/optimize/quantize_weights.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/tools/verifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/tools/verifier.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/util.h -------------------------------------------------------------------------------- /shared/tensorflow/lite/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/lite/version.h -------------------------------------------------------------------------------- /shared/tensorflow/memory_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/memory_planner.h -------------------------------------------------------------------------------- /shared/tensorflow/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/model.h -------------------------------------------------------------------------------- /shared/tensorflow/models/smartreply/predictor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/models/smartreply/predictor.h -------------------------------------------------------------------------------- /shared/tensorflow/mutable_op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/mutable_op_resolver.h -------------------------------------------------------------------------------- /shared/tensorflow/nnapi/NeuralNetworksShim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/nnapi/NeuralNetworksShim.h -------------------------------------------------------------------------------- /shared/tensorflow/nnapi_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/nnapi_delegate.h -------------------------------------------------------------------------------- /shared/tensorflow/op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/op_resolver.h -------------------------------------------------------------------------------- /shared/tensorflow/optional_debug_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/optional_debug_tools.h -------------------------------------------------------------------------------- /shared/tensorflow/profiling/profile_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/profiling/profile_buffer.h -------------------------------------------------------------------------------- /shared/tensorflow/profiling/profile_summarizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/profiling/profile_summarizer.h -------------------------------------------------------------------------------- /shared/tensorflow/profiling/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/profiling/profiler.h -------------------------------------------------------------------------------- /shared/tensorflow/profiling/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/profiling/time.h -------------------------------------------------------------------------------- /shared/tensorflow/python/interpreter_wrapper/interpreter_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/python/interpreter_wrapper/interpreter_wrapper.h -------------------------------------------------------------------------------- /shared/tensorflow/schema/builtin_ops_header/generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/schema/builtin_ops_header/generator.h -------------------------------------------------------------------------------- /shared/tensorflow/schema/schema_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/schema/schema_generated.h -------------------------------------------------------------------------------- /shared/tensorflow/simple_memory_arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/simple_memory_arena.h -------------------------------------------------------------------------------- /shared/tensorflow/stderr_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/stderr_reporter.h -------------------------------------------------------------------------------- /shared/tensorflow/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/string.h -------------------------------------------------------------------------------- /shared/tensorflow/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/string_util.h -------------------------------------------------------------------------------- /shared/tensorflow/testing/generate_testspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/testing/generate_testspec.h -------------------------------------------------------------------------------- /shared/tensorflow/testing/init_tensorflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/testing/init_tensorflow.h -------------------------------------------------------------------------------- /shared/tensorflow/testing/join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/testing/join.h -------------------------------------------------------------------------------- /shared/tensorflow/testing/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/testing/message.h -------------------------------------------------------------------------------- /shared/tensorflow/testing/parse_testdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/testing/parse_testdata.h -------------------------------------------------------------------------------- /shared/tensorflow/testing/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/testing/split.h -------------------------------------------------------------------------------- /shared/tensorflow/testing/test_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/testing/test_runner.h -------------------------------------------------------------------------------- /shared/tensorflow/testing/tf_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/testing/tf_driver.h -------------------------------------------------------------------------------- /shared/tensorflow/testing/tflite_diff_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/testing/tflite_diff_flags.h -------------------------------------------------------------------------------- /shared/tensorflow/testing/tflite_diff_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/testing/tflite_diff_util.h -------------------------------------------------------------------------------- /shared/tensorflow/testing/tflite_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/testing/tflite_driver.h -------------------------------------------------------------------------------- /shared/tensorflow/testing/tokenize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/testing/tokenize.h -------------------------------------------------------------------------------- /shared/tensorflow/testing/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/testing/util.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/allocate_transient_arrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/allocate_transient_arrays.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/args.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/dump_graphviz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/dump_graphviz.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/export_tensorflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/export_tensorflow.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/format_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/format_port.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/graph_transformations/graph_transformations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/graph_transformations/graph_transformations.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/graph_transformations/lstm_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/graph_transformations/lstm_utils.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/graph_transformations/quantization_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/graph_transformations/quantization_util.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/import_tensorflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/import_tensorflow.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/model.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/model_cmdline_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/model_cmdline_flags.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/python/toco_python_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/python/toco_python_api.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/runtime/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/runtime/common.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/runtime/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/runtime/types.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/tensorflow_graph_matching/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/tensorflow_graph_matching/cluster.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/tensorflow_graph_matching/cluster_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/tensorflow_graph_matching/cluster_utils.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/tensorflow_graph_matching/resolve_cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/tensorflow_graph_matching/resolve_cluster.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/tensorflow_graph_matching/resolve_svdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/tensorflow_graph_matching/resolve_svdf.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/tensorflow_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/tensorflow_util.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/tflite/builtin_operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/tflite/builtin_operator.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/tflite/custom_operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/tflite/custom_operator.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/tflite/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/tflite/export.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/tflite/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/tflite/import.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/tflite/operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/tflite/operator.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/tflite/simple_operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/tflite/simple_operator.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/tflite/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/tflite/types.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/tflite/whitelisted_flex_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/tflite/whitelisted_flex_ops.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/toco_cmdline_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/toco_cmdline_flags.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/toco_graphviz_dump_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/toco_graphviz_dump_options.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/toco_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/toco_port.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/toco_tooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/toco_tooling.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/toco_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/toco_types.h -------------------------------------------------------------------------------- /shared/tensorflow/toco/tooling_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/toco/tooling_util.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/accuracy/accuracy_eval_stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/accuracy/accuracy_eval_stage.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/accuracy/csv_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/accuracy/csv_writer.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/accuracy/eval_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/accuracy/eval_pipeline.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/accuracy/eval_pipeline_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/accuracy/eval_pipeline_builder.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/accuracy/file_reader_stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/accuracy/file_reader_stage.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/accuracy/ilsvrc/imagenet_model_evaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/accuracy/ilsvrc/imagenet_model_evaluator.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/accuracy/ilsvrc/imagenet_topk_eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/accuracy/ilsvrc/imagenet_topk_eval.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/accuracy/ilsvrc/inception_preprocessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/accuracy/ilsvrc/inception_preprocessing.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/accuracy/run_tflite_model_stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/accuracy/run_tflite_model_stage.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/accuracy/stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/accuracy/stage.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/accuracy/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/accuracy/utils.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/benchmark/benchmark_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/benchmark/benchmark_model.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/benchmark/benchmark_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/benchmark/benchmark_params.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/benchmark/benchmark_tflite_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/benchmark/benchmark_tflite_model.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/benchmark/command_line_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/benchmark/command_line_flags.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/benchmark/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/benchmark/logging.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/gen_op_registration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/gen_op_registration.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/algorithm/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/algorithm/algorithm.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/algorithm/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/algorithm/container.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/base/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/base/attributes.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/base/call_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/base/call_once.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/base/casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/base/casts.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/base/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/base/config.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/base/internal/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/base/internal/bits.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/base/log_severity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/base/log_severity.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/base/macros.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/base/optimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/base/optimization.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/base/policy_checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/base/policy_checks.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/base/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/base/port.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/hash/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/hash/hash.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/hash/hash_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/hash/hash_testing.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/memory/memory.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/meta/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/meta/type_traits.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/numeric/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/numeric/int128.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/strings/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/strings/ascii.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/strings/charconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/strings/charconv.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/strings/escaping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/strings/escaping.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/strings/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/strings/match.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/strings/numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/strings/numbers.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/strings/str_cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/strings/str_cat.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/strings/str_join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/strings/str_join.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/strings/str_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/strings/str_split.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/strings/strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/strings/strip.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/time/civil_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/time/civil_time.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/time/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/time/clock.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/time/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/time/time.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/types/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/types/any.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/types/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/types/optional.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/types/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/types/span.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/types/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/types/variant.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/absl/absl/utility/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/absl/absl/utility/utility.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/bench/BenchSparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/bench/BenchSparseUtil.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/bench/BenchTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/bench/BenchTimer.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/bench/BenchUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/bench/BenchUtil.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/bench/basicbenchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/bench/basicbenchmark.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/blas/Rank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/blas/Rank2Update.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/blas/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/blas/common.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/blas/f2c/datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/blas/f2c/datatypes.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/blas/level1_cplx_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/blas/level1_cplx_impl.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/blas/level1_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/blas/level1_impl.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/blas/level1_real_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/blas/level1_real_impl.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/blas/level2_cplx_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/blas/level2_cplx_impl.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/blas/level2_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/blas/level2_impl.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/blas/level2_real_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/blas/level2_real_impl.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/blas/level3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/blas/level3_impl.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/demos/opengl/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/demos/opengl/camera.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/lapack/lapack_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/lapack/lapack_common.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/test/bug1213.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/test/bug1213.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/test/cuda_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/test/cuda_common.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/test/evaluator_common.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/test/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/test/main.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/test/product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/test/product.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/test/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/test/sparse.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/test/sparse_solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/test/sparse_solver.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/test/svd_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/test/svd_common.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/eigen/test/svd_fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/eigen/test/svd_fill.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/farmhash/dev/farmhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/farmhash/dev/farmhash.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/farmhash/src/farmhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/farmhash/src/farmhash.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/gemmlowp/internal/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/gemmlowp/internal/allocator.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/gemmlowp/internal/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/gemmlowp/internal/common.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/gemmlowp/internal/compute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/gemmlowp/internal/compute.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/gemmlowp/internal/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/gemmlowp/internal/kernel.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/gemmlowp/internal/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/gemmlowp/internal/output.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/gemmlowp/internal/pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/gemmlowp/internal/pack.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/gemmlowp/internal/pack_avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/gemmlowp/internal/pack_avx.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/gemmlowp/internal/pack_msa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/gemmlowp/internal/pack_msa.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/gemmlowp/internal/pack_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/gemmlowp/internal/pack_neon.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/gemmlowp/internal/pack_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/gemmlowp/internal/pack_sse.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/gemmlowp/internal/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/gemmlowp/internal/platform.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/gemmlowp/internal/unpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/gemmlowp/internal/unpack.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/gemmlowp/meta/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/gemmlowp/meta/base.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/gemmlowp/meta/streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/gemmlowp/meta/streams.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/gemmlowp/profiling/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/gemmlowp/profiling/profiler.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/gemmlowp/public/bit_depth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/gemmlowp/public/bit_depth.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/gemmlowp/public/gemmlowp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/gemmlowp/public/gemmlowp.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/gemmlowp/public/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/gemmlowp/public/map.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/gemmlowp/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/gemmlowp/test/test.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/gemmlowp/test/test_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/gemmlowp/test/test_data.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/make/downloads/neon_2_sse/NEON_2_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/make/downloads/neon_2_sse/NEON_2_SSE.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/optimize/quantize_weights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/optimize/quantize_weights.h -------------------------------------------------------------------------------- /shared/tensorflow/tools/verifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/tools/verifier.h -------------------------------------------------------------------------------- /shared/tensorflow/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/util.h -------------------------------------------------------------------------------- /shared/tensorflow/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/shared/tensorflow/version.h -------------------------------------------------------------------------------- /spi_slave/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/spi_slave/README.md -------------------------------------------------------------------------------- /spi_slave/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/spi_slave/main.c -------------------------------------------------------------------------------- /spi_slave/project.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/spi_slave/project.cmake -------------------------------------------------------------------------------- /spi_slave/project_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/spi_slave/project_cfg.h -------------------------------------------------------------------------------- /spi_slave/spi_master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/spi_slave/spi_master.c -------------------------------------------------------------------------------- /spi_slave/spi_master.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/spi_slave/spi_master.h -------------------------------------------------------------------------------- /spi_slave/spi_slave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/spi_slave/spi_slave.c -------------------------------------------------------------------------------- /spi_slave/spi_slave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/spi_slave/spi_slave.h -------------------------------------------------------------------------------- /tcp_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/tcp_server/README.md -------------------------------------------------------------------------------- /tcp_server/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/tcp_server/main.c -------------------------------------------------------------------------------- /tcp_server/project_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/tcp_server/project_cfg.h -------------------------------------------------------------------------------- /tflite_label_image/bitmap_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/tflite_label_image/bitmap_helpers.cpp -------------------------------------------------------------------------------- /tflite_label_image/bitmap_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/tflite_label_image/bitmap_helpers.h -------------------------------------------------------------------------------- /tflite_label_image/bitmap_helpers_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/tflite_label_image/bitmap_helpers_impl.h -------------------------------------------------------------------------------- /tflite_label_image/get_top_n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/tflite_label_image/get_top_n.h -------------------------------------------------------------------------------- /tflite_label_image/get_top_n_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/tflite_label_image/get_top_n_impl.h -------------------------------------------------------------------------------- /tflite_label_image/grace_hopper.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/tflite_label_image/grace_hopper.bmp -------------------------------------------------------------------------------- /tflite_label_image/incbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/tflite_label_image/incbin.h -------------------------------------------------------------------------------- /tflite_label_image/label_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/tflite_label_image/label_image.h -------------------------------------------------------------------------------- /tflite_label_image/labels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/tflite_label_image/labels.c -------------------------------------------------------------------------------- /tflite_label_image/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/tflite_label_image/main.cpp -------------------------------------------------------------------------------- /tflite_label_image/mobilenet_v1_0.5_128_quant.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/tflite_label_image/mobilenet_v1_0.5_128_quant.tflite -------------------------------------------------------------------------------- /tflite_label_image/project.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/tflite_label_image/project.cmake -------------------------------------------------------------------------------- /tflite_label_image/project_cfg.c: -------------------------------------------------------------------------------- 1 | 2 | #include "project_cfg.h" -------------------------------------------------------------------------------- /tflite_label_image/project_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/tflite_label_image/project_cfg.h -------------------------------------------------------------------------------- /uart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/uart/README.md -------------------------------------------------------------------------------- /uart/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/uart/main.c -------------------------------------------------------------------------------- /uart/project_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/uart/project_cfg.h -------------------------------------------------------------------------------- /wdt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/wdt/README.md -------------------------------------------------------------------------------- /wdt/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/wdt/main.c -------------------------------------------------------------------------------- /ws2812b/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/ws2812b/README.md -------------------------------------------------------------------------------- /ws2812b/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/ws2812b/main.c -------------------------------------------------------------------------------- /ws2812b/project_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kendryte/kendryte-freertos-demo/HEAD/ws2812b/project_cfg.h --------------------------------------------------------------------------------