xmos-ai-tools 1.1.2.dev216__py3-none-macosx_11_0_arm64.whl → 1.1.2.dev236__py3-none-macosx_11_0_arm64.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.
Files changed (147) hide show
  1. xmos_ai_tools/runtime/include/lib_nn/api/nn_layers.h +16 -0
  2. xmos_ai_tools/runtime/include/lib_nn/api/quadratic_approximation.h +80 -0
  3. xmos_ai_tools/runtime/include/lib_nn/api/quadratic_interpolation.h +23 -0
  4. xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_ops.h +15 -15
  5. xmos_ai_tools/runtime/include/{tensorflow/lite/micro/examples/micro_speech/simple_features/model.h → signal/micro/kernels/delay_flexbuffers_generated_data.h} +7 -9
  6. xmos_ai_tools/runtime/include/signal/micro/kernels/energy_flexbuffers_generated_data.h +28 -0
  7. xmos_ai_tools/runtime/include/signal/micro/kernels/fft_flexbuffers_generated_data.h +37 -0
  8. xmos_ai_tools/runtime/include/signal/micro/kernels/filter_bank_flexbuffers_generated_data.h +25 -0
  9. xmos_ai_tools/runtime/include/signal/micro/kernels/filter_bank_log_flexbuffers_generated_data.h +27 -0
  10. xmos_ai_tools/runtime/include/signal/micro/kernels/filter_bank_spectral_subtraction_flexbuffers_generated_data.h +26 -0
  11. xmos_ai_tools/runtime/include/signal/micro/kernels/framer_flexbuffers_generated_data.h +25 -0
  12. xmos_ai_tools/runtime/include/{tensorflow/lite/micro/examples/micro_speech/simple_features/no_simple_features_data.h → signal/micro/kernels/irfft.h} +15 -7
  13. xmos_ai_tools/runtime/include/signal/micro/kernels/overlap_add_flexbuffers_generated_data.h +25 -0
  14. xmos_ai_tools/runtime/include/signal/micro/kernels/pcan_flexbuffers_generated_data.h +7 -0
  15. xmos_ai_tools/runtime/include/signal/micro/kernels/rfft.h +31 -0
  16. xmos_ai_tools/runtime/include/signal/micro/kernels/stacker_flexbuffers_generated_data.h +25 -0
  17. xmos_ai_tools/runtime/include/signal/micro/kernels/window_flexbuffers_generated_data.h +25 -0
  18. xmos_ai_tools/runtime/include/signal/src/circular_buffer.h +118 -0
  19. xmos_ai_tools/runtime/include/signal/src/complex.h +29 -0
  20. xmos_ai_tools/runtime/include/signal/src/energy.h +38 -0
  21. xmos_ai_tools/runtime/include/signal/src/fft_auto_scale.h +35 -0
  22. xmos_ai_tools/runtime/include/signal/src/filter_bank.h +69 -0
  23. xmos_ai_tools/runtime/include/signal/src/filter_bank_log.h +38 -0
  24. xmos_ai_tools/runtime/include/signal/src/filter_bank_spectral_subtraction.h +73 -0
  25. xmos_ai_tools/runtime/include/{tensorflow/lite/micro/examples/micro_speech/main_functions.h → signal/src/filter_bank_square_root.h} +14 -17
  26. xmos_ai_tools/runtime/include/signal/src/irfft.h +84 -0
  27. xmos_ai_tools/runtime/include/signal/src/kiss_fft_wrappers/kiss_fft_common.h +49 -0
  28. xmos_ai_tools/runtime/include/signal/src/kiss_fft_wrappers/kiss_fft_float.h +31 -0
  29. xmos_ai_tools/runtime/include/signal/src/kiss_fft_wrappers/kiss_fft_int16.h +30 -0
  30. xmos_ai_tools/runtime/include/signal/src/kiss_fft_wrappers/kiss_fft_int32.h +31 -0
  31. xmos_ai_tools/runtime/include/{tensorflow/lite/micro/examples/micro_speech/micro_features/no_micro_features_data.h → signal/src/log.h} +13 -6
  32. xmos_ai_tools/runtime/include/{tensorflow/lite/micro/python/interpreter/src/python_utils.h → signal/src/max_abs.h} +11 -11
  33. xmos_ai_tools/runtime/include/{tensorflow/lite/micro/examples/micro_speech/micro_features/yes_micro_features_data.h → signal/src/msb.h} +15 -6
  34. xmos_ai_tools/runtime/include/signal/src/overlap_add.h +46 -0
  35. xmos_ai_tools/runtime/include/signal/src/pcan_argc_fixed.h +41 -0
  36. xmos_ai_tools/runtime/include/signal/src/rfft.h +85 -0
  37. xmos_ai_tools/runtime/include/signal/src/square_root.h +32 -0
  38. xmos_ai_tools/runtime/include/{tensorflow/lite/micro/python/interpreter/src/numpy_utils.h → signal/src/window.h} +13 -15
  39. xmos_ai_tools/runtime/include/signal/testdata/fft_test_data.h +48 -0
  40. xmos_ai_tools/runtime/include/tensorflow/lite/array.h +156 -0
  41. xmos_ai_tools/runtime/include/tensorflow/lite/builtin_ops.h +44 -0
  42. xmos_ai_tools/runtime/include/tensorflow/lite/c/c_api_types.h +6 -0
  43. xmos_ai_tools/runtime/include/tensorflow/lite/c/common.h +8 -25
  44. xmos_ai_tools/runtime/include/tensorflow/lite/core/api/error_reporter.h +3 -3
  45. xmos_ai_tools/runtime/include/tensorflow/lite/core/api/flatbuffer_conversions.h +15 -0
  46. xmos_ai_tools/runtime/include/tensorflow/lite/core/c/builtin_op_data.h +92 -3
  47. xmos_ai_tools/runtime/include/tensorflow/lite/core/c/c_api_types.h +61 -51
  48. xmos_ai_tools/runtime/include/tensorflow/lite/core/c/common.h +302 -1
  49. xmos_ai_tools/runtime/include/tensorflow/lite/core/macros.h +78 -0
  50. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/common.h +129 -43
  51. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/cppmath.h +2 -2
  52. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/portable_tensor.h +23 -4
  53. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/add.h +210 -151
  54. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/comparisons.h +9 -18
  55. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/conv.h +2 -0
  56. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/add.h +103 -72
  57. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/conv.h +2 -0
  58. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/mean.h +2 -63
  59. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/mul.h +87 -26
  60. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/mul.h +129 -80
  61. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/reduce.h +42 -93
  62. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/resize_bilinear.h +5 -0
  63. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/sub.h +249 -263
  64. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/runtime_shape.h +11 -1
  65. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/strided_slice_logic.h +5 -1
  66. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/tensor_ctypes.h +5 -10
  67. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/types.h +4 -2
  68. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/kernel_util.h +25 -14
  69. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/op_macros.h +14 -3
  70. xmos_ai_tools/runtime/include/tensorflow/lite/micro/debug_log.h +10 -3
  71. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/micro_model_settings.h +37 -0
  72. xmos_ai_tools/runtime/include/tensorflow/lite/micro/fake_micro_context.h +7 -0
  73. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/add.h +6 -5
  74. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/circular_buffer.h +0 -3
  75. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/conv.h +19 -20
  76. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/conv_test.h +8 -31
  77. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/depthwise_conv.h +8 -8
  78. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/ethosu.h +1 -1
  79. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/fully_connected.h +9 -9
  80. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/kernel_runner.h +14 -9
  81. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/kernel_util.h +9 -4
  82. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/micro_ops.h +119 -100
  83. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/mul.h +4 -4
  84. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/pooling.h +8 -8
  85. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/reduce.h +4 -4
  86. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/reshape.h +26 -0
  87. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/softmax.h +12 -16
  88. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/strided_slice.h +40 -0
  89. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/svdf.h +8 -7
  90. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/unidirectional_sequence_lstm.h +5 -5
  91. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa.h +2 -2
  92. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_conv.h +26 -21
  93. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_depthwise_conv.h +4 -4
  94. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_reshape.h +2 -4
  95. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_softmax.h +2 -2
  96. xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/greedy_memory_planner.h +5 -0
  97. xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/linear_memory_planner.h +4 -0
  98. xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/micro_memory_planner.h +4 -0
  99. xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/non_persistent_buffer_planner_shim.h +4 -0
  100. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_allocator.h +23 -8
  101. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_common.h +38 -0
  102. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_context.h +23 -65
  103. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_graph.h +15 -57
  104. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_interpreter.h +16 -5
  105. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_interpreter_context.h +125 -0
  106. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_interpreter_graph.h +110 -0
  107. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_log.h +6 -8
  108. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_mutable_op_resolver.h +114 -32
  109. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_op_resolver.h +6 -5
  110. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_profiler.h +1 -1
  111. xmos_ai_tools/runtime/include/tensorflow/lite/micro/mock_micro_graph.h +1 -1
  112. xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/interpreter/src/python_ops_resolver.h +21 -0
  113. xmos_ai_tools/runtime/include/tensorflow/lite/micro/test_helper_custom_ops.h +3 -4
  114. xmos_ai_tools/runtime/include/tensorflow/lite/micro/test_helpers.h +28 -12
  115. xmos_ai_tools/runtime/include/tensorflow/lite/micro/testing/micro_test.h +1 -0
  116. xmos_ai_tools/runtime/include/tensorflow/lite/micro/tools/benchmarking/log_utils.h +273 -0
  117. xmos_ai_tools/runtime/include/tensorflow/lite/micro/tools/benchmarking/metrics.h +41 -0
  118. xmos_ai_tools/runtime/include/tensorflow/lite/micro/tools/benchmarking/op_resolver.h +127 -0
  119. xmos_ai_tools/runtime/include/tensorflow/lite/schema/schema_generated.h +9139 -5010
  120. xmos_ai_tools/runtime/lib/libhost_xtflitemicro.a +0 -0
  121. xmos_ai_tools/runtime/lib/libxtflitemicro.a +0 -0
  122. xmos_ai_tools/xinterpreters/libs/macos/xtflm_python.1.0.1.dylib +0 -0
  123. xmos_ai_tools/xinterpreters/libs/macos/xtflm_python.dylib +0 -0
  124. {xmos_ai_tools-1.1.2.dev216.data → xmos_ai_tools-1.1.2.dev236.data}/data/bin/xcore-opt +0 -0
  125. {xmos_ai_tools-1.1.2.dev216.dist-info → xmos_ai_tools-1.1.2.dev236.dist-info}/METADATA +3 -4
  126. {xmos_ai_tools-1.1.2.dev216.dist-info → xmos_ai_tools-1.1.2.dev236.dist-info}/RECORD +128 -105
  127. {xmos_ai_tools-1.1.2.dev216.dist-info → xmos_ai_tools-1.1.2.dev236.dist-info}/WHEEL +1 -1
  128. xmos_ai_tools/runtime/include/tensorflow/lite/core/api/op_resolver.h +0 -129
  129. xmos_ai_tools/runtime/include/tensorflow/lite/micro/all_ops_resolver.h +0 -38
  130. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/audio_provider.h +0 -44
  131. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/command_responder.h +0 -30
  132. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/feature_provider.h +0 -50
  133. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/micro_features/micro_features_generator.h +0 -30
  134. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/micro_features/micro_model_settings.h +0 -43
  135. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/micro_features/no_feature_data_slice.h +0 -29
  136. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/micro_features/yes_feature_data_slice.h +0 -29
  137. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/recognize_commands.h +0 -151
  138. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/simple_features/no_power_spectrum_data.h +0 -29
  139. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/simple_features/simple_features_generator.h +0 -29
  140. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/simple_features/simple_model_settings.h +0 -43
  141. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/simple_features/yes_power_spectrum_data.h +0 -29
  142. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/simple_features/yes_simple_features_data.h +0 -23
  143. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_string.h +0 -33
  144. xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/interpreter/src/interpreter_wrapper.h +0 -51
  145. xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/interpreter/src/pybind11_lib.h +0 -64
  146. xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/interpreter/src/shared_library.h +0 -40
  147. {xmos_ai_tools-1.1.2.dev216.dist-info → xmos_ai_tools-1.1.2.dev236.dist-info}/top_level.txt +0 -0
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: xmos-ai-tools
3
- Version: 1.1.2.dev216
3
+ Version: 1.1.2.dev236
4
4
  Summary: XMOS AI Tools
5
5
  Home-page: https://github.com/xmos/ai_tools
6
6
  Author: XMOS
@@ -15,7 +15,6 @@ Classifier: Intended Audience :: Education
15
15
  Classifier: Intended Audience :: Science/Research
16
16
  Classifier: Programming Language :: Python :: 3
17
17
  Classifier: Programming Language :: Python :: 3 :: Only
18
- Classifier: Programming Language :: Python :: 3.8
19
18
  Classifier: Programming Language :: Python :: 3.9
20
19
  Classifier: Programming Language :: Python :: 3.10
21
20
  Classifier: Topic :: Scientific/Engineering
@@ -24,7 +23,7 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
24
23
  Classifier: Topic :: Software Development
25
24
  Classifier: Topic :: Software Development :: Libraries
26
25
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
27
- Requires-Python: >=3.8
26
+ Requires-Python: >=3.9
28
27
  Description-Content-Type: text/markdown
29
28
  Requires-Dist: numpy <2.0
30
29
  Requires-Dist: tflite >=2.4.0
@@ -32,5 +31,5 @@ Requires-Dist: tflite >=2.4.0
32
31
  Documentation
33
32
  -------------
34
33
 
35
- Click [here](https://github.com/xmos/ai_tools/blob/82b004eb9c4edb45f51ca51de08bc4d01f4b6583/README.md) for documentation on using xmos-ai-tools to deploy AI models on xcore.
34
+ Click [here](https://github.com/xmos/ai_tools/blob/b74ccb329b39f6c2cb5f7847ce10ceecf32246ec/README.md) for documentation on using xmos-ai-tools to deploy AI models on xcore.
36
35
 
@@ -41,13 +41,15 @@ xmos_ai_tools/runtime/include/lib_nn/api/nn_bin_types.h,sha256=DTFX2ecfzwl-_tHlq
41
41
  xmos_ai_tools/runtime/include/lib_nn/api/nn_config.h,sha256=KFoA5zyOTTHi6x-qDuIWkF8wAz4Gc4BdOBgUzOArOD0,11558
42
42
  xmos_ai_tools/runtime/include/lib_nn/api/nn_conv2d_structs.h,sha256=Kfyq3bD1aLcSnWTB_cijU_D5ThGol5utJ1k-WsjqeMY,2268
43
43
  xmos_ai_tools/runtime/include/lib_nn/api/nn_image.h,sha256=gz7NyxmZACZiDED0wT7px2qjEEMcUwfa5TjeOUmYzL4,514
44
- xmos_ai_tools/runtime/include/lib_nn/api/nn_layers.h,sha256=KK-KItLoFKmZx4csRoFybfQwm-HnjNUAsr1McV1gPFs,9472
44
+ xmos_ai_tools/runtime/include/lib_nn/api/nn_layers.h,sha256=znneYtZCM-WEK896MB_Zy41MMiX3ROGxUVZ3iWNwAjc,9955
45
45
  xmos_ai_tools/runtime/include/lib_nn/api/nn_op_helper.h,sha256=VMnBVEcgH0wtiiV91JjtFRG4xkCI0m7WrikEmU6ulss,3716
46
46
  xmos_ai_tools/runtime/include/lib_nn/api/nn_op_utils.h,sha256=zoyHr07-ND_DCcS0ovehshCnXTrKBTlYOPX5Ul69JRs,4678
47
47
  xmos_ai_tools/runtime/include/lib_nn/api/nn_operator.h,sha256=Nj4jiXVHlnFjVBtV7mCGulTzSyNwCIpitz8Ao9kSIsU,337
48
48
  xmos_ai_tools/runtime/include/lib_nn/api/nn_pooling.h,sha256=DUJNIhtabaMJvP4m46BICDNY2nCSXWKdfE0AUu7VhaY,24456
49
49
  xmos_ai_tools/runtime/include/lib_nn/api/nn_types.h,sha256=qDuxF8ldzxEtwd4Ysu11sVU1-mx59Jzn-7vTtc_4dqw,1646
50
50
  xmos_ai_tools/runtime/include/lib_nn/api/nn_window_params.h,sha256=NeCS7hhE7tdmc3TwTvmBR-E5EXz969gOzisoITwdV9o,1660
51
+ xmos_ai_tools/runtime/include/lib_nn/api/quadratic_approximation.h,sha256=Enia9kZgPM38oToGmRMJqIPOn1ZD0zeOJ8rwbL3Mrec,2699
52
+ xmos_ai_tools/runtime/include/lib_nn/api/quadratic_interpolation.h,sha256=qNguTb1oiAJ_n1_wnSFXD4BEE8PTJqePph6FVnkrwac,816
51
53
  xmos_ai_tools/runtime/include/lib_nn/api/version.h,sha256=P0otpsAVvhiPNpXQu6uJUrjygoOTaHEJlIegIMyj_W4,303
52
54
  xmos_ai_tools/runtime/include/lib_nn/api/vpu_sim.h,sha256=3S1_2eSaEj2q8nhFuRiCefQhwTeYpfothuFu0fC54_s,3811
53
55
  xmos_ai_tools/runtime/include/lib_nn/api/xs3_vpu.h,sha256=xuEpNayaSWeEIoL1--EfQAXkr4TidwDASFYgbshJ-Mw,6227
@@ -67,7 +69,7 @@ xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_co
67
69
  xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_custom_options.h,sha256=8iD9kjYqpaGpAUfGzfYk7OaPZo1ewpL5bBnZECE6jEg,618
68
70
  xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_error_reporter.h,sha256=fnSTiuJEL5cstbgtiM9rKwpCCNPHFEZr5b_Qu4PY1Yo,794
69
71
  xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_interpreter.h,sha256=5-_cbV1uXQDTW51l3F3p06fZB4qx19Z848h9qtoAjE4,1753
70
- xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_ops.h,sha256=GFCcrBGk2Ytw6iqVZnkpgAQakNAnUzlaqHprstHqP5U,1918
72
+ xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_ops.h,sha256=INTztsaqNxiGyJChYIgYJqStCw5qfCR-0RsWbJehFwI,1848
71
73
  xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_profiler.h,sha256=5wo0BpSfxebxo-NpAoJYsheULF9u_Nz3xbhjUs2K2Hg,1215
72
74
  xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_utils.h,sha256=S2mRE2ZViQFA6bTMln41mbCY1RMOv_VE5Yk8zVA0GAQ,5108
73
75
  xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/xud.h,sha256=CpBh7idogG_eZXEe29i306iXbz3Jcnvd5CgptIFG8Lo,20680
@@ -84,20 +86,56 @@ xmos_ai_tools/runtime/include/lib_xud/lib_xud/src/user/class/hid.h,sha256=Z1VS5s
84
86
  xmos_ai_tools/runtime/include/lib_xud/lib_xud/src/user/class/usbaudio10.h,sha256=qym5j4vytV5gMPHWCKagtCT6VD7K3gIxNkEggldgeRw,1007
85
87
  xmos_ai_tools/runtime/include/lib_xud/lib_xud/src/user/class/usbaudio20.h,sha256=YlCWHhMXTfKKZ5e689dq5O25auJODxhKKa2Sz2J-2XA,13499
86
88
  xmos_ai_tools/runtime/include/lib_xud/lib_xud/src/user/class/usbaudiocommon.h,sha256=jV7F_4wN38dCKcJne_ZlPely9_2oKJR13Cya9yWaoGw,6690
89
+ xmos_ai_tools/runtime/include/signal/micro/kernels/delay_flexbuffers_generated_data.h,sha256=9YvsdCK2GaMD7havC3YEHguMHH1ROrGz1NnsOwRhgAI,1053
90
+ xmos_ai_tools/runtime/include/signal/micro/kernels/energy_flexbuffers_generated_data.h,sha256=m7jvupPj7uEHzG_uTkkKjRYSAynqV6oL23gIcBFpuhc,1316
91
+ xmos_ai_tools/runtime/include/signal/micro/kernels/fft_flexbuffers_generated_data.h,sha256=jTvkmewfUSZ5DQgxpigXRd1xkPoGNNVU96GntWNkqic,1625
92
+ xmos_ai_tools/runtime/include/signal/micro/kernels/filter_bank_flexbuffers_generated_data.h,sha256=MdllFaLE8y97ujPkck-k9cFwyYGyc6T2SbxGqQHauJk,1191
93
+ xmos_ai_tools/runtime/include/signal/micro/kernels/filter_bank_log_flexbuffers_generated_data.h,sha256=wuriQsyNQFxRWVRargGRqHM8FqWIYZ6ADNTxJPf6-Ao,1301
94
+ xmos_ai_tools/runtime/include/signal/micro/kernels/filter_bank_spectral_subtraction_flexbuffers_generated_data.h,sha256=wQYucdfNENwNuNWSyCZ2-Zn2efQ1h15dNCXaDVL2BuY,1345
95
+ xmos_ai_tools/runtime/include/signal/micro/kernels/framer_flexbuffers_generated_data.h,sha256=pm2lVOvXwztVw5VWPkkh71Ngip7Rd2tr_FtHKxfxQ2k,1136
96
+ xmos_ai_tools/runtime/include/signal/micro/kernels/irfft.h,sha256=Oy_d-zsbE69ooP4a6mLqdL768EBCuCItYtn7Yj1PDFY,1095
97
+ xmos_ai_tools/runtime/include/signal/micro/kernels/overlap_add_flexbuffers_generated_data.h,sha256=t0ynkCRBBGDNMWl6nKLU4RO9i0wfjIkc-UtowGWMKGU,1171
98
+ xmos_ai_tools/runtime/include/signal/micro/kernels/pcan_flexbuffers_generated_data.h,sha256=9Gt6f_apMN_8uW7h5FE76taH817WE2slNWowOdxUdQU,306
99
+ xmos_ai_tools/runtime/include/signal/micro/kernels/rfft.h,sha256=m1pezZigbNjfboxD_V-4GTeB8nQFQlOCfu3SWrrpqn8,1088
100
+ xmos_ai_tools/runtime/include/signal/micro/kernels/stacker_flexbuffers_generated_data.h,sha256=WaSYWx8wjSMtQaBNfb14QCPF1HIO0VCIj9x6gBLe7rI,1193
101
+ xmos_ai_tools/runtime/include/signal/micro/kernels/window_flexbuffers_generated_data.h,sha256=IqGeP-b37AOmpdnKc4KQWqPvohLU4Kt_Zh9_a5EBscw,1146
102
+ xmos_ai_tools/runtime/include/signal/src/circular_buffer.h,sha256=ZxaZIqt98Q5DJVaM41NY6nmnI3L7Ym_zpmAsE1h71Ys,4644
103
+ xmos_ai_tools/runtime/include/signal/src/complex.h,sha256=8Fvagskm2kCm3kr10PAdHrKUM83X88Mk5wUlYyAI9Vw,972
104
+ xmos_ai_tools/runtime/include/signal/src/energy.h,sha256=FAdZc7hcZAYI2KKl92FhiVbKL3GSwvO9QiV9dLPxPYc,1394
105
+ xmos_ai_tools/runtime/include/signal/src/fft_auto_scale.h,sha256=MgE9ZwbwjoAJ0PgcsaTGTbfSu1l56cNtw7-9A3eY4XI,1250
106
+ xmos_ai_tools/runtime/include/signal/src/filter_bank.h,sha256=54sS6cZmYlHT8RMa3llDgE4a8LLi438bzswv3N9UPjg,2778
107
+ xmos_ai_tools/runtime/include/signal/src/filter_bank_log.h,sha256=GfTKFhx-j8Vq7-mZXS-GwCw-iOyJbcyiOIhkTtu2Jbo,1459
108
+ xmos_ai_tools/runtime/include/signal/src/filter_bank_spectral_subtraction.h,sha256=cTCmzZVqIrFc-qthB6nRtCM3fwUuMhI5wQp3F-BGFL0,3169
109
+ xmos_ai_tools/runtime/include/signal/src/filter_bank_square_root.h,sha256=sED0F92-MNFZWimuRMOTgRmUr-UwvWjjDkWRIMhcEpA,1309
110
+ xmos_ai_tools/runtime/include/signal/src/irfft.h,sha256=640nr78l_TwXbr01Z5-oq4N_IvL2d8jG06_PciD6yvI,3251
111
+ xmos_ai_tools/runtime/include/signal/src/log.h,sha256=1aeMBy5U0n0_Qf8xYbRmraPpShQfGl9CRyA6GWNqVzI,1060
112
+ xmos_ai_tools/runtime/include/signal/src/max_abs.h,sha256=Y_vDyZVWZvJB-43-LSF4dddOKMhJQjXWZRnJ0bu8fGU,1067
113
+ xmos_ai_tools/runtime/include/signal/src/msb.h,sha256=aUE2KEiF8_YRX9PzOdm8O3-EGoIqts7Y8QT8VyqAT3M,1062
114
+ xmos_ai_tools/runtime/include/signal/src/overlap_add.h,sha256=fhZYgFdooMzWsUhQhRoWDLetfZMsogHaHq07gpN_eOw,1993
115
+ xmos_ai_tools/runtime/include/signal/src/pcan_argc_fixed.h,sha256=vmoI2BhHY7BUnO0lpEdNanWTzEESX6CEkJyPeTmPnJk,1440
116
+ xmos_ai_tools/runtime/include/signal/src/rfft.h,sha256=PNEyLf7xqkLYgrRXNORLBpnoThQotirhRwz9DVcBk1Y,3380
117
+ xmos_ai_tools/runtime/include/signal/src/square_root.h,sha256=PMUbn7Be8YG0PJue2XfAX0lu2X4RY2eUFW4KrbCuPv0,1040
118
+ xmos_ai_tools/runtime/include/signal/src/window.h,sha256=G1r1FzJ_F3zk4gY9ReX1JZVHhhYoCb8B6gNu07O1XAo,1190
119
+ xmos_ai_tools/runtime/include/signal/src/kiss_fft_wrappers/kiss_fft_common.h,sha256=WYYFu1y-7apafuidNabLq6HnWFD2ZXRpO28ow-pMVGo,1766
120
+ xmos_ai_tools/runtime/include/signal/src/kiss_fft_wrappers/kiss_fft_float.h,sha256=mNHu-YgHEkT-OxfTnX-j7FsEZVrJvCnITvoNM4ld5WY,1243
121
+ xmos_ai_tools/runtime/include/signal/src/kiss_fft_wrappers/kiss_fft_int16.h,sha256=K9FpvRavT--2YBRzkxdU6_pqehICUo2BB_xfdu-1QVU,1250
122
+ xmos_ai_tools/runtime/include/signal/src/kiss_fft_wrappers/kiss_fft_int32.h,sha256=4Z-yubujGr8-E4xuRmXCFP9KJntWvybT8RGeXYL8ERA,1251
123
+ xmos_ai_tools/runtime/include/signal/testdata/fft_test_data.h,sha256=eAGqMIeGhmlV72ymXguaV5ClJvd7TiNE1u4zzT-VT7Y,1695
124
+ xmos_ai_tools/runtime/include/tensorflow/lite/array.h,sha256=WsNZMlDCuQ-KB-f6_08BU5nldO-6QRK_j6GiRssOe0g,5170
87
125
  xmos_ai_tools/runtime/include/tensorflow/lite/builtin_op_data.h,sha256=a_Y31SN-IHSfPSPQ0zTHy-_ZFIfYWiCHf_6x5zaNZ6k,921
88
- xmos_ai_tools/runtime/include/tensorflow/lite/builtin_ops.h,sha256=GVgmzje6wkDA0ehx0lQjRgGEh4WSfez5P89QfVJDPno,6481
126
+ xmos_ai_tools/runtime/include/tensorflow/lite/builtin_ops.h,sha256=awlq6JNdpd9sr3QvHqb5EYeiGAqmypYowlWJFXzJB8c,8236
89
127
  xmos_ai_tools/runtime/include/tensorflow/lite/context_util.h,sha256=igRg2t38EfQ99CW8n7w54qKDeLddcV1k9zS9C6qj1jM,1953
90
128
  xmos_ai_tools/runtime/include/tensorflow/lite/portable_type_to_tflitetype.h,sha256=lS5yiEKYO6jJuvbAzOtIoOAoOf0Q5GaZTLUeRTxCB3A,3071
91
129
  xmos_ai_tools/runtime/include/tensorflow/lite/c/builtin_op_data.h,sha256=diH_vDptfFimACeoyhfMXTSUCFFTG_rN9WxGaKNby9A,861
92
- xmos_ai_tools/runtime/include/tensorflow/lite/c/c_api_types.h,sha256=6n0ZDQmZZLLqI5FvxObNUvK2BBP0LLoDl6fpRbehN7g,845
93
- xmos_ai_tools/runtime/include/tensorflow/lite/c/common.h,sha256=lsMqJWUcs13DDZgFJsg0iPMl38Diib66Rwkyg82NmJc,2099
94
- xmos_ai_tools/runtime/include/tensorflow/lite/core/api/error_reporter.h,sha256=OPcGpAO52rXYKe3g7R5fW0SRhwgNp2fbUYz7VbrxaDY,2947
95
- xmos_ai_tools/runtime/include/tensorflow/lite/core/api/flatbuffer_conversions.h,sha256=F5iMu5L9d7a5kfJxlOz_DrAazgqvf-qJmjdUJeZG3Nc,20512
96
- xmos_ai_tools/runtime/include/tensorflow/lite/core/api/op_resolver.h,sha256=1WASM7ktDxN7rZCRA7CgiHIPueos6sm_5IqgfldZd08,5735
130
+ xmos_ai_tools/runtime/include/tensorflow/lite/c/c_api_types.h,sha256=25MVNrukSHCG1-l19sbQTYsy4NDFJTiVwHmlAw-Zr5I,965
131
+ xmos_ai_tools/runtime/include/tensorflow/lite/c/common.h,sha256=8dWHvE3jaBjwFHY6syaDX6Uj8zhd2hhHcGdL4K-_1CY,1173
132
+ xmos_ai_tools/runtime/include/tensorflow/lite/core/macros.h,sha256=8fZFtTWlWjx8sM70cDqu6ViXtGKoA3n4q3DR2_1Lg0M,2759
133
+ xmos_ai_tools/runtime/include/tensorflow/lite/core/api/error_reporter.h,sha256=o5i8nti4RW2CYyVgnCCqSV9xmba6uS66yaHHdtqzcE4,2953
134
+ xmos_ai_tools/runtime/include/tensorflow/lite/core/api/flatbuffer_conversions.h,sha256=vPTMsImLhkMU3Y2DECRr8fr3edzc2YWL2MP9EtEBCxE,21281
97
135
  xmos_ai_tools/runtime/include/tensorflow/lite/core/api/tensor_utils.h,sha256=JLJQrzvWb8XvvxtRxJgyrVQqPjdaqrIxjRdWkhaFFpk,1016
98
- xmos_ai_tools/runtime/include/tensorflow/lite/core/c/builtin_op_data.h,sha256=7bya6a5tt5fWBz3BNFbpOjnwFOeCg-TKXOMY4cEdLnY,13108
99
- xmos_ai_tools/runtime/include/tensorflow/lite/core/c/c_api_types.h,sha256=XLW-z2boAU-jfkBbp3Jc9at9sj2s5W9cx2XgSJILxbw,6088
100
- xmos_ai_tools/runtime/include/tensorflow/lite/core/c/common.h,sha256=2ybjDb8nClZNeRGGvcJke2M_9HDubDCiievW43hJThE,53757
136
+ xmos_ai_tools/runtime/include/tensorflow/lite/core/c/builtin_op_data.h,sha256=2YkHwO7KqG9aJtKCIhC5nI4FjNYgRHPa-zr6s46_F-0,16326
137
+ xmos_ai_tools/runtime/include/tensorflow/lite/core/c/c_api_types.h,sha256=1Njy9rf2juMlbibtmW3VIAiEHKQ2C6YEgLyMdvDcFTw,6310
138
+ xmos_ai_tools/runtime/include/tensorflow/lite/core/c/common.h,sha256=1l6QZ2o1fDuc88lV1LZ_CzyZEQvPB8aAZa94Ddo_838,68697
101
139
  xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/bits.h,sha256=ECUf1QiZa_Cj8K807tCT0-24MSQgTBUE2znzWYegFaA,2916
102
140
  xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/fft.h,sha256=XXMKYjdmAn3CMmpRMcZb5uyMbJAPNKLQXXJqlHXqtQk,1381
103
141
  xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/fft_io.h,sha256=Uii9_PJ4ArpvGzHHDyG-FZHuMmIg3pRS8vOczAXHQkI,1210
@@ -122,23 +160,23 @@ xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/pca
122
160
  xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/window.h,sha256=5MolgRHCsP-9nnAsuVht4JXFyGzKVwmhPBuF3HkCYHU,1476
123
161
  xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/window_io.h,sha256=gR7TO_YI6Mgu83A6imdEiJ4sNfGMjkGxLmCq0lb2lAo,1237
124
162
  xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/window_util.h,sha256=0GnfFOwHjcxF9hxBmPwFDw_jdDmx_TwyhABGiljmJaQ,1565
125
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/kernel_util.h,sha256=iB-m9kkKLzrPshNliY0FiXyykEeygYtsuiRDXeVEfKs,13716
126
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/op_macros.h,sha256=cX487rbyDleLnRSJvqpW8VuxsfJPXa4cUy49toH_bfk,1182
163
+ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/kernel_util.h,sha256=MC1LviqVib7DwJY91I0wr0dQ4sl406T-Z-8F_ZheByA,14243
164
+ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/op_macros.h,sha256=BKqR9eM421HLoKn9hHIu6AbtQf5NZEVb-kS_OgvQL9E,1446
127
165
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/padding.h,sha256=H7yT8YmAMzotmvA6gVVGWyLnkEyTUM9GRsVU54GXmgE,5011
128
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/common.h,sha256=FJdNUlD57Bi71WHJ9hyFjpq039V80oFgqgHenGhQ16Y,52287
166
+ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/common.h,sha256=KHLYKVVAP3XlaFU3dienFAsBzsOFEqrhwWQ4RcBsRb8,55494
129
167
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/compatibility.h,sha256=LmxnXnQCUl15rvUQi0ewM5fq0OV5IcnLM38VCRa5cl0,3922
130
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/cppmath.h,sha256=3KQJsXYQsm1t-kQR_gdDVvTg9MnqZ-2UiXS_vyNQUvo,1433
168
+ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/cppmath.h,sha256=lPE9E7pl-5PTMAkhxru9fWFoCACw3PeTlybrOj6zp3M,1431
131
169
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/max.h,sha256=RbBYFfSIzOnQdwidPme2P79U2HtVdPVAFgzwM0Z06rU,1128
132
170
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/min.h,sha256=BYQ81PQBmTeVWf21FqUACTQcc3f8gF9IlCeuAD81OSY,1128
133
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/portable_tensor.h,sha256=Mo0sMd-ufGcyxwk7pmK5rPd4dY5AIssgHSdD0Ix1rRU,4310
171
+ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/portable_tensor.h,sha256=lAQ6b7gSamkhmx27VGdrV0VXYPvON_SvZXF2ex-g4mg,4927
134
172
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/portable_tensor_utils.h,sha256=pwbcCaYiBFPEWfx9m9hWnfgdCboIpv4VaqOf2seiF94,30066
135
173
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/quantization_util.h,sha256=CtvsfhzkPRPZ-dOPQ3mq7Mb4-rCpWzAFoKWmF6MUgSE,13487
136
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/runtime_shape.h,sha256=or9MyO4_xMM4QJVzxuXRSzrBMjlg6JbNa0q_MSvOHYk,5708
137
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/strided_slice_logic.h,sha256=x5tpj9sf6_agQU2Iem8WkB8GTHr40UMQxZxU9yF1VVo,8925
138
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/tensor_ctypes.h,sha256=q1p--tL1cEs6f4gmO8AjO6SaO4G1N4iMN-C_sE5oh4s,1658
139
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/types.h,sha256=EnV8c3e283f1y9plYakajgwW0IZAvkQ1GSDq-21jcMo,36773
174
+ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/runtime_shape.h,sha256=KdYkaogFd6h35YCi0yXhuxCqZ0CVrjnMjnBhQh7GBRY,6062
175
+ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/strided_slice_logic.h,sha256=PSu9NOgYzaQf0hERywzdAbtJzJvKPeE19bW1tgub_6Q,9002
176
+ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/tensor_ctypes.h,sha256=-pEhMOyxDijqeTFaJsSr3wUcOu_9T-Xc43KGEtLBcnk,1526
177
+ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/types.h,sha256=TvgihqeWXphaPQpEeZ3hJMF7Colt1yY2gmc0lP-cufc,36836
140
178
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/optimized/neon_check.h,sha256=sJOpiGhIXsdtkEfXOi7mY4LZ5i_-lgbaHd_GUZaYCMM,926
141
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/add.h,sha256=y1YrM_cNpF4lbm3I1jktUYJeT1Jyr39PLGkC_41MHks,23386
179
+ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/add.h,sha256=nn10fJzNfVVFjoDDykM1HG6uxxPCPCSUhCLvk58woSg,25356
142
180
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/add_n.h,sha256=Fv3o8DFYCsNT9mPxs5d7HiXoY3ddKUhNb3_FxUaqBCg,3508
143
181
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/arg_min_max.h,sha256=NmfZiMGrijRwF0fbCsXaw4fV5EXffyCR3_wCEf0QG_A,3171
144
182
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/batch_matmul.h,sha256=9r02qQwygQGxutNgdMpAyowfLj3cnf6Y7X7B7KL7m-w,12029
@@ -147,9 +185,9 @@ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/binary_
147
185
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/broadcast_args.h,sha256=4TRq-s3UF833FOpnRxCpLG53243An81vbvI2Kslr1zw,2227
148
186
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/broadcast_to.h,sha256=YMjSwuUWo3249rqRI-HqvM0-4iV49urJBCdqjB64dXk,3869
149
187
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/ceil.h,sha256=ueUADI2YHfngVWFo39a_5N3Um7lPV-KxVQx9CJ_qyJw,1333
150
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/comparisons.h,sha256=Yu8LFCWf3ZkYamHiZwwPgz7MUTjw-OlTe5aDT2Rh2hQ,13638
188
+ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/comparisons.h,sha256=EAA98WZCYEsilxPEdn16fSz1zgOZjts8Mk-4KyV-7T4,13157
151
189
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/concatenation.h,sha256=c1jbLPvD06cnK6ZA1-zdEGgxFXWLHE7ibzTMse2iprw,5523
152
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/conv.h,sha256=b1lUL17zBzH50NeiQU9df2wfzui8MS9s3-V8Tcyc2oA,13746
190
+ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/conv.h,sha256=5vQczSYu0Q0AGli-shJShMizLNEDhdNonGOXeDaYF08,13819
153
191
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/cumsum.h,sha256=vyatJp-MLOlDnuC2fKjv2nvuRCpNgCYd6V-U6JmE5U8,5917
154
192
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/depth_to_space.h,sha256=reymHO1rSB0wmXVrWhRhPPKEwG3SxqaM9grnHndfSe0,3148
155
193
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/depthwiseconv_float.h,sha256=aIPLBVIWnAS_KSrheba2DytBAZdmUl0ziU6oQ545WfY,4625
@@ -170,7 +208,7 @@ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/log_sof
170
208
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/logistic.h,sha256=82z7Mbw_8TpqZQLU6j9qmxhuBrOLSjBbjy-vqEPBVWo,5355
171
209
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/lstm_cell.h,sha256=HjNVgMFWWGO3_xylHhpvgNtWzsJ8x0V4I30-6PIXGJc,22771
172
210
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/maximum_minimum.h,sha256=uwakdAH2cox3b0zC-00qci3z8SPhkUHQAybEJXu_PcU,2742
173
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/mul.h,sha256=-lTZ-9f_9EDV2qNwISUbxTFonAZdW55OI1PDwazrq5A,9495
211
+ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/mul.h,sha256=Umtjk2h1ndXqtVlPdUCPptA6wHI2MZzRsnylTxw8Dj8,12262
174
212
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/neg.h,sha256=_QQKWgKM-JkCww7VPhcNwAtgwH6ilRWzJPnERpiSeYk,1321
175
213
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/pad.h,sha256=uj8PRN93OT5Fm9K954uq7voK8Dtsvv-mfgnYdh2eJgY,6998
176
214
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/pooling.h,sha256=YVZZp6mzWEb6vOrYKXspeaKWhgx-eNCZWuFQeCyArTM,14294
@@ -179,9 +217,9 @@ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/portabl
179
217
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/prelu.h,sha256=3nE7JzD34je_zJqqSj6mcsY6zdGiDMf4mVkYusQtsU0,4656
180
218
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/process_broadcast_shapes.h,sha256=cW2MPk130j-6UeAlK2D2q-kqfI1v4V7Fnyv8ZoOThdY,5409
181
219
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/quantize.h,sha256=0N9TXNmNerRIoyHZ3SV0unBTE7U1_WZwSCmoEG5ncwQ,3721
182
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/reduce.h,sha256=0LSeSgl6aTXdkQl0g5IfwsHzLzTFq-qgQRIai-_wJdU,21952
220
+ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/reduce.h,sha256=FRY6B95EjFMOMXpjk16YfyVAMyahPn2E1nyVzaWPKSc,19717
183
221
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/requantize.h,sha256=nwlRpu-OIl_G3h4AsM25gaZZk2J6QJEv99QGDoTSsw4,2958
184
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/resize_bilinear.h,sha256=EFf-f-d4zSkE8k3c309Fs9tAxPmjgBxd0-ZgiOwg8KY,10251
222
+ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/resize_bilinear.h,sha256=aYP2zgvbWdPVHMTddnHzEvQhn6IOqD_LFPBZuP1Czrw,10436
185
223
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/resize_nearest_neighbor.h,sha256=CN2OIpEvwQ7tKDnnnD82RHMvPMVl5JVK9pmVv68r604,4231
186
224
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/round.h,sha256=focWZls1pOblLY70-CMPrBmi9qEMwoLd6h4xc0xX3Xg,1862
187
225
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/select.h,sha256=-Whr6r1_Om8KbYImgzzKUbFPRvYeB2A6jrGrTM-cG-E,6643
@@ -190,48 +228,49 @@ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/softmax
190
228
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/space_to_batch_nd.h,sha256=4RZYNbKsCZZItIwqb0LjlrEwG_hViyQuw5BFbCHVfeY,4715
191
229
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/space_to_depth.h,sha256=2n0iFW8H34EyORDOZxrvbjaNOO0QZiiuiJIPjTBDfJk,3147
192
230
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/strided_slice.h,sha256=Hp0Qss20mYivXcFZAn0bUDLneMugzPKBXuQT3Ewx8C8,6424
193
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/sub.h,sha256=V4zJZA9c3uL_lQQn73-UQm06QHVUgWeNWe24IDjhcF0,22103
231
+ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/sub.h,sha256=NMqz14EsbW9eiYZVxrZih9mmaAmYeF0aQ3QtJlMfDM8,20402
194
232
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/tanh.h,sha256=cBoPKQ3Pq4RrgNUcGaTpYkfxGZPo-E5SCK3GqBMW6bM,5133
195
233
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/transpose.h,sha256=fO8fv4sBOtQkOzugr-vlS0WT4qSkHuuiSkx6bgN11Dc,6787
196
234
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/transpose_conv.h,sha256=z_KTqStq1vrWtBo7865edVXyPHzIcTYZdt1dhKYJEZU,10485
197
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/add.h,sha256=aTRZ4-yrjX4HJpqjuKfafeKqOeyuGerMddJ-XuO7fWY,10128
198
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/conv.h,sha256=768NC7TGnSjDf7rYlzp2aE5JHmxddqgxRpCivMB-lJM,11147
235
+ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/add.h,sha256=KuYfq1_bh0Jx59PSvwPXwRxZAycKfkq_E7RNluEujdg,11813
236
+ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/conv.h,sha256=Nw-AAguapE5huzoKDQgcA1Qy-ZqvHLZsbD0HJwCkvsg,11220
199
237
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/depthwise_conv.h,sha256=mNDhH_R7sy40hfP4kb53z3M_akfVK2_CNtQ3_FgaBpw,14600
200
238
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/fully_connected.h,sha256=HSaRI7LiIUWvpw_iKU0A_I6vAo9YEWyIizPH-dQJLhU,5842
201
239
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/l2normalization.h,sha256=NP_AAM1fYazOQkU1LVVA2h9zp3aAAqySvWuCRlt2-Bc,2951
202
240
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/logistic.h,sha256=4w2swY4KXfqIC_XcJYGRbfB_GHNcXJ92a36tXOBDQ2U,4640
203
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/mean.h,sha256=I799mlkqDi9cLOStp6RG7HfrZ1h8t7qaCy9UJNynSGA,3488
204
- xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/mul.h,sha256=TDFv4uonfN5IGPa6A3NZP39lV4RCsSmzKMFDFfI901k,5824
241
+ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/mean.h,sha256=b_CMYIDqThX3MqNw7egRAXAvTNe2KBWQyjilfPtkooI,882
242
+ xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/mul.h,sha256=60fpN1OD55sst5yjM8uGooVrZEQEK2rZGvp_6qLKZg8,8855
205
243
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/pooling.h,sha256=SwlyTj1ij_pXnv64hiSnli_9iV19jOFqTh9l8YrHS8o,12437
206
244
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/tanh.h,sha256=Ls06VkvNxdHirRSNSpdxF9dcxeJ_oTGhgveowi1RBIA,4310
207
245
  xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/transpose_conv.h,sha256=WxPlk-MZqW6xoEqr0zgSyBP3du9mci73DSrITM2aJkM,10525
208
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/all_ops_resolver.h,sha256=rhv7YbaMc0_pNrXFwu7tqzlD06pFGAQkYzkgc6buT8E,1479
209
246
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/compatibility.h,sha256=LJL0L26-MH62TWdjzPf7MCdFZHT1i8nRNQOMJoiPt3k,1430
210
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/debug_log.h,sha256=_66c7MRu9s5crwh6tXwsN8sc4K5_UKp4dE3naTu3RGA,1145
211
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/fake_micro_context.h,sha256=GCbd4lY7UwHo7Q8z01ybZYg37ogKkmHIkqeK_LyR_GU,2316
247
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/debug_log.h,sha256=hhuRAKBPokLGFGRBS_-ta9EQqB5T0MqIH8sNR0H_Yyg,1344
248
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/fake_micro_context.h,sha256=w9e1idQBZQq20e99RmfXKLbPHCeWFjIMLR9dDFhI5Og,2520
212
249
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/flatbuffer_utils.h,sha256=GPYkp6CD1E4LEdQeLQjwLKWvRYzxdZF8RIdAmqV3QXU,3018
213
250
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_helpers.h,sha256=oKQX_FVRc_GhNZRzChsupMTg9FQ0dQxbBRftTeQmCzU,2598
214
251
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_allocation_info.h,sha256=E58XW-n1WcJCh5hAh0zRlKtRNi9vvksO3HbBU1ZrXAE,6042
215
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_allocator.h,sha256=VKjdD6FsHEa1ShRS2YWK7bq1eErKDPsNYKDU0D5nxFg,16000
252
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_allocator.h,sha256=rRoE6XxM6b58h8i6i6hpWmgZWL4uYG-7fEi4pv8ELJA,16480
216
253
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_arena_constants.h,sha256=U81GjLJ-4mWsG-ijxO-Pi8eRzH5GIBysK5Jo1Fui5TA,1095
217
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_context.h,sha256=xnpw1BVl7-6OF_mjzMz0efcpc-YnpGDs_Wr5w1aDJUQ,9423
218
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_graph.h,sha256=3duB_nRRQnZDIiINVX2jatqspITgkZHpl3-jFWbYagg,4578
219
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_interpreter.h,sha256=Mad5Qt2PRBAhzKoM3wNd-zo1gg4eGoc9ZTO1cxMXXY0,7267
220
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_log.h,sha256=BLRWI-H2o5FTVYlFdJpMwUYjJ3MSngqeW1plGeGmXeE,1652
221
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_mutable_op_resolver.h,sha256=IzQ0Jjo6sn5R_wSWu7a6mad5QPxvdu8vWHq26pWL1oA,20053
222
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_op_resolver.h,sha256=2F31ORg46Djz1JpLwCihd-oN55ek9VMCgDAncZn6AbM,2560
223
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_profiler.h,sha256=-TOdXKkbDSeoCoPJyjOUkhBPszHyN8TkV4qFzH5JIO4,4963
254
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_common.h,sha256=mRrvTMIu26zV_0SiteJJre2C1364NrEM7bg29ntNI-0,1701
255
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_context.h,sha256=_VdxppjnUEhghr1s7Y4cafYAauRpSHNe5wNkS4biLwA,7708
256
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_graph.h,sha256=b2qoaUeEYg5tdU6GuPypoFSBDdsr_FgY8olsCsJiYDk,2711
257
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_interpreter.h,sha256=VlmFrjASd7VUj9hfKHQNswfgEtRCPEU87CrBiihYpW8,7745
258
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_interpreter_context.h,sha256=iKdSvBcg1L1JZUQk1israfOcD4OcrRlCfqjpm-O5MU4,5287
259
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_interpreter_graph.h,sha256=Vk_1hXXkJ0vp87uEd2-UqkI-x6TsBRC7-MttivH4J3w,4437
260
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_log.h,sha256=A8lMUQD1ox5MgPjWZ5sBmG23eL3VWGT6BnKlr8VFEWw,1575
261
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_mutable_op_resolver.h,sha256=yvWxbNYJ7E3Regs3fvblFXsC6QFeKeyjwkFx4GTtUVI,23270
262
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_op_resolver.h,sha256=-bgdplmeX75wo04ymTOTKcr74QOWO2ZDyeBCXrqUeXs,2662
263
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_profiler.h,sha256=0eJP8VRYKGk5K0DEpZ2C3D76RNOC-tvJC03uLHaCQPE,4962
224
264
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_profiler_interface.h,sha256=Q7t3b2p1CuqVNm2Ke2hE3YX28dK2uomxotQepikNH0M,1359
225
265
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_resource_variable.h,sha256=sYHtnF1v4e3Sgzng4rfMUEY2ziEO5zeWHkgPnXiEJF0,3378
226
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_string.h,sha256=lQxI2QgIUGDDWORJ0w5s_tZvrutihUaViyyoQbBnGMA,1474
227
266
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_time.h,sha256=c960P2KXCuv_Ar0htvnTVl8lGB39sSjFRoMKIASIK9k,1340
228
267
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_utils.h,sha256=paA_GftLY3XwtcNozc9hRhaH3F0tCCx1UzWLUVbtKSQ,5821
229
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/mock_micro_graph.h,sha256=RiAkAPkqcQGo6O_IQTuZzDOZEk_ODQCOJnx7xIAWcxk,2339
268
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/mock_micro_graph.h,sha256=_cmimCSCrnL3o7RxgOX_wP0NzUhuDwNpTKksYjfEXX0,2350
230
269
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/recording_micro_allocator.h,sha256=V4xIzHgL5K8MoCwiDlMRvNYMcIFWdBjC7YvveX64Az8,5523
231
270
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/recording_micro_interpreter.h,sha256=kfn9xO6o8JExrYdVysP0dNAtl8Hi3it7kbtgXwYO0l8,3059
232
271
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/system_setup.h,sha256=CmoOxXBK7jQ3_Lwh0j1gjTfLO40kq7Ui3LzviGntAYg,1107
233
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/test_helper_custom_ops.h,sha256=NHy3gBYtWLkvIb6QBnjaSt8HpidprF94KTVr7DXARfs,1856
234
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/test_helpers.h,sha256=4-eDc6bQFVETbGRkaKn2wsWwMHPLC4QysogH_lffzM8,13714
272
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/test_helper_custom_ops.h,sha256=CZDZJm8GCqaiVWgX8X7ZQLliGxMabOY_k5bd7sFE2h8,1804
273
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/test_helpers.h,sha256=8QHzcLEZ7SL24LQY0rkuWLEaaLwBRMVTJa-kzvPqpxY,14255
235
274
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/arena_allocator/ibuffer_allocator.h,sha256=aju6H1Vc1aM-vjYBj7Q-hK_xZ223u4mD3UxMWV2uaV0,4424
236
275
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/arena_allocator/non_persistent_arena_buffer_allocator.h,sha256=PFU6sfklol3UVl29IGG-jqdMc4Y2zy3AGdLVluRFM3U,4377
237
276
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/arena_allocator/persistent_arena_buffer_allocator.h,sha256=PLr32FMnFqWZaLplr27T_aLVblwSeFOYGjoe5d24M5U,2311
@@ -239,24 +278,7 @@ xmos_ai_tools/runtime/include/tensorflow/lite/micro/arena_allocator/recording_si
239
278
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/arena_allocator/single_arena_buffer_allocator.h,sha256=GWQr8p2h-OSA4HCPOPz2X0o2nQROei9N81sVvxgq_YM,6383
240
279
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/benchmarks/micro_benchmark.h,sha256=SaJ_T8EOT7lGH1oET--21N-Vlf9yI2hmJKkcUxazx7Y,3617
241
280
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/cortex_m_generic/debug_log_callback.h,sha256=boLsZXVPlbCm-7h6DTrdo-gfDk50ZUcCJGMWrOahNx8,1674
242
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/audio_provider.h,sha256=FaohVQvyMEqLF7fZybbxf6sdyR8nUIGb0hQnFpo-eXw,2414
243
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/command_responder.h,sha256=6rb_5-iLiqHHSZNrvj58HryLk8tpxrMIQ4JYyeRoti0,1422
244
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/feature_provider.h,sha256=H3jdDBDxsguxMvONAsQ595lPFHyvSwf4ZM4THIj9wf8,2242
245
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/main_functions.h,sha256=5yt8EX9P0H_BqOW4QzMftrNX0TY854Qfv_d60ez8rpk,1336
246
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/recognize_commands.h,sha256=4fAa0ud7kp56nicKzlf5jQGMLdM1duVYzulYEdFddxE,5738
247
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/micro_features/micro_features_generator.h,sha256=srzKu9ZkaX3eOTWV-8zODTrfD1tMjkUeFhzdBenus6Y,1424
248
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/micro_features/micro_model_settings.h,sha256=_AKrBDPCCiQVbVCgUbsgXYX6N_bBEYiWMT7Y4pIsKXk,2072
249
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/micro_features/no_feature_data_slice.h,sha256=d41h6JK2wpcXG4M4rcXmvxMWIo9kYMEUctmXDwFEzo0,1335
250
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/micro_features/no_micro_features_data.h,sha256=_ywxWsUCJ42pUA7nIk-Vkev0S9WzY10shFKSY6DYjJ4,1123
251
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/micro_features/yes_feature_data_slice.h,sha256=HM3b8ei6fEdaPFTr3WT-NEVzGNxlc5DG9z6zCeQ4EaQ,1347
252
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/micro_features/yes_micro_features_data.h,sha256=QWDyndDLrescdq3wsmQHhpHKGRPzM611BA5jYGpMINE,1129
253
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/simple_features/model.h,sha256=ULXxeohft9vuJtRYiUzaAFe7VORBD_UjPrHjZwzhzSY,1240
254
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/simple_features/no_power_spectrum_data.h,sha256=QEhLVqQUyVdYDc-hhA-wP1tOQ88s7SvCY5D0H1lkRRg,1344
255
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/simple_features/no_simple_features_data.h,sha256=4aPe3yCOnhwMafPQtj4xCQxR_m9o06eHjGSPcvAoTPM,1134
256
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/simple_features/simple_features_generator.h,sha256=gPoX_hFVwJ5KryuwKbq4D6v6Ih9w2in9G-CbZtKyMMA,1503
257
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/simple_features/simple_model_settings.h,sha256=JgVQYKgIkKFEqSO122rjIZ6T9XrB71OhQaGIw_uOiaM,2055
258
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/simple_features/yes_power_spectrum_data.h,sha256=PXELRiz6R7lhEG8yovjbIYAM2n-YMFpJ17vgUzugVlY,1350
259
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/simple_features/yes_simple_features_data.h,sha256=jJhArCVHklArIDRQpB53Vfjtqsl41hna6nK_lJ7qP-A,1140
281
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/micro_model_settings.h,sha256=bnRqWfN4CkXHEq19nl1T-dq6NnTmi9-QdPxqRuJRhU8,1510
260
282
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/network_tester/expected_output_data.h,sha256=w29btmqFxs6TpIwy-r7E3iIgeiduzvDwHs88RbH5Xqw,2668
261
283
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/network_tester/input_data.h,sha256=sZFqrE92sNXsjckm-48rAykBa1y3gGoUacYXhIeiUfo,7452
262
284
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/network_tester/network_model.h,sha256=qKQD-L3w0U0v8DsG71mrifXxLaf4UcOzieTPXVh6YIY,11881
@@ -266,37 +288,39 @@ xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/person_detection/ma
266
288
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/person_detection/model_settings.h,sha256=Q542MHVO5E60EVo-II6m7v3n2m6UHiG1FndKOJKhD80,1477
267
289
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/activation_utils.h,sha256=kJgOp1ywKAD-VH8DXTG1IvkfnAXK2hDR5cm2bk3WiPo,1954
268
290
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/activations.h,sha256=FtgBEdAdQF0_M0Wp9j1IhOiD5snAMZIlFz-q1Qa-IHU,2201
269
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/add.h,sha256=8_58hBOWVkqWKTov1n9HIXQMWa_AqUZ7bksmXyw4WeU,2460
270
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/circular_buffer.h,sha256=JFHK7c41km83jBKhngO8uneB0NlBeOCQIN9dTpXmMJA,1816
291
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/add.h,sha256=28d46_TNcSGiwiDIT1pXyVEQ81BZ6MzTuqkctRTxlg8,2483
292
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/circular_buffer.h,sha256=oBtGo7kSffgSHVqxU1fADpsTfSt_NjLsYXRFGnbDSWo,1722
271
293
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/circular_buffer_flexbuffers_generated_data.h,sha256=9dP9pAtIN-GMB7Y4FI-UJ8LDy7akIxKpGxI6YkeUecg,934
272
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/conv.h,sha256=oMZxHK0_9MyFLfU9Ukfn_R_T2iBdIPfI7FozfTz2jwY,4227
273
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/conv_test.h,sha256=Qcpew8XBt3DC284-GEUX2RMWQ6WQN01k7Ax7GwWxafo,6100
274
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/depthwise_conv.h,sha256=Hk2mcX5vsHvxq5kxgZAcgGPQLhM_IM5ptkx6vQmM1MQ,3079
294
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/conv.h,sha256=cho1h6KWskiP1u_I-QVp-i6C-xbcSGx8w_nGI-dD9SM,4335
295
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/conv_test.h,sha256=2XSFEaRKjDUuI34clJHDClSV2VXT5sSwKGUIJn4nf2w,4821
296
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/depthwise_conv.h,sha256=GfUaYrNJmvBHfhKchqQZv1_9jz0nL-GpulX3tH-tHGI,3039
275
297
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/dequantize.h,sha256=DArYFxionmmoC2ipzMQ1MZ8D-a8hgskHz8I7rAblj1U,1391
276
298
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/detection_postprocess_flexbuffers_generated_data.h,sha256=0bZr4IiPyRMCelmIWgXaa8eC4wEOC5QPfj_1t6A-2YM,1022
277
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/ethosu.h,sha256=huPgoPV3HuQWAsx0tHLCmkZO0lpRBhKhafpX648Z_xI,976
278
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/fully_connected.h,sha256=921Zyl69e9_T5KZReXanLYO96KAOxXCjk3Z4J_vZFC4,4319
299
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/ethosu.h,sha256=kKmuSaUSOrNXK9nDp7WbVbvwCUxRdocB8g7zKJ4Xvbo,971
300
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/fully_connected.h,sha256=ozRwmRZEwtbvTdGfc2nzJKRjNEWdD6PI0KZMrbxP75Q,4289
279
301
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/hard_swish.h,sha256=ZV1G3iYHEqqWqqs88Dy-1QNjh2SKXRYFvD7kDfKteZE,1115
280
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/kernel_runner.h,sha256=blH69IplMUOjIIgUoG2xrUBOwupjBXC9flYXMHIBnd4,3465
281
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/kernel_util.h,sha256=yEBrjijgTw_wWQEHxfmkuivfBjcF5DbNGFQ0GC5C9U4,6611
302
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/kernel_runner.h,sha256=dOL_QEzRB5S-lW61l-WiazdnmoVUHgMqA9UDrukacw4,3668
303
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/kernel_util.h,sha256=J3cyntM9YjB3cie6mVDDv1JbyqGG3VNh69Am0YBi1xQ,6838
282
304
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/leaky_relu.h,sha256=PhG8n9L0fcYhKfUhBlq0jAcO1L-R3mP8I4cPZMQRFXM,1414
283
305
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/logical.h,sha256=YiNhtoAArEmxbRKmaw1eu1UwLMqvJQvSK6ETxApFhqE,1283
284
306
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/logistic.h,sha256=D2qNV_3UhhcR_VdKBGMSWdYkRCxbqPLSNQW_c02Cink,1470
285
307
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/lstm_eval.h,sha256=A0ik0zN9YrGh7onW3_mOerzGnM1D5mlXlaL3ST5cNtw,23757
286
308
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/lstm_eval_test.h,sha256=S4E_MHiRtlZdsGo54rdE3nZE5HVzs9BlRp3LBZXYK3E,38451
287
309
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/lstm_shared.h,sha256=NOCbp-PlHyhWGVG9D9UM-68WIsMMt6f6Mx2VmaRHFMI,5638
288
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/micro_ops.h,sha256=6--QwOuk6qJExKrFyagKEx5iwrpTwRplK-aGpXuWHHg,5950
310
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/micro_ops.h,sha256=0E1IFTlsqoFJp6jGVvBtmYs0J8jJxDN_e8s8ii9euoo,6332
289
311
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/micro_tensor_utils.h,sha256=O41ncA-MC2lN8oVIPocBnPBlMh9WzCVMA9FkO0Ld2Bw,2221
290
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/mul.h,sha256=a9J6P1H37C4av1TNXno0oXhnemRnC-aRRESBJR6zN_Q,2588
312
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/mul.h,sha256=9hO39f7n7fy5p70OYSvud6SCru4fI0vNm6kPGKLm0e0,2583
291
313
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/pad.h,sha256=1OeJOpzFSxl5wKxjS7vZpJml1MySKbLbx78dKZrncFk,960
292
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/pooling.h,sha256=rRA-yKYF2ao6E1XxE_aHwAT_hCchqkm4M_8wLc7Uwhk,5808
314
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/pooling.h,sha256=XumH5X7rDm02LKwL7bt3UjbvdEJbj5853GoiZ9l7e1o,5768
293
315
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/prelu.h,sha256=XQE1C9Y_A_QzsYKcUK36CcytEW_6o2rgOgJRKFwDSv0,1616
294
316
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/quantize.h,sha256=v2N1duWKV59IKPQlVvDUJqFSA7u3IqqOlJd7TKSERmI,1448
295
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/reduce.h,sha256=Cy_HaqQqIDfHsAmyv4nciZHFB6Szeiy7DLpff5UcbR0,2187
296
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/softmax.h,sha256=fWMEtJt0AGFULxco-nq-GBAcEOZthBnUI3mTlZTt90k,2690
317
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/reduce.h,sha256=YLPKqqTtuQn68yfRTPwXAobHFyAKhHPhGHGTKzqKwZI,2182
318
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/reshape.h,sha256=nA-wYO083uQvC_Vz7B8iPI3aA8P-ohqobUFguqTfG8s,960
319
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/softmax.h,sha256=wA3Fs-45akIDQscrX4estxabCUM5PAY8RRlB5jGRdhA,2641
320
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/strided_slice.h,sha256=TJBqdRu4IgHa1lHip7TcEkrf0uW6JziUlAipXcK_8N0,1443
297
321
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/sub.h,sha256=EeBp-7p5UtXDn-JseeBnyRepTgoq1FjDi1l6fpOK1Ok,1970
298
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/svdf.h,sha256=DfBAkqcSFd68gVAOALjfuo2FADXCaQWIcjX5XACKDkY,4159
299
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/unidirectional_sequence_lstm.h,sha256=5umXF7URo9WXDPIetNBC0aAEiBIe4VfFR957F8FV0vw,1834
322
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/svdf.h,sha256=MKopmcQ4f2QHWC2s-gdvXjm-U_OX-p-eDWK2ePqfkfI,4169
323
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/unidirectional_sequence_lstm.h,sha256=uWwJ3ffQ3jZLjpU1mfq0B8g73Y88uOKKDALkIlN1xFQ,1809
300
324
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/mli_function_specializations.h,sha256=G01bu22vdm91yyrQ1H2NkKkDUVj3ZqKmFc6p31EGTJE,4804
301
325
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/mli_interface.h,sha256=TsffdtyHBqNRwOo39RDArreQQrUI2TBEOvD96QH76NI,2460
302
326
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/mli_slicers.h,sha256=JJ_aaCLNjb3O9SzWjd8qObfbd6pGWLWZdU3nGO-zO14,1666
@@ -311,47 +335,46 @@ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/testdata/conv_test_d
311
335
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/testdata/lstm_test_data.h,sha256=jLXTZGhDAiDHAGGtZaytBwAJQf0pGR4p_mEvDYWVvwU,26792
312
336
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/lstm_eval.h,sha256=Rce3WWyo9N1V5YrVJ-_5iQ26GOvOkHWyg0qZkVW48UQ,10363
313
337
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/lstm_shared.h,sha256=6GFhGnI1QoQjacidjw8nPMSVCP79BILZdQ57ai77ogA,3022
314
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa.h,sha256=_LjkxEdE3D-y6qN_U2kEPkKjR9ujRhtgi81s4VRFBl8,1415
338
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa.h,sha256=dX17cuLw95wtgT57Yfogkf_rWTZBxkw1Uew_VFs49dU,1451
315
339
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_add.h,sha256=Q4cGnL03cXFdc2rwZUFRubqiDujH14QJYa44qXdaHAM,1783
316
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_conv.h,sha256=Hh5KpILIagedNjPbMRphXeCOwLrY9MaNegyklMrlsK0,3315
317
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_depthwise_conv.h,sha256=Awy-21ZgIwqkQnb22cs_Mcfo4ihkXOI1E801mdha24E,3091
340
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_conv.h,sha256=8C2OxcwZlYXC06zOJlTHm9KFnK9B9btR47MCpAFXMI8,3662
341
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_depthwise_conv.h,sha256=iQ4tHHS28QCxQGXPPIny8q3SUHXX7Xtz_Sbv3FMjC4o,3163
318
342
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_fully_connected.h,sha256=QGwzBYEe9mmOgXnAnYhU5KVmYFkvNqloHDjbsKNgC3U,3376
319
343
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_pad.h,sha256=otFPUmRKc0InQrxHSD9jWsPyy_0CD5ccyyOzMzZ6lMw,1568
320
344
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_pooling.h,sha256=ZXgNNwz7-Mf13Pb1oa_PkJ9OcNmxjcb1-ld9zoB7bRc,2893
321
345
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_reduce.h,sha256=nilFqMCItsjpb-9tElfh3EBhZJaObjq6w-ivMKHSsnI,1582
322
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_reshape.h,sha256=lYSd_UQONrTZY51quw4OWdDzDI_g0on7CxIS6_7lV38,1581
323
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_softmax.h,sha256=Xm8y_95wNWu_LHQuIFoe6R0fN38PcQiQzKOvYORrY0s,2173
346
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_reshape.h,sha256=QtGNgz6sMkg4K575lExemWwVK1Vv8_rgPoGpa9ro5TY,1502
347
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_softmax.h,sha256=qI8Qp1pq70-2kwUsF9EHAL06ox0mE8J6dUKcbn9-Kn8,2209
324
348
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_svdf.h,sha256=mMlxjdjs5268LQ4zEry5-AEOlnT3El7IyLm5qbnavZY,1501
325
349
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/hifimini/fixedpoint_utils.h,sha256=uMp4_rS84T3eK6MpuRNVxwS5aV7AeJ-4TrgmggG-iWs,5192
326
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/greedy_memory_planner.h,sha256=FE4IRgT3izYPC6BSjKAosWDxga-QHUVUoVOHLIcDrvs,6934
327
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/linear_memory_planner.h,sha256=oPCPzfN6zuv4fuoHyHfzFVE47qt_RjXacYjTijK7SLM,1760
350
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/greedy_memory_planner.h,sha256=VuLp4S3YneJWI1Gr1HPRJXNreEXHRtBB-hwRzVPq0eo,7234
351
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/linear_memory_planner.h,sha256=c2rzBiH8ikSurCEB_oD-naPibPylvV82HeIP3b1qMwk,1919
328
352
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/memory_plan_struct.h,sha256=w2rsxUuwBE7RkCbO2e3mFa5IHslKoTUnhDDJ-fATek0,2999
329
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/micro_memory_planner.h,sha256=fkrpRc2DJrdzFX8mN33fvfQZnPhOyXDyWibSjZ09QvY,3754
330
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/non_persistent_buffer_planner_shim.h,sha256=LWWR8kFePlxhuEJ-OiGLO9HfVfm95A3NvY4p8cK1Mn8,6353
331
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/interpreter/src/interpreter_wrapper.h,sha256=VtRDJPPFhbYyF0BTBZZJRWLUmoG1v0HswpOxyrieBz8,1840
332
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/interpreter/src/numpy_utils.h,sha256=QzijICM-hcdqgTFnlmMG-5oGvQSJc1KN6hsBFlJs9io,1214
333
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/interpreter/src/pybind11_lib.h,sha256=vEXR8HEaPWdyk8XPVoD9yp7HntF8i_eHSjslg2chrz8,2061
334
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/interpreter/src/python_utils.h,sha256=wDcDg40b7BLWPIdpKR3sQPjSJU2Bl965KsJKtUsi7gI,1104
335
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/interpreter/src/shared_library.h,sha256=slSliTASPLqXURpTnLDdF_U8vf0PTE8RiwuxFf6HSt4,1529
353
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/micro_memory_planner.h,sha256=rwKv9jP0TO_-kCyO7fkiJXEHXLmIoC3hhgPLN5KOy0U,3930
354
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/non_persistent_buffer_planner_shim.h,sha256=6T1jgEqrlF_e7az7fY07RdShSLT3RvNWuM4kNMFAU6I,6533
355
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/interpreter/src/python_ops_resolver.h,sha256=DW4qRQLm0YXSZ-Gk8WEbH-O5Q2fjxo21oCDC5F5GLIU,1020
336
356
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/tflite_size/src/flatbuffer_size.h,sha256=ubqDq-YYjHBUdMeM0uW20kKK4FKu1IR4j33CDUhCZXA,1134
337
357
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/tflite_size/src/flatbuffer_size_wrapper.h,sha256=tz3vKLf4fStQf3CgwLYzkIwJ7zS3uNGl5qzSH4V_uIk,1160
338
- xmos_ai_tools/runtime/include/tensorflow/lite/micro/testing/micro_test.h,sha256=Z44ve7GTVQ2IfIxiN8cBDo8QoaEskOGcuNcCut_QtsE,14840
358
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/testing/micro_test.h,sha256=GvFcsh5QA4NSiqj3X1oCPahRPI0tyaiPueaSQtUdkQ0,14919
339
359
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/testing/test_conv_model.h,sha256=MvszqMPD1wcV12WZAdQWu6MGIcMsVI_L1g--n-ZSjWY,1017
340
360
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/tflite_bridge/flatbuffer_conversions_bridge.h,sha256=cJHcERhuMmPj9_fJK6ehD_yp-n6TdcJAhSlDMEHHLTs,2039
341
361
  xmos_ai_tools/runtime/include/tensorflow/lite/micro/tflite_bridge/micro_error_reporter.h,sha256=ZdU5B_wzJzSTNIJWFyGcrHQflC4EiWPC6qYEptVeZP0,1327
342
- xmos_ai_tools/runtime/include/tensorflow/lite/schema/schema_generated.h,sha256=SdGxW_ic7WvtA0r0O8phnJqyrT32P8qF5CmzN9Ef6-k,871476
362
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/tools/benchmarking/log_utils.h,sha256=J1uUyax17Z622hpcTRbCA9f5HrUOUewJa9yWj9BIlnw,10047
363
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/tools/benchmarking/metrics.h,sha256=6kFU09tv1hzMzvWeZpcZXRpmg5CZp3DN3xvbGUDi-B0,1535
364
+ xmos_ai_tools/runtime/include/tensorflow/lite/micro/tools/benchmarking/op_resolver.h,sha256=RGL4qxRe7mT-DjxD0NiFhRvVpuDn5xIuwXdrj6I9avs,6053
365
+ xmos_ai_tools/runtime/include/tensorflow/lite/schema/schema_generated.h,sha256=V6KZsZ1QF0xtjxBnXJbk32hvtWYnaBkuURjk_Hs9ivs,1073395
343
366
  xmos_ai_tools/runtime/include/tensorflow/lite/schema/schema_utils.h,sha256=Iyv5Rn__Q15pfUm-9DvFU_GFF_8rplBNwor-V5TUi_0,1321
344
- xmos_ai_tools/runtime/lib/libhost_xtflitemicro.a,sha256=8AZff-7WarO83jW7XMQJRtbN6iu-THPpjgR5g6HYubQ,12412904
345
- xmos_ai_tools/runtime/lib/libxtflitemicro.a,sha256=1upuxSn61sFznNuhiSfEx9rJq7_Jb2ugdWYF1ZI-yiE,65919000
367
+ xmos_ai_tools/runtime/lib/libhost_xtflitemicro.a,sha256=gwyg2GwRIFaTUECMQTAfYhP_ctgNtyhXXlo1GxDhyP4,12515944
368
+ xmos_ai_tools/runtime/lib/libxtflitemicro.a,sha256=IVjXvbmDU3wz6VxYK5IHAL_hiZXVOP4b8s_TU-cGHmA,66363766
346
369
  xmos_ai_tools/xformer/__init__.py,sha256=jA0xba6ZitK9HwWvDJewM8AMU4IZnx_iB1GSBrRUGvU,1627
347
370
  xmos_ai_tools/xformer/flash.py,sha256=MG4coi_Lvvg-oQmw1pomJD8eeOH4gAMjixjBFvO2BCk,6376
348
371
  xmos_ai_tools/xinterpreters/__init__.py,sha256=PFRB9VxOLKaA--j2ZvWGcmesv2C6uNYqJ_kBam68aUI,50
349
372
  xmos_ai_tools/xinterpreters/exceptions.py,sha256=HOjADxHYMPI9mN0YIbWxtw9hSeL2B6XWWwqtGtyJdVs,577
350
373
  xmos_ai_tools/xinterpreters/host_interpreter.py,sha256=vzRXpXwoObdbR7x-lnmfAxU5jHbneUead0BsKbT9BbI,25174
351
- xmos_ai_tools/xinterpreters/libs/macos/xtflm_python.1.0.1.dylib,sha256=bQ5IcoCLWmVyni1emd8UTkIciVjPSWD4IwlLJUIctsc,1165093
352
- xmos_ai_tools/xinterpreters/libs/macos/xtflm_python.dylib,sha256=bQ5IcoCLWmVyni1emd8UTkIciVjPSWD4IwlLJUIctsc,1165093
353
- xmos_ai_tools-1.1.2.dev216.data/data/bin/xcore-opt,sha256=084zHlrHWKppSF-UsCFZ6lhhooaKJcyCGOZGnxVP-PI,120077206
354
- xmos_ai_tools-1.1.2.dev216.dist-info/METADATA,sha256=xaj3GkDDaPb3PWJwog9Jb3uY7_o6r6al49KwQw0twYc,1413
355
- xmos_ai_tools-1.1.2.dev216.dist-info/WHEEL,sha256=PkAYlV1Gn64hBvBFa6n2EuzPEBDPFXG1tQUu2fonuWE,107
356
- xmos_ai_tools-1.1.2.dev216.dist-info/top_level.txt,sha256=YWegea73ll3tMlRWRdHJemUy2VOuEYDdOIaffxu_eF0,14
357
- xmos_ai_tools-1.1.2.dev216.dist-info/RECORD,,
374
+ xmos_ai_tools/xinterpreters/libs/macos/xtflm_python.1.0.1.dylib,sha256=QvFQwN3bhX9iuecXucwUGMni2sNOIGFC5mV7tPwqhMo,1170101
375
+ xmos_ai_tools/xinterpreters/libs/macos/xtflm_python.dylib,sha256=QvFQwN3bhX9iuecXucwUGMni2sNOIGFC5mV7tPwqhMo,1170101
376
+ xmos_ai_tools-1.1.2.dev236.data/data/bin/xcore-opt,sha256=LW5lajLvLD4Fjgnn6HlgMRw-U7C5v2DeJt1e32nyXMY,143529750
377
+ xmos_ai_tools-1.1.2.dev236.dist-info/METADATA,sha256=1xtBshrPUJE0pm2hZjGtxHJl2MoCYEp1z1jcTmoV8ac,1363
378
+ xmos_ai_tools-1.1.2.dev236.dist-info/WHEEL,sha256=IPDqJGqJLX0u0WXkppbx2qlPtK5mpK7tD_Q6j3xfzzw,107
379
+ xmos_ai_tools-1.1.2.dev236.dist-info/top_level.txt,sha256=YWegea73ll3tMlRWRdHJemUy2VOuEYDdOIaffxu_eF0,14
380
+ xmos_ai_tools-1.1.2.dev236.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.3)
2
+ Generator: bdist_wheel (0.42.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: py3-none-macosx_11_0_arm64
5
5