xmos-ai-tools 1.3.2.dev80__py3-none-macosx_10_15_universal2.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- xmos_ai_tools/__init__.py +7 -0
- xmos_ai_tools/io_server/__init__.py +151 -0
- xmos_ai_tools/runtime/__init__.py +0 -0
- xmos_ai_tools/runtime/buildfiles/aitoolslib.cmake +13 -0
- xmos_ai_tools/runtime/buildfiles/aitoolslib.make +8 -0
- xmos_ai_tools/runtime/include/flash_server.h +74 -0
- xmos_ai_tools/runtime/include/flatbuffers/allocator.h +68 -0
- xmos_ai_tools/runtime/include/flatbuffers/array.h +243 -0
- xmos_ai_tools/runtime/include/flatbuffers/base.h +474 -0
- xmos_ai_tools/runtime/include/flatbuffers/bfbs_generator.h +43 -0
- xmos_ai_tools/runtime/include/flatbuffers/buffer.h +142 -0
- xmos_ai_tools/runtime/include/flatbuffers/buffer_ref.h +53 -0
- xmos_ai_tools/runtime/include/flatbuffers/code_generators.h +235 -0
- xmos_ai_tools/runtime/include/flatbuffers/default_allocator.h +64 -0
- xmos_ai_tools/runtime/include/flatbuffers/detached_buffer.h +114 -0
- xmos_ai_tools/runtime/include/flatbuffers/flatbuffer_builder.h +1197 -0
- xmos_ai_tools/runtime/include/flatbuffers/flatbuffers.h +270 -0
- xmos_ai_tools/runtime/include/flatbuffers/flatc.h +111 -0
- xmos_ai_tools/runtime/include/flatbuffers/flexbuffers.h +1897 -0
- xmos_ai_tools/runtime/include/flatbuffers/grpc.h +300 -0
- xmos_ai_tools/runtime/include/flatbuffers/hash.h +127 -0
- xmos_ai_tools/runtime/include/flatbuffers/idl.h +1232 -0
- xmos_ai_tools/runtime/include/flatbuffers/minireflect.h +419 -0
- xmos_ai_tools/runtime/include/flatbuffers/pch/flatc_pch.h +39 -0
- xmos_ai_tools/runtime/include/flatbuffers/pch/pch.h +38 -0
- xmos_ai_tools/runtime/include/flatbuffers/reflection.h +502 -0
- xmos_ai_tools/runtime/include/flatbuffers/reflection_generated.h +1449 -0
- xmos_ai_tools/runtime/include/flatbuffers/registry.h +128 -0
- xmos_ai_tools/runtime/include/flatbuffers/stl_emulation.h +509 -0
- xmos_ai_tools/runtime/include/flatbuffers/string.h +64 -0
- xmos_ai_tools/runtime/include/flatbuffers/struct.h +53 -0
- xmos_ai_tools/runtime/include/flatbuffers/table.h +168 -0
- xmos_ai_tools/runtime/include/flatbuffers/util.h +690 -0
- xmos_ai_tools/runtime/include/flatbuffers/vector.h +370 -0
- xmos_ai_tools/runtime/include/flatbuffers/vector_downward.h +271 -0
- xmos_ai_tools/runtime/include/flatbuffers/verifier.h +283 -0
- xmos_ai_tools/runtime/include/ioserver.h +44 -0
- xmos_ai_tools/runtime/include/lib_nn/api/TransposeConv.h +24 -0
- xmos_ai_tools/runtime/include/lib_nn/api/add_int16.h +27 -0
- xmos_ai_tools/runtime/include/lib_nn/api/add_int16_transform.h +42 -0
- xmos_ai_tools/runtime/include/lib_nn/api/dequantize_int16.h +22 -0
- xmos_ai_tools/runtime/include/lib_nn/api/dequantize_int16_transform.h +34 -0
- xmos_ai_tools/runtime/include/lib_nn/api/expand_8_to_16.h +8 -0
- xmos_ai_tools/runtime/include/lib_nn/api/multiply_int16.h +42 -0
- xmos_ai_tools/runtime/include/lib_nn/api/multiply_int16_transform.h +71 -0
- xmos_ai_tools/runtime/include/lib_nn/api/nn_api.h +15 -0
- xmos_ai_tools/runtime/include/lib_nn/api/nn_bin_types.h +14 -0
- xmos_ai_tools/runtime/include/lib_nn/api/nn_config.h +287 -0
- xmos_ai_tools/runtime/include/lib_nn/api/nn_conv2d_structs.h +72 -0
- xmos_ai_tools/runtime/include/lib_nn/api/nn_image.h +26 -0
- xmos_ai_tools/runtime/include/lib_nn/api/nn_layers.h +303 -0
- xmos_ai_tools/runtime/include/lib_nn/api/nn_op_helper.h +132 -0
- xmos_ai_tools/runtime/include/lib_nn/api/nn_op_utils.h +150 -0
- xmos_ai_tools/runtime/include/lib_nn/api/nn_operator.h +18 -0
- xmos_ai_tools/runtime/include/lib_nn/api/nn_pooling.h +551 -0
- xmos_ai_tools/runtime/include/lib_nn/api/nn_types.h +83 -0
- xmos_ai_tools/runtime/include/lib_nn/api/nn_window_params.h +55 -0
- xmos_ai_tools/runtime/include/lib_nn/api/output_transform_fn_int16.h +54 -0
- xmos_ai_tools/runtime/include/lib_nn/api/output_transform_fn_int16_kernel_transform.h +37 -0
- xmos_ai_tools/runtime/include/lib_nn/api/output_transform_fn_int16_mappings.h +13 -0
- xmos_ai_tools/runtime/include/lib_nn/api/quadratic_approximation.h +82 -0
- xmos_ai_tools/runtime/include/lib_nn/api/quadratic_interpolation.h +23 -0
- xmos_ai_tools/runtime/include/lib_nn/api/quantize_int16.h +22 -0
- xmos_ai_tools/runtime/include/lib_nn/api/quantize_int16_transform.h +33 -0
- xmos_ai_tools/runtime/include/lib_nn/api/version.h +13 -0
- xmos_ai_tools/runtime/include/lib_nn/api/vpu_memmove_word_aligned.h +15 -0
- xmos_ai_tools/runtime/include/lib_nn/api/vpu_memset_256.h +55 -0
- xmos_ai_tools/runtime/include/lib_nn/api/vpu_sim.h +118 -0
- xmos_ai_tools/runtime/include/lib_nn/api/xs3_vpu.h +216 -0
- xmos_ai_tools/runtime/include/lib_nn/api/xs3a_registers.h +2869 -0
- xmos_ai_tools/runtime/include/lib_nn/src/asm/asm_constants.h +41 -0
- xmos_ai_tools/runtime/include/lib_nn/src/asm/window_op_plan.h +25 -0
- xmos_ai_tools/runtime/include/lib_tflite_micro/api/fast_flash.h +47 -0
- xmos_ai_tools/runtime/include/lib_tflite_micro/api/inference_engine.h +218 -0
- xmos_ai_tools/runtime/include/lib_tflite_micro/api/memory_parallel_transport.h +52 -0
- xmos_ai_tools/runtime/include/lib_tflite_micro/api/version.h +13 -0
- xmos_ai_tools/runtime/include/lib_tflite_micro/api/xcore_config.h +17 -0
- xmos_ai_tools/runtime/include/lib_tflite_micro/api/xcore_device_memory.h +62 -0
- xmos_ai_tools/runtime/include/lib_tflite_micro/api/xcore_shared_config.h +31 -0
- xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/conv2d_float.h +155 -0
- xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_common.h +19 -0
- xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_custom_options.h +28 -0
- xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_error_reporter.h +32 -0
- xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_interpreter.h +49 -0
- xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_ops.h +71 -0
- xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_profiler.h +49 -0
- xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_utils.h +160 -0
- xmos_ai_tools/runtime/include/lib_tflite_micro/src/thread_call.h +119 -0
- xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/legacy/usb_defs.h +4 -0
- xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/legacy/usb_device.h +4 -0
- xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/legacy/usb_std_descriptors.h +4 -0
- xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/legacy/usb_std_requests.h +4 -0
- xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/xud.h +518 -0
- xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/xud_conf_default.h +11 -0
- xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/xud_device.h +87 -0
- xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/xud_std_descriptors.h +191 -0
- xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/xud_std_requests.h +120 -0
- xmos_ai_tools/runtime/include/lib_xud/lib_xud/src/user/XUD_USB_Defines.h +70 -0
- xmos_ai_tools/runtime/include/lib_xud/lib_xud/src/user/class/hid.h +23 -0
- xmos_ai_tools/runtime/include/lib_xud/lib_xud/src/user/class/usbaudio10.h +30 -0
- xmos_ai_tools/runtime/include/lib_xud/lib_xud/src/user/class/usbaudio20.h +357 -0
- xmos_ai_tools/runtime/include/lib_xud/lib_xud/src/user/class/usbaudiocommon.h +168 -0
- xmos_ai_tools/runtime/include/signal/micro/kernels/delay_flexbuffers_generated_data.h +25 -0
- xmos_ai_tools/runtime/include/signal/micro/kernels/energy_flexbuffers_generated_data.h +28 -0
- xmos_ai_tools/runtime/include/signal/micro/kernels/fft_flexbuffers_generated_data.h +37 -0
- xmos_ai_tools/runtime/include/signal/micro/kernels/filter_bank_flexbuffers_generated_data.h +25 -0
- xmos_ai_tools/runtime/include/signal/micro/kernels/filter_bank_log_flexbuffers_generated_data.h +27 -0
- xmos_ai_tools/runtime/include/signal/micro/kernels/filter_bank_spectral_subtraction_flexbuffers_generated_data.h +26 -0
- xmos_ai_tools/runtime/include/signal/micro/kernels/framer_flexbuffers_generated_data.h +25 -0
- xmos_ai_tools/runtime/include/signal/micro/kernels/irfft.h +31 -0
- xmos_ai_tools/runtime/include/signal/micro/kernels/overlap_add_flexbuffers_generated_data.h +25 -0
- xmos_ai_tools/runtime/include/signal/micro/kernels/pcan_flexbuffers_generated_data.h +7 -0
- xmos_ai_tools/runtime/include/signal/micro/kernels/rfft.h +31 -0
- xmos_ai_tools/runtime/include/signal/micro/kernels/stacker_flexbuffers_generated_data.h +25 -0
- xmos_ai_tools/runtime/include/signal/micro/kernels/window_flexbuffers_generated_data.h +25 -0
- xmos_ai_tools/runtime/include/signal/src/circular_buffer.h +118 -0
- xmos_ai_tools/runtime/include/signal/src/complex.h +29 -0
- xmos_ai_tools/runtime/include/signal/src/energy.h +38 -0
- xmos_ai_tools/runtime/include/signal/src/fft_auto_scale.h +35 -0
- xmos_ai_tools/runtime/include/signal/src/filter_bank.h +69 -0
- xmos_ai_tools/runtime/include/signal/src/filter_bank_log.h +38 -0
- xmos_ai_tools/runtime/include/signal/src/filter_bank_spectral_subtraction.h +73 -0
- xmos_ai_tools/runtime/include/signal/src/filter_bank_square_root.h +34 -0
- xmos_ai_tools/runtime/include/signal/src/irfft.h +84 -0
- xmos_ai_tools/runtime/include/signal/src/kiss_fft_wrappers/kiss_fft_common.h +49 -0
- xmos_ai_tools/runtime/include/signal/src/kiss_fft_wrappers/kiss_fft_float.h +31 -0
- xmos_ai_tools/runtime/include/signal/src/kiss_fft_wrappers/kiss_fft_int16.h +30 -0
- xmos_ai_tools/runtime/include/signal/src/kiss_fft_wrappers/kiss_fft_int32.h +31 -0
- xmos_ai_tools/runtime/include/signal/src/log.h +30 -0
- xmos_ai_tools/runtime/include/signal/src/max_abs.h +31 -0
- xmos_ai_tools/runtime/include/signal/src/msb.h +32 -0
- xmos_ai_tools/runtime/include/signal/src/overlap_add.h +46 -0
- xmos_ai_tools/runtime/include/signal/src/pcan_argc_fixed.h +41 -0
- xmos_ai_tools/runtime/include/signal/src/rfft.h +85 -0
- xmos_ai_tools/runtime/include/signal/src/square_root.h +32 -0
- xmos_ai_tools/runtime/include/signal/src/window.h +31 -0
- xmos_ai_tools/runtime/include/signal/testdata/fft_test_data.h +48 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/array.h +156 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/builtin_op_data.h +22 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/builtin_ops.h +241 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/c/builtin_op_data.h +20 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/c/c_api_types.h +26 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/c/common.h +30 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/context_util.h +54 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/core/api/error_reporter.h +72 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/core/api/flatbuffer_conversions.h +440 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/core/api/tensor_utils.h +28 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/core/c/builtin_op_data.h +626 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/core/c/c_api_types.h +178 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/core/c/common.h +1496 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/core/macros.h +78 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/bits.h +102 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/fft.h +50 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/fft_io.h +34 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/fft_util.h +34 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/filterbank.h +63 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/filterbank_io.h +35 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/filterbank_util.h +50 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/frontend.h +64 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/frontend_io.h +31 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/frontend_util.h +52 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/kiss_fft_common.h +48 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/kiss_fft_int16.h +33 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/log_lut.h +40 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/log_scale.h +39 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/log_scale_io.h +33 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/log_scale_util.h +45 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/noise_reduction.h +46 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/noise_reduction_io.h +36 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/noise_reduction_util.h +50 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/pcan_gain_control.h +47 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/pcan_gain_control_util.h +57 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/window.h +49 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/window_io.h +34 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/window_util.h +45 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/common.h +1358 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/compatibility.h +122 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/cppmath.h +40 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/max.h +35 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/min.h +35 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/optimized/neon_check.h +20 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/portable_tensor.h +141 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/portable_tensor_utils.h +623 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/quantization_util.h +292 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/add.h +561 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/add_n.h +86 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/arg_min_max.h +88 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/batch_matmul.h +275 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/batch_to_space_nd.h +101 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/binary_function.h +91 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/broadcast_args.h +56 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/broadcast_to.h +97 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/ceil.h +37 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/comparisons.h +271 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/concatenation.h +141 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/conv.h +289 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/cumsum.h +175 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/depth_to_space.h +79 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/depthwiseconv_float.h +100 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/depthwiseconv_uint8.h +319 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/dequantize.h +78 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/div.h +247 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/elu.h +37 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/exp.h +38 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/fill.h +38 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/floor.h +39 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/floor_div.h +35 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/floor_mod.h +44 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/fully_connected.h +323 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/hard_swish.h +168 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/add.h +250 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/conv.h +241 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/depthwise_conv.h +291 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/fully_connected.h +126 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/l2normalization.h +67 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/logistic.h +121 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/mean.h +18 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/mul.h +194 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/pooling.h +264 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/tanh.h +117 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/transpose_conv.h +224 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/l2normalization.h +90 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/leaky_relu.h +69 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/log_softmax.h +256 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/logistic.h +132 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/lstm_cell.h +422 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/maximum_minimum.h +64 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/mul.h +267 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/neg.h +37 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/pad.h +169 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/pooling.h +303 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/portable_tensor_utils.h +333 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/portable_tensor_utils_impl.h +244 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/prelu.h +111 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/process_broadcast_shapes.h +140 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/quantize.h +89 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/reduce.h +491 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/requantize.h +70 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/resize_bilinear.h +233 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/resize_nearest_neighbor.h +102 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/round.h +51 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/select.h +151 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/slice.h +80 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/softmax.h +233 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/space_to_batch_nd.h +109 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/space_to_depth.h +80 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/strided_slice.h +147 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/sub.h +465 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/tanh.h +129 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/transpose.h +203 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/transpose_conv.h +225 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/runtime_shape.h +168 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/strided_slice_logic.h +278 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/tensor_ctypes.h +42 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/types.h +1096 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/kernel_util.h +341 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/op_macros.h +49 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/padding.h +115 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/arena_allocator/ibuffer_allocator.h +100 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/arena_allocator/non_persistent_arena_buffer_allocator.h +104 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/arena_allocator/persistent_arena_buffer_allocator.h +58 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/arena_allocator/recording_single_arena_buffer_allocator.h +63 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/arena_allocator/single_arena_buffer_allocator.h +144 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/benchmarks/micro_benchmark.h +95 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/compatibility.h +32 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/cortex_m_generic/debug_log_callback.h +49 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/debug_log.h +38 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/micro_model_settings.h +37 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/network_tester/expected_output_data.h +47 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/network_tester/input_data.h +108 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/network_tester/network_model.h +166 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/person_detection/detection_responder.h +32 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/person_detection/image_provider.h +38 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/person_detection/main_functions.h +37 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/person_detection/model_settings.h +35 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/fake_micro_context.h +70 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/flatbuffer_utils.h +65 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/activation_utils.h +57 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/activations.h +64 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/add.h +78 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/mli_function_specializations.h +141 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/mli_interface.h +75 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/mli_slicers.h +56 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/mli_tf_utils.h +310 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/scratch_buf_mgr.h +145 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/scratch_buffers.h +78 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/ceva/ceva_common.h +24 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/ceva/ceva_tflm_lib.h +613 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/ceva/mcps_macros.h +115 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/ceva/types.h +1286 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/circular_buffer.h +45 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/circular_buffer_flexbuffers_generated_data.h +22 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/conv.h +117 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/conv_test.h +94 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/depthwise_conv.h +80 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/dequantize.h +38 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/detection_postprocess_flexbuffers_generated_data.h +25 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/ethosu.h +28 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/fully_connected.h +112 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/hard_swish.h +30 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/kernel_runner.h +86 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/kernel_util.h +150 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/leaky_relu.h +43 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/logical.h +35 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/logistic.h +42 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/lstm_eval.h +541 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/lstm_eval_test.h +817 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/lstm_shared.h +150 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/micro_ops.h +158 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/micro_tensor_utils.h +56 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/mul.h +74 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/pad.h +27 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/pooling.h +142 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/prelu.h +39 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/quantize.h +37 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/reduce.h +65 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/reshape.h +26 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/softmax.h +67 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/strided_slice.h +40 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/sub.h +60 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/svdf.h +100 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/testdata/conv_test_data.h +37 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/testdata/lstm_test_data.h +579 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/unidirectional_sequence_lstm.h +47 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/hifimini/fixedpoint_utils.h +139 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/lstm_eval.h +216 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/lstm_shared.h +78 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa.h +38 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_add.h +48 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_conv.h +89 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_depthwise_conv.h +74 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_fully_connected.h +78 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_pad.h +49 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_pooling.h +76 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_reduce.h +47 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_reshape.h +44 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_softmax.h +58 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_svdf.h +39 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_helpers.h +64 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/greedy_memory_planner.h +170 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/linear_memory_planner.h +53 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/memory_plan_struct.h +73 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/micro_memory_planner.h +95 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/non_persistent_buffer_planner_shim.h +133 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_allocation_info.h +138 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_allocator.h +351 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_arena_constants.h +28 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_common.h +38 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_context.h +176 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_graph.h +79 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_interpreter.h +189 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_interpreter_context.h +125 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_interpreter_graph.h +110 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_log.h +42 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_mutable_op_resolver.h +708 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_op_resolver.h +62 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_profiler.h +140 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_profiler_interface.h +38 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_resource_variable.h +89 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_time.h +36 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_utils.h +162 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/mock_micro_graph.h +60 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/interpreter/src/python_ops_resolver.h +21 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/tflite_size/src/flatbuffer_size.h +30 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/tflite_size/src/flatbuffer_size_wrapper.h +33 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/recording_micro_allocator.h +125 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/recording_micro_interpreter.h +69 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/system_setup.h +27 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/test_helper_custom_ops.h +49 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/test_helpers.h +334 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/testing/micro_test.h +267 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/testing/test_conv_model.h +23 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/tflite_bridge/flatbuffer_conversions_bridge.h +45 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/tflite_bridge/micro_error_reporter.h +36 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/tools/benchmarking/log_utils.h +273 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/tools/benchmarking/metrics.h +41 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/tools/benchmarking/op_resolver.h +127 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/portable_type_to_tflitetype.h +75 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/schema/schema_generated.h +24644 -0
- xmos_ai_tools/runtime/include/tensorflow/lite/schema/schema_utils.h +33 -0
- xmos_ai_tools/runtime/include/tile_ram_server.h +38 -0
- xmos_ai_tools/runtime/lib/libhost_xtflitemicro.a +0 -0
- xmos_ai_tools/runtime/lib/libxtflitemicro.a +0 -0
- xmos_ai_tools/xformer/__init__.py +60 -0
- xmos_ai_tools/xformer/flash.py +190 -0
- xmos_ai_tools/xinterpreters/__init__.py +1 -0
- xmos_ai_tools/xinterpreters/exceptions.py +38 -0
- xmos_ai_tools/xinterpreters/host_interpreter.py +652 -0
- xmos_ai_tools/xinterpreters/libs/macos/xtflm_python.1.0.1.dylib +0 -0
- xmos_ai_tools/xinterpreters/libs/macos/xtflm_python.dylib +0 -0
- xmos_ai_tools-1.3.2.dev80.data/data/bin/xcore-opt +0 -0
- xmos_ai_tools-1.3.2.dev80.dist-info/METADATA +33 -0
- xmos_ai_tools-1.3.2.dev80.dist-info/RECORD +395 -0
- xmos_ai_tools-1.3.2.dev80.dist-info/WHEEL +5 -0
- xmos_ai_tools-1.3.2.dev80.dist-info/top_level.txt +1 -0
@@ -0,0 +1,395 @@
|
|
1
|
+
xmos_ai_tools/__init__.py,sha256=AEb1P1AVQeYBcBsImZNpg46juG7y-0EQU-eRVczLUgc,172
|
2
|
+
xmos_ai_tools/io_server/__init__.py,sha256=Wr8MHyIxhY80hnvwUH0AsE3BojqIt-AwbYBj-02HDiM,4801
|
3
|
+
xmos_ai_tools/runtime/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
+
xmos_ai_tools/runtime/buildfiles/aitoolslib.cmake,sha256=7xlnDRNVsEIxu929Nt887drbV104t_Nsye1Rv_FpasA,478
|
5
|
+
xmos_ai_tools/runtime/buildfiles/aitoolslib.make,sha256=D4GFs74BsWTuQT6R_yxXwR4LLH0pzyFiAXnGpe5hntI,253
|
6
|
+
xmos_ai_tools/runtime/include/flash_server.h,sha256=zVvpbkae6VYa1Ybqu2PPuq3PvAJ07VF9pvXwWvkUCRI,3328
|
7
|
+
xmos_ai_tools/runtime/include/ioserver.h,sha256=gEVBhuVLjwi9c00vHUKDEByibl6GVtSUpl5ePAk5GiE,1045
|
8
|
+
xmos_ai_tools/runtime/include/tile_ram_server.h,sha256=Ad3XKz6sihH3Ot40cMAJmbmRlDo_GVbP51tCovYLm7Y,1546
|
9
|
+
xmos_ai_tools/runtime/include/flatbuffers/allocator.h,sha256=7U_8vFjicWgq8yl-VXtF5JGX5mV7lXhS4aXkHI37XjA,2587
|
10
|
+
xmos_ai_tools/runtime/include/flatbuffers/array.h,sha256=j2V6WFRfES4N6psPb_H4weUWJl26r2ZHiEVRPFE28RQ,8770
|
11
|
+
xmos_ai_tools/runtime/include/flatbuffers/base.h,sha256=Pi7oYlQOlKDme988kgd1LMXr64lZRqxJPkzPn1Wr1wY,16397
|
12
|
+
xmos_ai_tools/runtime/include/flatbuffers/bfbs_generator.h,sha256=vn5ePtR60xYM0oEhh9Xy68wybGZ6NfFbZZm330-TIfI,1244
|
13
|
+
xmos_ai_tools/runtime/include/flatbuffers/buffer.h,sha256=FT9gSGA90PXLkloshKQmN9S0rtcxW1tPLlQqiggklRc,5217
|
14
|
+
xmos_ai_tools/runtime/include/flatbuffers/buffer_ref.h,sha256=m2uLb650Pt8wzQQiRGrxIMvi30Un5GQelwNV_0cXbyk,1510
|
15
|
+
xmos_ai_tools/runtime/include/flatbuffers/code_generators.h,sha256=vcJGHNCIahk6TMGwbfSnAXqpQke3D4VMHThRhxax7aE,8108
|
16
|
+
xmos_ai_tools/runtime/include/flatbuffers/default_allocator.h,sha256=gs8jDeenApTMxtNztQz_Jp_Yf4BeklgW2cQd7J9oUaQ,2380
|
17
|
+
xmos_ai_tools/runtime/include/flatbuffers/detached_buffer.h,sha256=38dBGfhEPRE52E3p8lSPcw2ubMPz8-gNduBFKA7RkrE,3047
|
18
|
+
xmos_ai_tools/runtime/include/flatbuffers/flatbuffer_builder.h,sha256=wOEi7ox4Qoug1L9bGj9xgFaG5iy_PbEX1raWjeLAhxU,50182
|
19
|
+
xmos_ai_tools/runtime/include/flatbuffers/flatbuffers.h,sha256=n52t7p0snOnNA3VvvSoxSnRiKErfGCAlQB1Mt0cxAG0,10362
|
20
|
+
xmos_ai_tools/runtime/include/flatbuffers/flatc.h,sha256=VvBoL6q9-25t8Wv7RWLyh-FvBBomlcP-6LSQ247a_-4,3511
|
21
|
+
xmos_ai_tools/runtime/include/flatbuffers/flexbuffers.h,sha256=DsfUAenO4QnxpkkImfzMfG9oAs63lyxisEICRfVn0sE,65450
|
22
|
+
xmos_ai_tools/runtime/include/flatbuffers/grpc.h,sha256=P3fVfTKpD9S_CchhT9z2gHw8-LYR9Go7bSafX9dH7QQ,9969
|
23
|
+
xmos_ai_tools/runtime/include/flatbuffers/hash.h,sha256=yO9ri3UffxgP53NkTzB11DpOLY5X0tLuTCg8rjh-AWk,3627
|
24
|
+
xmos_ai_tools/runtime/include/flatbuffers/idl.h,sha256=sgH2rqxqkSEqYAVlpmk1ztE89C-Z90uSbYPqga4ffUQ,45441
|
25
|
+
xmos_ai_tools/runtime/include/flatbuffers/minireflect.h,sha256=F9WYodgqaJqo0lKxTgI2GAvNZ_pn1uA3bLZcchE9gAw,13523
|
26
|
+
xmos_ai_tools/runtime/include/flatbuffers/reflection.h,sha256=_6RkZ7ORxaDA9jPiROY1PQAWMUGk24pIx1gpZjrA3XI,21226
|
27
|
+
xmos_ai_tools/runtime/include/flatbuffers/reflection_generated.h,sha256=WUwLW5mYE8Veto63_4iGKu5x14rhZ_R7ZN_7JfHtxWs,54402
|
28
|
+
xmos_ai_tools/runtime/include/flatbuffers/registry.h,sha256=T4KikRZ8Z6fwkdkK9wi5OrHWbT76vcPk5BEssef1pmI,4475
|
29
|
+
xmos_ai_tools/runtime/include/flatbuffers/stl_emulation.h,sha256=KMGhQEzncgShaWXmUBRSWDf_TQ7UZdySJJXtFc4ZKpA,18658
|
30
|
+
xmos_ai_tools/runtime/include/flatbuffers/string.h,sha256=6zuUUDMmsmaQ8Ywo4a6epXm1hNwA8cQ-VhPzTjuaPRQ,2075
|
31
|
+
xmos_ai_tools/runtime/include/flatbuffers/struct.h,sha256=PotdRQnBi6mzNJZZuVDnJWQVXBgj400-u1PzUlHROGQ,1576
|
32
|
+
xmos_ai_tools/runtime/include/flatbuffers/table.h,sha256=CrfFB5GD90f8bR1OSukG33teCVMB5H52rCU0NOpLTh8,6069
|
33
|
+
xmos_ai_tools/runtime/include/flatbuffers/util.h,sha256=g2UAK0Zm5OMI6YR3Hkd96ARfoytg0Ug_rY3B4pUFW_k,25211
|
34
|
+
xmos_ai_tools/runtime/include/flatbuffers/vector.h,sha256=NotBWAMW02STpmKXXbh9k96N9UT4pxBi3p2kmM1yQq0,12166
|
35
|
+
xmos_ai_tools/runtime/include/flatbuffers/vector_downward.h,sha256=Oi3n4zq9jKQX-4VAHUOquL6AOOjE8iXgT2_xy-6igFo,8037
|
36
|
+
xmos_ai_tools/runtime/include/flatbuffers/verifier.h,sha256=n2jV9sUs7vNafzZfnRmHlwa_1IRyTqpAcAbxmvyCbXQ,9788
|
37
|
+
xmos_ai_tools/runtime/include/flatbuffers/pch/flatc_pch.h,sha256=NxlfeyZtf-PCL0yfmsJDEs_VMbrjSChmF90MoHoRzSk,1119
|
38
|
+
xmos_ai_tools/runtime/include/flatbuffers/pch/pch.h,sha256=XV11Mx5VHBJUdvDufl3rdZUng7UELFIBFsQzqNnY-tw,995
|
39
|
+
xmos_ai_tools/runtime/include/lib_nn/api/TransposeConv.h,sha256=dGSevVX6WC_MBMsghBxZoJ0Zf9KkUMkQ9WGZr5FpfJI,663
|
40
|
+
xmos_ai_tools/runtime/include/lib_nn/api/add_int16.h,sha256=OlmGl-hRSmxAnmg05dT2xGFHm2tRjN0uquegROqZTMs,875
|
41
|
+
xmos_ai_tools/runtime/include/lib_nn/api/add_int16_transform.h,sha256=ETslzKHYjDqy3B59HLCi9xdv66PRvHBp5xRPMqYHg2U,1377
|
42
|
+
xmos_ai_tools/runtime/include/lib_nn/api/dequantize_int16.h,sha256=qojIhBFX2zgj5cYxNhS3riH2NniJPlj9D2wSRf8djQY,753
|
43
|
+
xmos_ai_tools/runtime/include/lib_nn/api/dequantize_int16_transform.h,sha256=CtIQPYiUWN7PcbPit-HoSMab_1gAT4NUcIRUs-lcjuA,1088
|
44
|
+
xmos_ai_tools/runtime/include/lib_nn/api/expand_8_to_16.h,sha256=7-HFoUFgiOjgyGluHoBrIPbLPChGmkkzcMKW3teXMh0,145
|
45
|
+
xmos_ai_tools/runtime/include/lib_nn/api/multiply_int16.h,sha256=gBgXPvMYhZ9ZIqKthWKSeWmLPwhFCy6eKKmj0f1M2JQ,1551
|
46
|
+
xmos_ai_tools/runtime/include/lib_nn/api/multiply_int16_transform.h,sha256=Vaycg971CZkR9wHO1k3-DxHxp026hgDYqyfZI_YNSy4,2454
|
47
|
+
xmos_ai_tools/runtime/include/lib_nn/api/nn_api.h,sha256=UhLAFqf245v5XdcAohZOInOcbsRqJSHGCGqI1iBmu3U,219
|
48
|
+
xmos_ai_tools/runtime/include/lib_nn/api/nn_bin_types.h,sha256=DTFX2ecfzwl-_tHlqTR2xypgK7oxmvVWc58eJqJK2rE,325
|
49
|
+
xmos_ai_tools/runtime/include/lib_nn/api/nn_config.h,sha256=KFoA5zyOTTHi6x-qDuIWkF8wAz4Gc4BdOBgUzOArOD0,11558
|
50
|
+
xmos_ai_tools/runtime/include/lib_nn/api/nn_conv2d_structs.h,sha256=Kfyq3bD1aLcSnWTB_cijU_D5ThGol5utJ1k-WsjqeMY,2268
|
51
|
+
xmos_ai_tools/runtime/include/lib_nn/api/nn_image.h,sha256=gz7NyxmZACZiDED0wT7px2qjEEMcUwfa5TjeOUmYzL4,514
|
52
|
+
xmos_ai_tools/runtime/include/lib_nn/api/nn_layers.h,sha256=FqXpBLsch_IDH1ssRsDO4zt3N8L8v-PbMddbiwY6DS4,10509
|
53
|
+
xmos_ai_tools/runtime/include/lib_nn/api/nn_op_helper.h,sha256=VMnBVEcgH0wtiiV91JjtFRG4xkCI0m7WrikEmU6ulss,3716
|
54
|
+
xmos_ai_tools/runtime/include/lib_nn/api/nn_op_utils.h,sha256=iTZcsp941d4fT574C_aUsHDAkLAWYxoFM4EjW7ypm94,4741
|
55
|
+
xmos_ai_tools/runtime/include/lib_nn/api/nn_operator.h,sha256=Nj4jiXVHlnFjVBtV7mCGulTzSyNwCIpitz8Ao9kSIsU,337
|
56
|
+
xmos_ai_tools/runtime/include/lib_nn/api/nn_pooling.h,sha256=DUJNIhtabaMJvP4m46BICDNY2nCSXWKdfE0AUu7VhaY,24456
|
57
|
+
xmos_ai_tools/runtime/include/lib_nn/api/nn_types.h,sha256=Fy88rGmjWcZuJTjSY5Z_VesbW54cqNGbZuxeiJnvd1Q,1986
|
58
|
+
xmos_ai_tools/runtime/include/lib_nn/api/nn_window_params.h,sha256=NeCS7hhE7tdmc3TwTvmBR-E5EXz969gOzisoITwdV9o,1660
|
59
|
+
xmos_ai_tools/runtime/include/lib_nn/api/output_transform_fn_int16.h,sha256=5Na926JTr8Sg0KfeSt3fapzJQdEX4Gmf_oXM_oGsFvM,2122
|
60
|
+
xmos_ai_tools/runtime/include/lib_nn/api/output_transform_fn_int16_kernel_transform.h,sha256=VdNi6qB11_cYmoIJ6I_TIJw1l9lH-g1dMAqWyRyaouQ,1555
|
61
|
+
xmos_ai_tools/runtime/include/lib_nn/api/output_transform_fn_int16_mappings.h,sha256=claoCFq-IVmD1rDCjMRruum0u1-ADFC-5KE4FPLwLoU,482
|
62
|
+
xmos_ai_tools/runtime/include/lib_nn/api/quadratic_approximation.h,sha256=rQGweJdnfCBB1y3hfMCqQzM_PFqmDomLPVn57qkWkAg,2763
|
63
|
+
xmos_ai_tools/runtime/include/lib_nn/api/quadratic_interpolation.h,sha256=qNguTb1oiAJ_n1_wnSFXD4BEE8PTJqePph6FVnkrwac,816
|
64
|
+
xmos_ai_tools/runtime/include/lib_nn/api/quantize_int16.h,sha256=THKX9qg6ob1Cj4LiRmqlogaEAozc2qEIiENBmRS8rgs,736
|
65
|
+
xmos_ai_tools/runtime/include/lib_nn/api/quantize_int16_transform.h,sha256=Rg2XOvVL1P2UneJ33X9b-ATwaCIiNAyp_ipdAu1SXyk,1029
|
66
|
+
xmos_ai_tools/runtime/include/lib_nn/api/version.h,sha256=P0otpsAVvhiPNpXQu6uJUrjygoOTaHEJlIegIMyj_W4,303
|
67
|
+
xmos_ai_tools/runtime/include/lib_nn/api/vpu_memmove_word_aligned.h,sha256=-OgMM0JMG1kIlL6YSiEg-6o6t43t1LUDwAS_inW-r_8,579
|
68
|
+
xmos_ai_tools/runtime/include/lib_nn/api/vpu_memset_256.h,sha256=u71fu0EldAXMiMfQ-il9pN9ZXUkrcSp7kiMcJRnESRE,1967
|
69
|
+
xmos_ai_tools/runtime/include/lib_nn/api/vpu_sim.h,sha256=3S1_2eSaEj2q8nhFuRiCefQhwTeYpfothuFu0fC54_s,3811
|
70
|
+
xmos_ai_tools/runtime/include/lib_nn/api/xs3_vpu.h,sha256=xuEpNayaSWeEIoL1--EfQAXkr4TidwDASFYgbshJ-Mw,6227
|
71
|
+
xmos_ai_tools/runtime/include/lib_nn/api/xs3a_registers.h,sha256=5i6Tue1VplRI2VlIes-gaD2BXOKreuUit51OYTsbgFs,139774
|
72
|
+
xmos_ai_tools/runtime/include/lib_nn/src/asm/asm_constants.h,sha256=VB8pk_H4vI4S18xYfPFCOGZoLG6S0FYW5uVfG3u9glU,1018
|
73
|
+
xmos_ai_tools/runtime/include/lib_nn/src/asm/window_op_plan.h,sha256=4I5u3jkbPOXQnj073h24346uJTYApf0A2oegNc0TKjc,704
|
74
|
+
xmos_ai_tools/runtime/include/lib_tflite_micro/api/fast_flash.h,sha256=IFDYtVg3AodzlFEQw_MFWs2fNQ43aMEXNVwpaG27sko,1984
|
75
|
+
xmos_ai_tools/runtime/include/lib_tflite_micro/api/inference_engine.h,sha256=GkmCI01aywc3docA7SV-11pSi89URw1ErxbaSkO9EIs,9303
|
76
|
+
xmos_ai_tools/runtime/include/lib_tflite_micro/api/memory_parallel_transport.h,sha256=P6o4-yWfE3GW_R08zf_kTsg-h4589eAhg9lNvJA7ZCM,1932
|
77
|
+
xmos_ai_tools/runtime/include/lib_tflite_micro/api/version.h,sha256=zwy-Yay7mJg09OQpzKyNfITtjfe0Jy3IgErrPdH31I0,318
|
78
|
+
xmos_ai_tools/runtime/include/lib_tflite_micro/api/xcore_config.h,sha256=6KOImWQXzY6FXIepK746QlkQllmCo3eH5FD3Vp1x7PQ,519
|
79
|
+
xmos_ai_tools/runtime/include/lib_tflite_micro/api/xcore_device_memory.h,sha256=bLWcRDNrzClLh8_eR3XRRz3sA2pEAzzxGLDoPTsNp8A,1917
|
80
|
+
xmos_ai_tools/runtime/include/lib_tflite_micro/api/xcore_shared_config.h,sha256=qv3cxHGUHDxdR0xlfdd0qWDOd4V0vwPkmYEVka_j6xw,1015
|
81
|
+
xmos_ai_tools/runtime/include/lib_tflite_micro/src/thread_call.h,sha256=KNG-3gNWMSonzYTGbk4L0kT8WU9JD0bOzlk8naz7JO0,4965
|
82
|
+
xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/conv2d_float.h,sha256=XfVVWAKhbv6nByOzO1j6WA4oQ4RTX3PvYx22f-_3JFA,7681
|
83
|
+
xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_common.h,sha256=HhUfwS9tq59jyXx79vqHlfEkk2hnRMkFXd2atPvoHhg,371
|
84
|
+
xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_custom_options.h,sha256=lC4Tw1Pxxg3zOXRdqNNtokuU-_cX9TTkYmGLe47-9dQ,630
|
85
|
+
xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_error_reporter.h,sha256=_NIzvBYMqlwJexYESP5t5JXpxYTt-ZKq-1AdqAB9-Sc,812
|
86
|
+
xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_interpreter.h,sha256=-0BNn65tzxWgNnHLolCYyUYhboL9nN3ksKni3BjH6QU,1801
|
87
|
+
xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_ops.h,sha256=WKen_NUF49bZShYfKIUYh9FV050ZbZZh6mOTurP53c8,2663
|
88
|
+
xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_profiler.h,sha256=Ytqbj4TsbhZrtl42I2dgLyeloLi-1vZwjysIoOkgX9s,1239
|
89
|
+
xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_utils.h,sha256=CkxEhyN7i2rmlk_ua18XH1XDV_E4mS2u3Ph48mIhN7M,4747
|
90
|
+
xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/xud.h,sha256=aQNbN6EvpVQm-OkgE_JGn2SeqYE_sKtwWZebu50IwnE,20701
|
91
|
+
xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/xud_conf_default.h,sha256=cFjrjT1T7X4BerX6mRRCQwBnwDPX2553q5AzYhvzrhc,251
|
92
|
+
xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/xud_device.h,sha256=iUS2WaT-BBZbcL4Geso3Kv154VNbVpWc1yExb2xNC60,3383
|
93
|
+
xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/xud_std_descriptors.h,sha256=dHaRCVL67CGZ1qWx5VD0m9mZMaErdsSC5xhwNciftjc,10054
|
94
|
+
xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/xud_std_requests.h,sha256=T4DbYl6hczpo6iEA4qK1N-QNEwAQfqcnBbqW2GBBPf0,6255
|
95
|
+
xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/legacy/usb_defs.h,sha256=t0HDJSrzPInERpOEPgw59YRej3EiS5Nin-2BhF7itic,142
|
96
|
+
xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/legacy/usb_device.h,sha256=HKKPtzh5-DxUEwH7rRf98Yk7VfEFMCW1FyvYEknhy0I,137
|
97
|
+
xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/legacy/usb_std_descriptors.h,sha256=IJ6T59J_KZuuxzFP48l_4SPZeHo5rNdEHOl12vt8cCY,146
|
98
|
+
xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/legacy/usb_std_requests.h,sha256=pBMeriJq6qpN4hHp6TySfyClRYbdWf5uQ8Lp4aX33wE,143
|
99
|
+
xmos_ai_tools/runtime/include/lib_xud/lib_xud/src/user/XUD_USB_Defines.h,sha256=q5OKnewjWOXGUc-wYwMIwkfYAFUO5bD8Gy4f3xd1qqE,3265
|
100
|
+
xmos_ai_tools/runtime/include/lib_xud/lib_xud/src/user/class/hid.h,sha256=Z1VS5sLUEbgB44ZVUD-DUdi_VRQ2edB6Y5YLdI3xXsM,955
|
101
|
+
xmos_ai_tools/runtime/include/lib_xud/lib_xud/src/user/class/usbaudio10.h,sha256=qym5j4vytV5gMPHWCKagtCT6VD7K3gIxNkEggldgeRw,1007
|
102
|
+
xmos_ai_tools/runtime/include/lib_xud/lib_xud/src/user/class/usbaudio20.h,sha256=YlCWHhMXTfKKZ5e689dq5O25auJODxhKKa2Sz2J-2XA,13499
|
103
|
+
xmos_ai_tools/runtime/include/lib_xud/lib_xud/src/user/class/usbaudiocommon.h,sha256=jV7F_4wN38dCKcJne_ZlPely9_2oKJR13Cya9yWaoGw,6690
|
104
|
+
xmos_ai_tools/runtime/include/signal/micro/kernels/delay_flexbuffers_generated_data.h,sha256=9YvsdCK2GaMD7havC3YEHguMHH1ROrGz1NnsOwRhgAI,1053
|
105
|
+
xmos_ai_tools/runtime/include/signal/micro/kernels/energy_flexbuffers_generated_data.h,sha256=m7jvupPj7uEHzG_uTkkKjRYSAynqV6oL23gIcBFpuhc,1316
|
106
|
+
xmos_ai_tools/runtime/include/signal/micro/kernels/fft_flexbuffers_generated_data.h,sha256=jTvkmewfUSZ5DQgxpigXRd1xkPoGNNVU96GntWNkqic,1625
|
107
|
+
xmos_ai_tools/runtime/include/signal/micro/kernels/filter_bank_flexbuffers_generated_data.h,sha256=MdllFaLE8y97ujPkck-k9cFwyYGyc6T2SbxGqQHauJk,1191
|
108
|
+
xmos_ai_tools/runtime/include/signal/micro/kernels/filter_bank_log_flexbuffers_generated_data.h,sha256=wuriQsyNQFxRWVRargGRqHM8FqWIYZ6ADNTxJPf6-Ao,1301
|
109
|
+
xmos_ai_tools/runtime/include/signal/micro/kernels/filter_bank_spectral_subtraction_flexbuffers_generated_data.h,sha256=wQYucdfNENwNuNWSyCZ2-Zn2efQ1h15dNCXaDVL2BuY,1345
|
110
|
+
xmos_ai_tools/runtime/include/signal/micro/kernels/framer_flexbuffers_generated_data.h,sha256=pm2lVOvXwztVw5VWPkkh71Ngip7Rd2tr_FtHKxfxQ2k,1136
|
111
|
+
xmos_ai_tools/runtime/include/signal/micro/kernels/irfft.h,sha256=Oy_d-zsbE69ooP4a6mLqdL768EBCuCItYtn7Yj1PDFY,1095
|
112
|
+
xmos_ai_tools/runtime/include/signal/micro/kernels/overlap_add_flexbuffers_generated_data.h,sha256=t0ynkCRBBGDNMWl6nKLU4RO9i0wfjIkc-UtowGWMKGU,1171
|
113
|
+
xmos_ai_tools/runtime/include/signal/micro/kernels/pcan_flexbuffers_generated_data.h,sha256=9Gt6f_apMN_8uW7h5FE76taH817WE2slNWowOdxUdQU,306
|
114
|
+
xmos_ai_tools/runtime/include/signal/micro/kernels/rfft.h,sha256=m1pezZigbNjfboxD_V-4GTeB8nQFQlOCfu3SWrrpqn8,1088
|
115
|
+
xmos_ai_tools/runtime/include/signal/micro/kernels/stacker_flexbuffers_generated_data.h,sha256=WaSYWx8wjSMtQaBNfb14QCPF1HIO0VCIj9x6gBLe7rI,1193
|
116
|
+
xmos_ai_tools/runtime/include/signal/micro/kernels/window_flexbuffers_generated_data.h,sha256=IqGeP-b37AOmpdnKc4KQWqPvohLU4Kt_Zh9_a5EBscw,1146
|
117
|
+
xmos_ai_tools/runtime/include/signal/src/circular_buffer.h,sha256=ZxaZIqt98Q5DJVaM41NY6nmnI3L7Ym_zpmAsE1h71Ys,4644
|
118
|
+
xmos_ai_tools/runtime/include/signal/src/complex.h,sha256=8Fvagskm2kCm3kr10PAdHrKUM83X88Mk5wUlYyAI9Vw,972
|
119
|
+
xmos_ai_tools/runtime/include/signal/src/energy.h,sha256=FAdZc7hcZAYI2KKl92FhiVbKL3GSwvO9QiV9dLPxPYc,1394
|
120
|
+
xmos_ai_tools/runtime/include/signal/src/fft_auto_scale.h,sha256=MgE9ZwbwjoAJ0PgcsaTGTbfSu1l56cNtw7-9A3eY4XI,1250
|
121
|
+
xmos_ai_tools/runtime/include/signal/src/filter_bank.h,sha256=54sS6cZmYlHT8RMa3llDgE4a8LLi438bzswv3N9UPjg,2778
|
122
|
+
xmos_ai_tools/runtime/include/signal/src/filter_bank_log.h,sha256=GfTKFhx-j8Vq7-mZXS-GwCw-iOyJbcyiOIhkTtu2Jbo,1459
|
123
|
+
xmos_ai_tools/runtime/include/signal/src/filter_bank_spectral_subtraction.h,sha256=cTCmzZVqIrFc-qthB6nRtCM3fwUuMhI5wQp3F-BGFL0,3169
|
124
|
+
xmos_ai_tools/runtime/include/signal/src/filter_bank_square_root.h,sha256=sED0F92-MNFZWimuRMOTgRmUr-UwvWjjDkWRIMhcEpA,1309
|
125
|
+
xmos_ai_tools/runtime/include/signal/src/irfft.h,sha256=640nr78l_TwXbr01Z5-oq4N_IvL2d8jG06_PciD6yvI,3251
|
126
|
+
xmos_ai_tools/runtime/include/signal/src/log.h,sha256=1aeMBy5U0n0_Qf8xYbRmraPpShQfGl9CRyA6GWNqVzI,1060
|
127
|
+
xmos_ai_tools/runtime/include/signal/src/max_abs.h,sha256=Y_vDyZVWZvJB-43-LSF4dddOKMhJQjXWZRnJ0bu8fGU,1067
|
128
|
+
xmos_ai_tools/runtime/include/signal/src/msb.h,sha256=aUE2KEiF8_YRX9PzOdm8O3-EGoIqts7Y8QT8VyqAT3M,1062
|
129
|
+
xmos_ai_tools/runtime/include/signal/src/overlap_add.h,sha256=fhZYgFdooMzWsUhQhRoWDLetfZMsogHaHq07gpN_eOw,1993
|
130
|
+
xmos_ai_tools/runtime/include/signal/src/pcan_argc_fixed.h,sha256=vmoI2BhHY7BUnO0lpEdNanWTzEESX6CEkJyPeTmPnJk,1440
|
131
|
+
xmos_ai_tools/runtime/include/signal/src/rfft.h,sha256=PNEyLf7xqkLYgrRXNORLBpnoThQotirhRwz9DVcBk1Y,3380
|
132
|
+
xmos_ai_tools/runtime/include/signal/src/square_root.h,sha256=PMUbn7Be8YG0PJue2XfAX0lu2X4RY2eUFW4KrbCuPv0,1040
|
133
|
+
xmos_ai_tools/runtime/include/signal/src/window.h,sha256=G1r1FzJ_F3zk4gY9ReX1JZVHhhYoCb8B6gNu07O1XAo,1190
|
134
|
+
xmos_ai_tools/runtime/include/signal/src/kiss_fft_wrappers/kiss_fft_common.h,sha256=WYYFu1y-7apafuidNabLq6HnWFD2ZXRpO28ow-pMVGo,1766
|
135
|
+
xmos_ai_tools/runtime/include/signal/src/kiss_fft_wrappers/kiss_fft_float.h,sha256=mNHu-YgHEkT-OxfTnX-j7FsEZVrJvCnITvoNM4ld5WY,1243
|
136
|
+
xmos_ai_tools/runtime/include/signal/src/kiss_fft_wrappers/kiss_fft_int16.h,sha256=K9FpvRavT--2YBRzkxdU6_pqehICUo2BB_xfdu-1QVU,1250
|
137
|
+
xmos_ai_tools/runtime/include/signal/src/kiss_fft_wrappers/kiss_fft_int32.h,sha256=4Z-yubujGr8-E4xuRmXCFP9KJntWvybT8RGeXYL8ERA,1251
|
138
|
+
xmos_ai_tools/runtime/include/signal/testdata/fft_test_data.h,sha256=eAGqMIeGhmlV72ymXguaV5ClJvd7TiNE1u4zzT-VT7Y,1695
|
139
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/array.h,sha256=HBRkmw8v96eWnplbANGQDkAMhLAA3b_8OElU4g5frB0,5192
|
140
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/builtin_op_data.h,sha256=a_Y31SN-IHSfPSPQ0zTHy-_ZFIfYWiCHf_6x5zaNZ6k,921
|
141
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/builtin_ops.h,sha256=awlq6JNdpd9sr3QvHqb5EYeiGAqmypYowlWJFXzJB8c,8236
|
142
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/context_util.h,sha256=W9w3hF_MU76P4eNLw4OeHl17uJTbVJDcQF3taMnQSJw,1965
|
143
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/portable_type_to_tflitetype.h,sha256=FQ4eObyhU1Dr_lhPBGd5jIgrERgYHdHvuoSc3DphjQY,3083
|
144
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/c/builtin_op_data.h,sha256=diH_vDptfFimACeoyhfMXTSUCFFTG_rN9WxGaKNby9A,861
|
145
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/c/c_api_types.h,sha256=25MVNrukSHCG1-l19sbQTYsy4NDFJTiVwHmlAw-Zr5I,965
|
146
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/c/common.h,sha256=8dWHvE3jaBjwFHY6syaDX6Uj8zhd2hhHcGdL4K-_1CY,1173
|
147
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/core/macros.h,sha256=8fZFtTWlWjx8sM70cDqu6ViXtGKoA3n4q3DR2_1Lg0M,2759
|
148
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/core/api/error_reporter.h,sha256=Sn9kDYtK-s_NOZ-B3l50293J5ghnsVlXNHxF-mRWKWw,2971
|
149
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/core/api/flatbuffer_conversions.h,sha256=Z6lV84mWXH1wVoKJ7GZmjaumKLA3n62YOuCHq2jH5dw,21293
|
150
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/core/api/tensor_utils.h,sha256=9kHs1PmX70Vz7JdbNZuG12Tph0dwKkhKr-tA3Ju6zoY,1028
|
151
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/core/c/builtin_op_data.h,sha256=2YkHwO7KqG9aJtKCIhC5nI4FjNYgRHPa-zr6s46_F-0,16326
|
152
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/core/c/c_api_types.h,sha256=-XvGicMx_AKeTX-MZ5-7s_Pq8-4oY3gaRMjqY61eVAo,6328
|
153
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/core/c/common.h,sha256=CgWZanWNv443Wfl-yXE1cibyX8QyQW5Nr3T0CU01ooE,68785
|
154
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/bits.h,sha256=ECUf1QiZa_Cj8K807tCT0-24MSQgTBUE2znzWYegFaA,2916
|
155
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/fft.h,sha256=XXMKYjdmAn3CMmpRMcZb5uyMbJAPNKLQXXJqlHXqtQk,1381
|
156
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/fft_io.h,sha256=Uii9_PJ4ArpvGzHHDyG-FZHuMmIg3pRS8vOczAXHQkI,1210
|
157
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/fft_util.h,sha256=vWE9M9s3laQ6sn4hVfakdhHsyDxuxv8q4b7DOKSeySg,1219
|
158
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/filterbank.h,sha256=RhWSh6lVyOrRDXO7XpTBhnn5qAVFTwnz9pebBnj-Mz4,2252
|
159
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/filterbank_io.h,sha256=WqIh3f-6ulxnw4evS87I9EdjUnOK-Qg53YKMAui_VfM,1308
|
160
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/filterbank_util.h,sha256=Y7r97EUL_Iknj9DJOmAV0QnTjwTsNXQ6siLEcfpuMwI,1754
|
161
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/frontend.h,sha256=RqwxOFcVjqmRSPZI1PPEX8oOeLWHV4grW1JIAzN6j-0,2585
|
162
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/frontend_io.h,sha256=a3PeDiEHVlOnPWGpjkeP8Ry4svBnrLWs3ZHel0qrYcA,1172
|
163
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/frontend_util.h,sha256=pGQy-y39CvmFo9IO3i9snjwFAVAP0VVJEAbIZ8Sc3OE,2103
|
164
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/kiss_fft_common.h,sha256=0i5VOa4XyeOWJ0BLBhkoxyVKa5Mcr7bqAnFQEuhpPPo,1818
|
165
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/kiss_fft_int16.h,sha256=OtSU5Q-rX1qeeRopl9KebiUK587uYMFf5hRvVHriAng,1354
|
166
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/log_lut.h,sha256=OLwJbiGvhJSGYIDWZDhFTaI4LukQ7b1KNrd-uegko8A,1282
|
167
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/log_scale.h,sha256=LJDWvF_VYg9LMOnOth_vaJusNYgZtWsrKuw_gSA2MVA,1325
|
168
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/log_scale_io.h,sha256=7cPs7ZCFiCC0l562xZdq-O1JysIAlRi-1iBbmbNNU8w,1180
|
169
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/log_scale_util.h,sha256=w9CWsCijyxIwxolcxRISEUx5qCXtkZlse5NCk_gaJBo,1511
|
170
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/noise_reduction.h,sha256=9fm4wwP5woNXv1uheGe0g-4KK_nBcy3HQINKfKbOZqo,1465
|
171
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/noise_reduction_io.h,sha256=eFfPx9Cn63cUD4ZV1dFEVzF7MRHYcMfgmkwqQaMV4xY,1383
|
172
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/noise_reduction_util.h,sha256=4C0J1Yc-Wlgm2h1ztqlyr0nd3CO1TbckXlKkugekpEU,1911
|
173
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/pcan_gain_control.h,sha256=ggqx5MhxJmHAr0xaV5VSucr7OtbqYiMpAopvlDD75XU,1466
|
174
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/pcan_gain_control_util.h,sha256=lxXXucA65TTyj6RZjaJmIbmcF6BJooCZ7X6miph4duU,2208
|
175
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/window.h,sha256=5MolgRHCsP-9nnAsuVht4JXFyGzKVwmhPBuF3HkCYHU,1476
|
176
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/window_io.h,sha256=gR7TO_YI6Mgu83A6imdEiJ4sNfGMjkGxLmCq0lb2lAo,1237
|
177
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/window_util.h,sha256=0GnfFOwHjcxF9hxBmPwFDw_jdDmx_TwyhABGiljmJaQ,1565
|
178
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/kernel_util.h,sha256=e0hZavKHQCLb2PX1PAZrdYgr6bDbhalTT_rnRkFCtd0,14255
|
179
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/op_macros.h,sha256=BKqR9eM421HLoKn9hHIu6AbtQf5NZEVb-kS_OgvQL9E,1446
|
180
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/padding.h,sha256=N4MRLEoGkv_9x1STOr2q2NDciSnQgtm7kYUoXGsk4xE,5023
|
181
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/common.h,sha256=BQiD0sqPn6qENyiqxuwpxbUvb7tEXivfKSc5r8GYx28,55506
|
182
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/compatibility.h,sha256=LmxnXnQCUl15rvUQi0ewM5fq0OV5IcnLM38VCRa5cl0,3922
|
183
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/cppmath.h,sha256=5wWL9VJGANwRl0qYOfu22Ehk9iVU4GCv5E1S5jYP370,1443
|
184
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/max.h,sha256=EcaxPG6sWr_baDY6FZMMyqIwy9HVhlP1tLr_79jPYkI,1140
|
185
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/min.h,sha256=HmIHvVsmxDjViXHdmXhIMN92M2LkOyrSU8_7ZaogsWU,1140
|
186
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/portable_tensor.h,sha256=Ul0xcKj3yf_XU3w--HNAqknynX4fXVYuLWeXCFD9HLU,4939
|
187
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/portable_tensor_utils.h,sha256=8Kw6ZJB-uL0KQqU4XUx2mORfci_kokK1yKkTxVRbWZQ,30078
|
188
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/quantization_util.h,sha256=Fan2XMtVyYpn-1ZWDLVpk1nUb9nfQoFccerjCAolPr8,13499
|
189
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/runtime_shape.h,sha256=fZMK19y1SZSXSA4aVOwfkPf1dB1AQqLB635bvOxkEws,6074
|
190
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/strided_slice_logic.h,sha256=fMXNSGDJSOCpaIqs3A75M1klE3vvBe3ej3S8Vp3cbxA,9056
|
191
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/tensor_ctypes.h,sha256=FkrU4658CKIikDEbgWAPzAE84bgocSUfaVvuEfiE7hc,1538
|
192
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/types.h,sha256=YzznGCs8s53aU_GVrBirc0V73UFCo1JIMb_aJo0Lk2Y,36848
|
193
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/optimized/neon_check.h,sha256=sJOpiGhIXsdtkEfXOi7mY4LZ5i_-lgbaHd_GUZaYCMM,926
|
194
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/add.h,sha256=JWJIcKUv_X8-0YluqX-2FDIDd70LLXvU9M4sGB6myHc,25374
|
195
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/add_n.h,sha256=AyFGnasYnzsau47OT8JlyGRMbyfn2DQHYCj9U1ZE8fY,3520
|
196
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/arg_min_max.h,sha256=W7t2EWYS57c_7oXlfgJjRHFoNV4BkJ2ZAlCWospOb_8,3183
|
197
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/batch_matmul.h,sha256=GvNnA07Zbi_tOOA9m1u5hz6yDD_71Fb1esBUI0uA0tA,12041
|
198
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/batch_to_space_nd.h,sha256=2z78ivg4arm57dmti99DGwn5Nfd5hTlnjOcoBsTd5ZQ,4111
|
199
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/binary_function.h,sha256=TU-7-p3-xMlRngZasfAUD5Ijaug6VZDp-Zp0xzR1J98,3790
|
200
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/broadcast_args.h,sha256=3dzAuggQTrJzM4Q3dDzEM0peEz82EZc68tMzUv3_I5s,2239
|
201
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/broadcast_to.h,sha256=KVFCVf75c__4QsZisUrm4Mc3fiDDxAes1YuZZ2Gokmo,3881
|
202
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/ceil.h,sha256=giJnL2LtRIAT-9377B_4v8CIy3W33F5CfFN_afTRI74,1345
|
203
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/comparisons.h,sha256=2O_D_ohfcOqg_juUExjlALU1aSrBpDCdnByOQhqmk9k,13169
|
204
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/concatenation.h,sha256=nhAn_iZVV7WoRU5FJDomJAmjGszfZb2VJ6iHAUUeCwQ,5541
|
205
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/conv.h,sha256=-R2xFBjC19iY9SlBzdfyfsUvWDB6AjO7PuZ5kTPU1Vk,13831
|
206
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/cumsum.h,sha256=EqLUdSJJLKBX95_9vOWP6zBJ4dtCbYqUI0N2CS_y0xo,5929
|
207
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/depth_to_space.h,sha256=Llk3HSuMAZIrdf7Wuf4UC4jmzHrl5ATE0MBO3XJTko4,3166
|
208
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/depthwiseconv_float.h,sha256=BbcDpbrrEQzs_kaulkYgfMY6XJQaLbr6dNIXIdZ26g4,4631
|
209
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/depthwiseconv_uint8.h,sha256=vf-WTw3R18Eko0l4Dbinoa8cyLmI0f4qHOPl2akcNRk,15658
|
210
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/dequantize.h,sha256=PQc_ATFx5tKX-ly3G-UAF0OP_FZi-rYTvxC1pTzlNOw,3039
|
211
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/div.h,sha256=3Gb2wOmD-i1tppZB_zNaZQhwKeTkUGhT-sbLFtDV9Ek,10954
|
212
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/elu.h,sha256=nsTANTWYUkssXLdr98D_Sh-wW2su4kVOxWznwICP7ag,1424
|
213
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/exp.h,sha256=cr5zKtacZWhY73GhJOmLRU0uCaW1V6a_6dCGSBWc85I,1357
|
214
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/fill.h,sha256=kS4aKdIzd_P3FEcviQnLyGJzI2F1B_5RI61plBLZoRc,1365
|
215
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/floor.h,sha256=OsS7ELBY0jzopAI58A4G77TdBN_zHCJe0E9TW8vyJlQ,1382
|
216
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/floor_div.h,sha256=SwA0cPMVDNu5p4pm5t9Y3PNhq7shaWdFiE82rV-3BCw,1274
|
217
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/floor_mod.h,sha256=OKm4ziXuCRNoXGqcu_PF532Ohyeq4Pu_CdllroMpS10,1541
|
218
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/fully_connected.h,sha256=WExyO_VP7TxEjRCabUYolw6mx-Rm8aye-b_whlr304Y,14905
|
219
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/hard_swish.h,sha256=eMcoLFswUpU1Wq3KQF_SHnRfY0797Oc4Y_CIaxv0yEw,8297
|
220
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/l2normalization.h,sha256=HGCQWDjNuTlxBWpjtrlX_aOIsJqilTLRdM95fI3FDTs,3779
|
221
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/leaky_relu.h,sha256=wmN_wKYdc_uRgwMndNlk0Ub_sxirPZLvXGCft1NYCxU,2929
|
222
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/log_softmax.h,sha256=HFkZGy7wqoiDWrQuZUS28WyFCsry3aRasVvo3quY6w4,10888
|
223
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/logistic.h,sha256=XOA4X58ngnxnHIwtX89ZH2dDr_WVH6S4qX76cgWNpBo,5367
|
224
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/lstm_cell.h,sha256=hgZCI-EkoxSZQdhMKsHWYY-8Ka79nUB40aRUEa73Ha4,22801
|
225
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/maximum_minimum.h,sha256=xI3QDtQbzQ6qJPy_v__H_zEBYJBLjRld-GmTmXyiAKk,2754
|
226
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/mul.h,sha256=2h8CbqcieTJUR4sE1KPNQNMPxZqDaRNyuKrV7an6ETM,12274
|
227
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/neg.h,sha256=7FoL8Q2ttTouEcDNG7pZdrtSyR2LqcUrIkWbr8J25Zc,1333
|
228
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/pad.h,sha256=6G6fQ4o4RivnahqDIjgg8oZABzBqfK3D0MvXdmtcOdM,7046
|
229
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/pooling.h,sha256=-TK_2J1DlAsgXGehPMJs_6WPEAdwMXPRhwQAu8X8EkA,14306
|
230
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/portable_tensor_utils.h,sha256=BfamoHSOlk5TrgTgUYLzK4t0NVB2rhaVf0XtaWl-C3g,15408
|
231
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/portable_tensor_utils_impl.h,sha256=XUFgJEAKLmtlEokptUaP0HWZDEnjLhMHONM_22BmRgk,11352
|
232
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/prelu.h,sha256=nc45R7D0_VDht9fnaR9CUmqYdD6R5ueMqwmrcNKKSgM,4668
|
233
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/process_broadcast_shapes.h,sha256=nD-OsfkSeYlTx8GpsFMp74n6X-mjk4QvexkjEOQdr20,5427
|
234
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/quantize.h,sha256=0_NDLBi-s7glJF5xmvOYuYUNJ7nBycDlMyeW9dAJerE,3745
|
235
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/reduce.h,sha256=cD6KOhzG-2Xf1bBE6XkHxmMU-IcdlEVQ-TKYjWLwrOI,19735
|
236
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/requantize.h,sha256=KAzNjsM5KqDBWEEh9Jf5tQRmMcGBTcbckpfJ3Qa5R50,2970
|
237
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/resize_bilinear.h,sha256=6PP0ym7btxcyuQxcGvpNcQS3rxRqFUrVa0sGbSBS8pY,10460
|
238
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/resize_nearest_neighbor.h,sha256=sOWvJbZKauuQQyjRD1uKSYGQRQ2FL7fqDsPxjCrsNCY,4249
|
239
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/round.h,sha256=k0XXEZefc-vE_ER8GetoJtLHgLs6QFThgdAlELWLpwk,1874
|
240
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/select.h,sha256=mtfvc8dZtOjlQi6mZI2FceFvkUB1_zmf8RQ3QI1LI8c,6655
|
241
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/slice.h,sha256=DRymOK73QWiQgrux1mun1QpdztDiHgEiSLb298MnX6I,3087
|
242
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/softmax.h,sha256=RcSKYoiUUWsunthqTk5hb0ZMmdfXRR-Cg7NNRGUMDjY,10227
|
243
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/space_to_batch_nd.h,sha256=9t2kagArkNWSPd8pIgLnK6UoN1XKZiTRKdGMP0gy02U,4727
|
244
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/space_to_depth.h,sha256=f9EXSHOGEmVN3a6orTR-vSkH2zky8Trtg8h7VhCA2rI,3165
|
245
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/strided_slice.h,sha256=4vU-AMhzjeIDfM-qTwr6POkIkTloqYcVIfH_1I2gnlM,6460
|
246
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/sub.h,sha256=RAFOX2IrnbmFaER0QXYu8pKX5ghoIbinT-5fYNzXzYc,20414
|
247
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/tanh.h,sha256=0RcCpOszUKoYWaZhHGW_riHpuze2YIU4xJLaG7VlZgM,5145
|
248
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/transpose.h,sha256=FLuG88PMiCp7vcgg7I2F5bT2T4BBOlnHi61jpu19eeQ,6799
|
249
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/transpose_conv.h,sha256=LtMjGPa3CCsZ5eRrFh4fRqNNQOpN5Bkb20yw8YiprTI,10497
|
250
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/add.h,sha256=bNL6NQehYimw9TAcjGTOxgYOfjyq2fprTxr10ID4MK0,11825
|
251
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/conv.h,sha256=gfcWGEPrIT_oShB8F_I94CLxVpAI2SzEfKohp97MH08,11232
|
252
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/depthwise_conv.h,sha256=zaeej_RvjC9EpZeYZevOfmg5ozR8WW9DqQX6goztOxA,14612
|
253
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/fully_connected.h,sha256=sPuw6PcoR4FOqxh6WCIq-dfLhIA49YymqrQ2562VUUk,5854
|
254
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/l2normalization.h,sha256=mx7s65hx4hML3CpZuF_dQYIubSht0Oz2MlVUe_oT8Ws,2963
|
255
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/logistic.h,sha256=175PjozhWC6Ef-z0yyubC3Cog86n2lWxU7CTHjFxCGs,4652
|
256
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/mean.h,sha256=b_CMYIDqThX3MqNw7egRAXAvTNe2KBWQyjilfPtkooI,882
|
257
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/mul.h,sha256=6CtP-tjlUTPi6HbtPKKDQCHnAVZxDVNXBz450VkBA9o,8867
|
258
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/pooling.h,sha256=3V73rx-NGBA_0420s7jrObCSOVuKCacbneV6Ix3IZuI,12449
|
259
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/tanh.h,sha256=OwGsdj2KyGMRncaMWrfip8wia6HQRTCPppTWoWHLz6Q,4322
|
260
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/transpose_conv.h,sha256=hzm1ppW2Dn75KoqMu_oF60uYZlTMqcbjZsZx09sbLzc,10537
|
261
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/compatibility.h,sha256=LJL0L26-MH62TWdjzPf7MCdFZHT1i8nRNQOMJoiPt3k,1430
|
262
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/debug_log.h,sha256=hhuRAKBPokLGFGRBS_-ta9EQqB5T0MqIH8sNR0H_Yyg,1344
|
263
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/fake_micro_context.h,sha256=MAIviFTupHJnr7jJLpSR2cnAAyhO254NRQihfSJJVWk,2532
|
264
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/flatbuffer_utils.h,sha256=GFT9BHACUad6bijuZIhiJEmhzSX2xDEsRnA6MA4EV-U,3030
|
265
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_helpers.h,sha256=GP9RkhPCh8rbyeEz0McuS7NRFlk5bJTyeXavFtN5vzY,2616
|
266
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_allocation_info.h,sha256=E6VJPj14Rw4I7iWmqd2qkbXERusUpT7h7lOjib7Xdk8,6060
|
267
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_allocator.h,sha256=XUz1dGyhWGAGy-k6dRLPa91KTAeeiyq8rQWWaaiQdjE,16498
|
268
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_arena_constants.h,sha256=8OKRKX8d8C7kPpdL90_l2JTblgG4rNwSkN8X25f22f4,1107
|
269
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_common.h,sha256=mRrvTMIu26zV_0SiteJJre2C1364NrEM7bg29ntNI-0,1701
|
270
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_context.h,sha256=E6iu0bWrX4Fu8uPC3FRMBv3ZmmZuxpBsMfZCpJc356Q,7726
|
271
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_graph.h,sha256=_jq_oUm17pVEHgqRXLy42uhcSCU0b889d7UswamRRhY,2735
|
272
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_interpreter.h,sha256=KdRCx2dXdTkbrC20Pb23XBQnl39WQ6zFlbM4u_V_HXY,7757
|
273
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_interpreter_context.h,sha256=qRK1i_RgnIIkDaAgQhvs0-CWB43R-2dFWeEkINIwrn8,5299
|
274
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_interpreter_graph.h,sha256=nXF3201bdM7U2zpr1nOvfo49czo2TIedCXbwO-5EFLs,4461
|
275
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_log.h,sha256=ptE3LMzz4X3_k4XHwSlvKKTZX0xFZBc_PCMoW9Q3pgc,1599
|
276
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_mutable_op_resolver.h,sha256=GYYXPuHTXdnnIxZKn7ASKSoKfe21I5CZIga8AynEEJ4,23570
|
277
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_op_resolver.h,sha256=95JRC8YXtApSVyjWJ6sn12iYeeIZ1LlFcRhmDWTOwck,2674
|
278
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_profiler.h,sha256=0yRdQtDkEQ3Hrxtl63SFFUkyq-fPy5zavFbFM--r_jA,4974
|
279
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_profiler_interface.h,sha256=ZuwyfN5ARbT8j8BYsy1H6kA02u4ZikNLfwI0SJawIsQ,1371
|
280
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_resource_variable.h,sha256=_2tFEdbPgdpy-rcRChuFNtKp5hu783gTRznnj9tRSbY,3390
|
281
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_time.h,sha256=b4n6VEMsGYUO2NDjokoYODB9NtIB10hNRawO2Zzhpd4,1352
|
282
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_utils.h,sha256=TkYRkH65VKuMMnCCZkJM5EmkJmwU_4-TI19VQsUuM-E,5833
|
283
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/mock_micro_graph.h,sha256=cBW3pHLdsYckunScsVCj3PfRDJNROU2TTih-heq1bk0,2362
|
284
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/recording_micro_allocator.h,sha256=ucmcpJeVJIFDjiMrY9LHZ-6p5gv0-YCcsbeKnb_MEEQ,5535
|
285
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/recording_micro_interpreter.h,sha256=0XILLJtFqlFwAGusQAfgzSVHviAEGf8bdtLL325tuYI,3071
|
286
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/system_setup.h,sha256=OQ4y8-PdL217zDvrE5MWiYXHtpinougy_jrrkwAdozg,1119
|
287
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/test_helper_custom_ops.h,sha256=qF2PLPz4FuXvenqgBEbDCseva9uvHuQLXACGe_r2NgY,1816
|
288
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/test_helpers.h,sha256=b_Myn52RFxZnAdDCfw4OAYpev6W5VpDLRiAvewMct2o,14291
|
289
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/arena_allocator/ibuffer_allocator.h,sha256=WUIoE6eRImNEd94OPJiPpnxSe4LnMfooey-G39CapDA,4436
|
290
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/arena_allocator/non_persistent_arena_buffer_allocator.h,sha256=81gaEMBd9o-kx7ba8vO0RUDwQGM3TV0ANKPp_7NVQ64,4389
|
291
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/arena_allocator/persistent_arena_buffer_allocator.h,sha256=pFTfRTTGL3FM4KGtkhWDjEYIElspDVnfi6bcc58ZwBg,2323
|
292
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/arena_allocator/recording_single_arena_buffer_allocator.h,sha256=UAkAAz3CCN21xIrGig7QtWEj3nwNnM6SU4wiVpv4y7k,2520
|
293
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/arena_allocator/single_arena_buffer_allocator.h,sha256=8IUUmQM6aB-iGVS1ehBUPpeCnx3C6UbB5mX55yUwAs8,6395
|
294
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/benchmarks/micro_benchmark.h,sha256=yRRk9BYL6fo_P6UKgcjpRlnQ80U6Qgo-7dRY4HeQPKs,3659
|
295
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/cortex_m_generic/debug_log_callback.h,sha256=boLsZXVPlbCm-7h6DTrdo-gfDk50ZUcCJGMWrOahNx8,1674
|
296
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/micro_model_settings.h,sha256=bnRqWfN4CkXHEq19nl1T-dq6NnTmi9-QdPxqRuJRhU8,1510
|
297
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/network_tester/expected_output_data.h,sha256=w29btmqFxs6TpIwy-r7E3iIgeiduzvDwHs88RbH5Xqw,2668
|
298
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/network_tester/input_data.h,sha256=sZFqrE92sNXsjckm-48rAykBa1y3gGoUacYXhIeiUfo,7452
|
299
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/network_tester/network_model.h,sha256=qKQD-L3w0U0v8DsG71mrifXxLaf4UcOzieTPXVh6YIY,11881
|
300
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/person_detection/detection_responder.h,sha256=IAKCOozGE-PRLhPTqTKF1D-bBW7_KXZTBk1UBOPKd7o,1545
|
301
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/person_detection/image_provider.h,sha256=ZPdG0FkDFcWo7_FultrbIUAmZgCQG78w-s_3WLjiXRQ,2036
|
302
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/person_detection/main_functions.h,sha256=2Nk1orPJIyPMy_DcFjkQqSmEWGDqX23s5TCclgQPlRs,1348
|
303
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/person_detection/model_settings.h,sha256=Q542MHVO5E60EVo-II6m7v3n2m6UHiG1FndKOJKhD80,1477
|
304
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/activation_utils.h,sha256=52ogkH5rTd6fhcLfCwm05xqOe-oL_z1eqvfkpSy9bmg,1966
|
305
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/activations.h,sha256=iqM-31FgQpYhVCCOJ10kGy6lgYB23EkdKq0ggd9pJyg,2225
|
306
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/add.h,sha256=7nUJTHJPIsVVba62UobMH2oLCVy0mXSffTE_Da4LcSU,2495
|
307
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/circular_buffer.h,sha256=h0HFLP97O2BJjgRxeQ_CCP6cp6g1Srjt8EcVennr0uc,1734
|
308
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/circular_buffer_flexbuffers_generated_data.h,sha256=9dP9pAtIN-GMB7Y4FI-UJ8LDy7akIxKpGxI6YkeUecg,934
|
309
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/conv.h,sha256=L0oZczo6JkLzSJqMCzykeaxyGGNOjHY5M14OQBlLFM8,4347
|
310
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/conv_test.h,sha256=x4qn0Wv0lPg204J8xYnMVeog2tZ2Q33kdb2Pt_ScLPo,4833
|
311
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/depthwise_conv.h,sha256=nX6AHC5dg4wWzZrFpYY7iAZkKyVApuuNtZ8TSXAo_Yg,3051
|
312
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/dequantize.h,sha256=4ydf9hIxP_5ycT5cCHKNkH-yDE7aRiKnXlOIbo7TWRo,1409
|
313
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/detection_postprocess_flexbuffers_generated_data.h,sha256=0bZr4IiPyRMCelmIWgXaa8eC4wEOC5QPfj_1t6A-2YM,1022
|
314
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/ethosu.h,sha256=32F5GMnoPl0fUZ8KRjoKlFm79lsomkiuwVMuqOzyLfE,983
|
315
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/fully_connected.h,sha256=r4uaWvKxol-a4Kdk2aBLyy6mQmPOv68dh-bBd-Hq-Tw,4301
|
316
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/hard_swish.h,sha256=m-ikjfoA2Jvu7AVXBR45W3692OEknWRbQlUr6cV0qLw,1127
|
317
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/kernel_runner.h,sha256=hKu_QP7Z38093UrGtxeAM-xMDtTnLakCnz_5Nw7l56M,3680
|
318
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/kernel_util.h,sha256=Jss95os1YoP2rBDpDKW1hFNdVHqd-pMJwJbf1RfrJpA,6850
|
319
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/leaky_relu.h,sha256=cqYkhUtwS9waQySqErf5XoU3yNPrTxYkfpyx_dDmNTI,1426
|
320
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/logical.h,sha256=f6IcbUp6miB-wpLGwh1u5oDOJPOmNvodPo_rVwKwAeY,1295
|
321
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/logistic.h,sha256=SzVSkF7JSpCswG4p8ncNDC5opfMR2JdG1Vjp39BDgTA,1482
|
322
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/lstm_eval.h,sha256=oI2MuQ6lhnxc_I2IwDQXGbveqVq5AnumfgBzUDbmUT4,24045
|
323
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/lstm_eval_test.h,sha256=ln-0UpQ9-lf8Af5R-_-3FbzHefOCxfzKqeIiCwty88A,38793
|
324
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/lstm_shared.h,sha256=1fGHo4Zuq7XTVEyk5dymwjRcaBy7eiYqwfzX4MxfuMU,5650
|
325
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/micro_ops.h,sha256=9WRfF77CU7IZVRxoVC4kQdyWhJttzw1kMn2FUwgwYn4,6344
|
326
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/micro_tensor_utils.h,sha256=UePCAIyP2qjDGLWNb1YbQ6dNUf8FqPxKXXgigSkcLq8,2233
|
327
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/mul.h,sha256=8rZKd3BZ8FPrQ0uKV7F-uO758i-M2cKI4fE3bjykTaM,2595
|
328
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/pad.h,sha256=ysp0XfZg58J2SDYdKoEFd3_vVua6zGSoV-q-fJngOxI,972
|
329
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/pooling.h,sha256=N6uGWmMGVerDdufhjPI4o3HJ0ACxHNWYAky8NqWgCk0,5858
|
330
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/prelu.h,sha256=L003jGH5lD-VeM4IPZa1bZ2lnMYiIJRnyDT9Zq-1vKM,1628
|
331
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/quantize.h,sha256=2BqL6nPGCavzj2PGGCR9DgNUGheeu8b3-5Conqt9nW8,1466
|
332
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/reduce.h,sha256=MH63t2ojOFBsw6Uo3Bbx1Yu-pXc-yAmJs4NtvjNQeUc,2194
|
333
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/reshape.h,sha256=JxlQMUdLKhDxeS2GAB_E0ZP_7KHhGeoh_JYRIW5Vb6Y,972
|
334
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/softmax.h,sha256=d96dbONpa7pj5iY0w9IHGTNY8zUhhAxxvblraE0RpiA,2653
|
335
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/strided_slice.h,sha256=FFJvoo0-atfDEvsavJ7SdIStyojCLl_32eWqNJx1RR4,1455
|
336
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/sub.h,sha256=9mLp_WhTouET-W_MFMJq4oG6Pc_7BZsIiLWG4FHbS8g,1982
|
337
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/svdf.h,sha256=dygRI8jqN5voluF_BjwN1Y1F7dMzM65oP_dLLFZKMlg,4181
|
338
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/unidirectional_sequence_lstm.h,sha256=AMYEBaIJXvaTyCdRzb8_CHaa63cCqoYijuCybmyIAmU,1821
|
339
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/mli_function_specializations.h,sha256=jCxuKc9vkMhGUHtY3e0Z8sLmDawtjW0mwQSvOEnBVBU,4816
|
340
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/mli_interface.h,sha256=AxxL5RhMZhnKrowXu9HuQR_yRAm0JDOiEZHpazOPJ90,2472
|
341
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/mli_slicers.h,sha256=fj8F2utUXSHnObnsg0tvvHkQ89wdrARJtEV2Pn2szkg,1678
|
342
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/mli_tf_utils.h,sha256=sZAZdT_aBrcjO2BSEOm4vc-0NKB4sm1M_Nln5LX8vUY,12489
|
343
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/scratch_buf_mgr.h,sha256=uACRIyBMeIBu6dj8LL8visfbeLXPNJ4S0OVvOUIwTfY,5891
|
344
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/scratch_buffers.h,sha256=D-62e2rOzMl_OD-v-Wb1UNThGqzJbLcf2v2xSBDuB0Q,2403
|
345
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/ceva/ceva_common.h,sha256=aQzGAq24dsYr2CtRb3zFKboanNQOxC5hNcemXfw-8_Q,966
|
346
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/ceva/ceva_tflm_lib.h,sha256=rJtNVMy2GXNA5JzFPr-sfT-G70Fu9iw54WbyBG6hmeQ,34486
|
347
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/ceva/mcps_macros.h,sha256=oOce9F44vKFY8kQXr97hxw2hzhggZrc_a8_QDl0VNnA,3560
|
348
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/ceva/types.h,sha256=Dd1jsPUj2snHu5wu2SAQ4RLdYqp8yY4vjDGyCWciPCM,41223
|
349
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/testdata/conv_test_data.h,sha256=mjvUsmSQL15jSzxXIZaf1p67S-OEZCVl_IyzP7aWG0U,1467
|
350
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/testdata/lstm_test_data.h,sha256=w29qocIbFNlVspSKd8QWs44uYJGF9fWtTrNG5Fvg_5U,26834
|
351
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/lstm_eval.h,sha256=1um-FZ6maY3eK_h6PaxakMz501UH5X0v1N_1ezVi364,10375
|
352
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/lstm_shared.h,sha256=-gLkgdcuESHhQss3vmP8FsFfJq03II6BkLoM7ZiGT-U,3034
|
353
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa.h,sha256=dX17cuLw95wtgT57Yfogkf_rWTZBxkw1Uew_VFs49dU,1451
|
354
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_add.h,sha256=OrYfGwpnq2RczQUxAMIHHUP9WsCyq-HvmnIVC6Wo5ac,1795
|
355
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_conv.h,sha256=qoLhRdApqNdV_SNNTpejIvqhFbIcXgvMEEajZB-mclM,3674
|
356
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_depthwise_conv.h,sha256=vePPlovTjwN8DYDhoVUKvQa_93iz-S-AKR6obxHJIgc,3175
|
357
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_fully_connected.h,sha256=5lN0uTNL41_cIL0bVnIPPj7DtT4hAtetL4sNoqmCa7U,3388
|
358
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_pad.h,sha256=ZvDuJb0Jpbji2Od9KggSrUJg_9_K9MWoeeKLI8tdp-c,1580
|
359
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_pooling.h,sha256=ffoCPRNV2GQlFcHbNcnBTejk5yXjAyBkxZhQ93rOo7g,2905
|
360
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_reduce.h,sha256=ZXvujd9IeDMbsh7G_oD8SDq5pPNdrDj5VRSyLfgoMsY,1594
|
361
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_reshape.h,sha256=x-qaO5YqX39pBXovfelScfmppEPXuHNAvuRNRH7RhLM,1514
|
362
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_softmax.h,sha256=YdqdqJWO3Z98A0ZnBoOqEwxKssrxLtdo34n9q7Fb0Bc,2221
|
363
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_svdf.h,sha256=bjGNE3Om4UmwRt-dTH4hrxefESiH14hx55tME77Ip14,1513
|
364
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/hifimini/fixedpoint_utils.h,sha256=wCfzgUMDfuhpNacv6oEkRxnL53K0jUaYHYZoWbcH3ME,5204
|
365
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/greedy_memory_planner.h,sha256=zFbOFlWdjKYuBV-iKW-CzXI2FfPgERDaMB2s478euXI,7246
|
366
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/linear_memory_planner.h,sha256=nn2dlEk2cVobNR8aSUpPz1Fb7XT_WcOC2QCYDesCIqU,1931
|
367
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/memory_plan_struct.h,sha256=pE5VCrP59Y7nrISKw-H3fThfmL5n26gzvrHqk9CKulU,3011
|
368
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/micro_memory_planner.h,sha256=mgKMG_3yUeOgPDLxgG0lXeA2Qw1rtlMeex_CeSlfeoU,3942
|
369
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/non_persistent_buffer_planner_shim.h,sha256=g8Be6xInP1QV9mXpqCBeij6HQga-IlvipBvudlWgy9A,6545
|
370
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/interpreter/src/python_ops_resolver.h,sha256=DW4qRQLm0YXSZ-Gk8WEbH-O5Q2fjxo21oCDC5F5GLIU,1020
|
371
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/tflite_size/src/flatbuffer_size.h,sha256=HNXG7kN507D7JmRgNHtUL3l9eqs71uAt687PcpaNnJo,1146
|
372
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/tflite_size/src/flatbuffer_size_wrapper.h,sha256=aPRefitrQa_l3SMdCKHTi3KQjjcPNsW-sziL78Cky94,1172
|
373
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/testing/micro_test.h,sha256=Oxp9oK1sZaI4QKcjVIF9Erck982OnBVR4XLpNbWWpU8,14943
|
374
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/testing/test_conv_model.h,sha256=MvszqMPD1wcV12WZAdQWu6MGIcMsVI_L1g--n-ZSjWY,1017
|
375
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/tflite_bridge/flatbuffer_conversions_bridge.h,sha256=ZXEgnxM1TOKZOyP66Y_e40XhlAXjvJxxA7UHrtPrwH8,2051
|
376
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/tflite_bridge/micro_error_reporter.h,sha256=RgqepqZ6xlk_G_phs0pEqgmNHN-2PdN0ANXGKSkQtrI,1339
|
377
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/tools/benchmarking/log_utils.h,sha256=os4fNRaYPa-stH2mtBa9MYXViwgDjwQQxyECSgEJjTQ,10059
|
378
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/tools/benchmarking/metrics.h,sha256=FW4NtJK9SmirmtD5gkHsp_BlLbwLizDDVin1CeujAfc,1553
|
379
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/micro/tools/benchmarking/op_resolver.h,sha256=g0dl9tzUqngiINvjBlqDclFqvkC85MC4kbU13vE4OkY,6071
|
380
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/schema/schema_generated.h,sha256=OzGCvswrW_FArm-HxD70BExn0PVtBbHAFPDO6ZZOFtc,1093177
|
381
|
+
xmos_ai_tools/runtime/include/tensorflow/lite/schema/schema_utils.h,sha256=tkHMDPARjIqppYCVInIowwdHxjNP3pfSS9O7vx-ODeo,1333
|
382
|
+
xmos_ai_tools/runtime/lib/libhost_xtflitemicro.a,sha256=d8NmDze44TOX1IH4CGt2YFLksrrKbl6LYNOTAUgQzv0,2421784
|
383
|
+
xmos_ai_tools/runtime/lib/libxtflitemicro.a,sha256=pc2eQWOMtVx_LsAcpDUlhvmvlgn9jexq5_n9DwigIMw,70249948
|
384
|
+
xmos_ai_tools/xformer/__init__.py,sha256=jA0xba6ZitK9HwWvDJewM8AMU4IZnx_iB1GSBrRUGvU,1627
|
385
|
+
xmos_ai_tools/xformer/flash.py,sha256=MG4coi_Lvvg-oQmw1pomJD8eeOH4gAMjixjBFvO2BCk,6376
|
386
|
+
xmos_ai_tools/xinterpreters/__init__.py,sha256=PFRB9VxOLKaA--j2ZvWGcmesv2C6uNYqJ_kBam68aUI,50
|
387
|
+
xmos_ai_tools/xinterpreters/exceptions.py,sha256=HOjADxHYMPI9mN0YIbWxtw9hSeL2B6XWWwqtGtyJdVs,577
|
388
|
+
xmos_ai_tools/xinterpreters/host_interpreter.py,sha256=No-g29_twbIaJ4S4fzU5TGpKd4WPVEE0737HtL877sw,25692
|
389
|
+
xmos_ai_tools/xinterpreters/libs/macos/xtflm_python.1.0.1.dylib,sha256=AIA1zz3Dqw3zM_oFVc4OE4wrfhB-Ny0KlUTDJ0eB7Ok,2320632
|
390
|
+
xmos_ai_tools/xinterpreters/libs/macos/xtflm_python.dylib,sha256=AIA1zz3Dqw3zM_oFVc4OE4wrfhB-Ny0KlUTDJ0eB7Ok,2320632
|
391
|
+
xmos_ai_tools-1.3.2.dev80.data/data/bin/xcore-opt,sha256=efYoZcFcfDeVseh2nvCv1P73WFYYSF2ji5TG1g3hUoM,283063304
|
392
|
+
xmos_ai_tools-1.3.2.dev80.dist-info/METADATA,sha256=WA3-74wKTiijkQtMJSTWmQPqEGk7CCXPegxXOFWUuxc,1341
|
393
|
+
xmos_ai_tools-1.3.2.dev80.dist-info/WHEEL,sha256=cblCMhPsi-5aS-1Fj5LRCkSbCUQwa2nrUvkiKN0vRpQ,113
|
394
|
+
xmos_ai_tools-1.3.2.dev80.dist-info/top_level.txt,sha256=YWegea73ll3tMlRWRdHJemUy2VOuEYDdOIaffxu_eF0,14
|
395
|
+
xmos_ai_tools-1.3.2.dev80.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
xmos_ai_tools
|