xmos-ai-tools 1.3.2.dev180__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.
Files changed (395) hide show
  1. xmos_ai_tools/__init__.py +7 -0
  2. xmos_ai_tools/io_server/__init__.py +151 -0
  3. xmos_ai_tools/runtime/__init__.py +0 -0
  4. xmos_ai_tools/runtime/buildfiles/aitoolslib.cmake +13 -0
  5. xmos_ai_tools/runtime/buildfiles/aitoolslib.make +8 -0
  6. xmos_ai_tools/runtime/include/flash_server.h +73 -0
  7. xmos_ai_tools/runtime/include/flatbuffers/allocator.h +68 -0
  8. xmos_ai_tools/runtime/include/flatbuffers/array.h +243 -0
  9. xmos_ai_tools/runtime/include/flatbuffers/base.h +474 -0
  10. xmos_ai_tools/runtime/include/flatbuffers/bfbs_generator.h +43 -0
  11. xmos_ai_tools/runtime/include/flatbuffers/buffer.h +142 -0
  12. xmos_ai_tools/runtime/include/flatbuffers/buffer_ref.h +53 -0
  13. xmos_ai_tools/runtime/include/flatbuffers/code_generators.h +235 -0
  14. xmos_ai_tools/runtime/include/flatbuffers/default_allocator.h +64 -0
  15. xmos_ai_tools/runtime/include/flatbuffers/detached_buffer.h +114 -0
  16. xmos_ai_tools/runtime/include/flatbuffers/flatbuffer_builder.h +1197 -0
  17. xmos_ai_tools/runtime/include/flatbuffers/flatbuffers.h +270 -0
  18. xmos_ai_tools/runtime/include/flatbuffers/flatc.h +111 -0
  19. xmos_ai_tools/runtime/include/flatbuffers/flexbuffers.h +1897 -0
  20. xmos_ai_tools/runtime/include/flatbuffers/grpc.h +300 -0
  21. xmos_ai_tools/runtime/include/flatbuffers/hash.h +127 -0
  22. xmos_ai_tools/runtime/include/flatbuffers/idl.h +1232 -0
  23. xmos_ai_tools/runtime/include/flatbuffers/minireflect.h +419 -0
  24. xmos_ai_tools/runtime/include/flatbuffers/pch/flatc_pch.h +39 -0
  25. xmos_ai_tools/runtime/include/flatbuffers/pch/pch.h +38 -0
  26. xmos_ai_tools/runtime/include/flatbuffers/reflection.h +502 -0
  27. xmos_ai_tools/runtime/include/flatbuffers/reflection_generated.h +1449 -0
  28. xmos_ai_tools/runtime/include/flatbuffers/registry.h +128 -0
  29. xmos_ai_tools/runtime/include/flatbuffers/stl_emulation.h +509 -0
  30. xmos_ai_tools/runtime/include/flatbuffers/string.h +64 -0
  31. xmos_ai_tools/runtime/include/flatbuffers/struct.h +53 -0
  32. xmos_ai_tools/runtime/include/flatbuffers/table.h +168 -0
  33. xmos_ai_tools/runtime/include/flatbuffers/util.h +690 -0
  34. xmos_ai_tools/runtime/include/flatbuffers/vector.h +370 -0
  35. xmos_ai_tools/runtime/include/flatbuffers/vector_downward.h +271 -0
  36. xmos_ai_tools/runtime/include/flatbuffers/verifier.h +283 -0
  37. xmos_ai_tools/runtime/include/ioserver.h +44 -0
  38. xmos_ai_tools/runtime/include/lib_nn/api/TransposeConv.h +24 -0
  39. xmos_ai_tools/runtime/include/lib_nn/api/add_int16.h +27 -0
  40. xmos_ai_tools/runtime/include/lib_nn/api/add_int16_transform.h +42 -0
  41. xmos_ai_tools/runtime/include/lib_nn/api/dequantize_int16.h +22 -0
  42. xmos_ai_tools/runtime/include/lib_nn/api/dequantize_int16_transform.h +34 -0
  43. xmos_ai_tools/runtime/include/lib_nn/api/expand_8_to_16.h +8 -0
  44. xmos_ai_tools/runtime/include/lib_nn/api/multiply_int16.h +42 -0
  45. xmos_ai_tools/runtime/include/lib_nn/api/multiply_int16_transform.h +71 -0
  46. xmos_ai_tools/runtime/include/lib_nn/api/nn_api.h +15 -0
  47. xmos_ai_tools/runtime/include/lib_nn/api/nn_bin_types.h +14 -0
  48. xmos_ai_tools/runtime/include/lib_nn/api/nn_config.h +287 -0
  49. xmos_ai_tools/runtime/include/lib_nn/api/nn_conv2d_structs.h +72 -0
  50. xmos_ai_tools/runtime/include/lib_nn/api/nn_image.h +26 -0
  51. xmos_ai_tools/runtime/include/lib_nn/api/nn_layers.h +307 -0
  52. xmos_ai_tools/runtime/include/lib_nn/api/nn_op_helper.h +132 -0
  53. xmos_ai_tools/runtime/include/lib_nn/api/nn_op_utils.h +153 -0
  54. xmos_ai_tools/runtime/include/lib_nn/api/nn_operator.h +18 -0
  55. xmos_ai_tools/runtime/include/lib_nn/api/nn_pooling.h +551 -0
  56. xmos_ai_tools/runtime/include/lib_nn/api/nn_types.h +83 -0
  57. xmos_ai_tools/runtime/include/lib_nn/api/nn_window_params.h +55 -0
  58. xmos_ai_tools/runtime/include/lib_nn/api/output_transform_fn_int16.h +54 -0
  59. xmos_ai_tools/runtime/include/lib_nn/api/output_transform_fn_int16_kernel_transform.h +37 -0
  60. xmos_ai_tools/runtime/include/lib_nn/api/output_transform_fn_int16_mappings.h +13 -0
  61. xmos_ai_tools/runtime/include/lib_nn/api/quadratic_approximation.h +83 -0
  62. xmos_ai_tools/runtime/include/lib_nn/api/quadratic_interpolation.h +23 -0
  63. xmos_ai_tools/runtime/include/lib_nn/api/quantize_int16.h +22 -0
  64. xmos_ai_tools/runtime/include/lib_nn/api/quantize_int16_transform.h +33 -0
  65. xmos_ai_tools/runtime/include/lib_nn/api/version.h +13 -0
  66. xmos_ai_tools/runtime/include/lib_nn/api/vpu_memmove_word_aligned.h +15 -0
  67. xmos_ai_tools/runtime/include/lib_nn/api/vpu_memset_256.h +55 -0
  68. xmos_ai_tools/runtime/include/lib_nn/api/vpu_sim.h +118 -0
  69. xmos_ai_tools/runtime/include/lib_nn/api/xs3_vpu.h +216 -0
  70. xmos_ai_tools/runtime/include/lib_nn/api/xs3a_registers.h +2869 -0
  71. xmos_ai_tools/runtime/include/lib_nn/src/asm/asm_constants.h +41 -0
  72. xmos_ai_tools/runtime/include/lib_nn/src/asm/window_op_plan.h +25 -0
  73. xmos_ai_tools/runtime/include/lib_tflite_micro/api/fast_flash.h +53 -0
  74. xmos_ai_tools/runtime/include/lib_tflite_micro/api/inference_engine.h +218 -0
  75. xmos_ai_tools/runtime/include/lib_tflite_micro/api/load_weights.h +64 -0
  76. xmos_ai_tools/runtime/include/lib_tflite_micro/api/memory_parallel_transport.h +52 -0
  77. xmos_ai_tools/runtime/include/lib_tflite_micro/api/version.h +13 -0
  78. xmos_ai_tools/runtime/include/lib_tflite_micro/api/xcore_config.h +17 -0
  79. xmos_ai_tools/runtime/include/lib_tflite_micro/api/xcore_device_memory.h +62 -0
  80. xmos_ai_tools/runtime/include/lib_tflite_micro/api/xcore_shared_config.h +31 -0
  81. xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/conv2d_float.h +155 -0
  82. xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_custom_options.h +28 -0
  83. xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_error_reporter.h +32 -0
  84. xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_interpreter.h +49 -0
  85. xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_ops.h +79 -0
  86. xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_profiler.h +49 -0
  87. xmos_ai_tools/runtime/include/lib_tflite_micro/src/tflite-xcore-kernels/xcore_utils.h +160 -0
  88. xmos_ai_tools/runtime/include/lib_tflite_micro/src/thread_call.h +119 -0
  89. xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/legacy/usb_defs.h +4 -0
  90. xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/legacy/usb_device.h +4 -0
  91. xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/legacy/usb_std_descriptors.h +4 -0
  92. xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/legacy/usb_std_requests.h +4 -0
  93. xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/xud.h +518 -0
  94. xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/xud_conf_default.h +11 -0
  95. xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/xud_device.h +87 -0
  96. xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/xud_std_descriptors.h +191 -0
  97. xmos_ai_tools/runtime/include/lib_xud/lib_xud/api/xud_std_requests.h +120 -0
  98. xmos_ai_tools/runtime/include/lib_xud/lib_xud/src/user/XUD_USB_Defines.h +70 -0
  99. xmos_ai_tools/runtime/include/lib_xud/lib_xud/src/user/class/hid.h +23 -0
  100. xmos_ai_tools/runtime/include/lib_xud/lib_xud/src/user/class/usbaudio10.h +30 -0
  101. xmos_ai_tools/runtime/include/lib_xud/lib_xud/src/user/class/usbaudio20.h +357 -0
  102. xmos_ai_tools/runtime/include/lib_xud/lib_xud/src/user/class/usbaudiocommon.h +168 -0
  103. xmos_ai_tools/runtime/include/signal/micro/kernels/delay_flexbuffers_generated_data.h +25 -0
  104. xmos_ai_tools/runtime/include/signal/micro/kernels/energy_flexbuffers_generated_data.h +28 -0
  105. xmos_ai_tools/runtime/include/signal/micro/kernels/fft_flexbuffers_generated_data.h +37 -0
  106. xmos_ai_tools/runtime/include/signal/micro/kernels/filter_bank_flexbuffers_generated_data.h +25 -0
  107. xmos_ai_tools/runtime/include/signal/micro/kernels/filter_bank_log_flexbuffers_generated_data.h +27 -0
  108. xmos_ai_tools/runtime/include/signal/micro/kernels/filter_bank_spectral_subtraction_flexbuffers_generated_data.h +26 -0
  109. xmos_ai_tools/runtime/include/signal/micro/kernels/framer_flexbuffers_generated_data.h +25 -0
  110. xmos_ai_tools/runtime/include/signal/micro/kernels/irfft.h +31 -0
  111. xmos_ai_tools/runtime/include/signal/micro/kernels/overlap_add_flexbuffers_generated_data.h +25 -0
  112. xmos_ai_tools/runtime/include/signal/micro/kernels/pcan_flexbuffers_generated_data.h +7 -0
  113. xmos_ai_tools/runtime/include/signal/micro/kernels/rfft.h +31 -0
  114. xmos_ai_tools/runtime/include/signal/micro/kernels/stacker_flexbuffers_generated_data.h +25 -0
  115. xmos_ai_tools/runtime/include/signal/micro/kernels/window_flexbuffers_generated_data.h +25 -0
  116. xmos_ai_tools/runtime/include/signal/src/circular_buffer.h +118 -0
  117. xmos_ai_tools/runtime/include/signal/src/complex.h +29 -0
  118. xmos_ai_tools/runtime/include/signal/src/energy.h +38 -0
  119. xmos_ai_tools/runtime/include/signal/src/fft_auto_scale.h +35 -0
  120. xmos_ai_tools/runtime/include/signal/src/filter_bank.h +69 -0
  121. xmos_ai_tools/runtime/include/signal/src/filter_bank_log.h +38 -0
  122. xmos_ai_tools/runtime/include/signal/src/filter_bank_spectral_subtraction.h +73 -0
  123. xmos_ai_tools/runtime/include/signal/src/filter_bank_square_root.h +34 -0
  124. xmos_ai_tools/runtime/include/signal/src/irfft.h +84 -0
  125. xmos_ai_tools/runtime/include/signal/src/kiss_fft_wrappers/kiss_fft_common.h +49 -0
  126. xmos_ai_tools/runtime/include/signal/src/kiss_fft_wrappers/kiss_fft_float.h +31 -0
  127. xmos_ai_tools/runtime/include/signal/src/kiss_fft_wrappers/kiss_fft_int16.h +30 -0
  128. xmos_ai_tools/runtime/include/signal/src/kiss_fft_wrappers/kiss_fft_int32.h +31 -0
  129. xmos_ai_tools/runtime/include/signal/src/log.h +30 -0
  130. xmos_ai_tools/runtime/include/signal/src/max_abs.h +31 -0
  131. xmos_ai_tools/runtime/include/signal/src/msb.h +32 -0
  132. xmos_ai_tools/runtime/include/signal/src/overlap_add.h +46 -0
  133. xmos_ai_tools/runtime/include/signal/src/pcan_argc_fixed.h +41 -0
  134. xmos_ai_tools/runtime/include/signal/src/rfft.h +85 -0
  135. xmos_ai_tools/runtime/include/signal/src/square_root.h +32 -0
  136. xmos_ai_tools/runtime/include/signal/src/window.h +31 -0
  137. xmos_ai_tools/runtime/include/signal/testdata/fft_test_data.h +48 -0
  138. xmos_ai_tools/runtime/include/tensorflow/lite/array.h +156 -0
  139. xmos_ai_tools/runtime/include/tensorflow/lite/builtin_op_data.h +22 -0
  140. xmos_ai_tools/runtime/include/tensorflow/lite/builtin_ops.h +241 -0
  141. xmos_ai_tools/runtime/include/tensorflow/lite/c/builtin_op_data.h +20 -0
  142. xmos_ai_tools/runtime/include/tensorflow/lite/c/c_api_types.h +26 -0
  143. xmos_ai_tools/runtime/include/tensorflow/lite/c/common.h +30 -0
  144. xmos_ai_tools/runtime/include/tensorflow/lite/context_util.h +54 -0
  145. xmos_ai_tools/runtime/include/tensorflow/lite/core/api/error_reporter.h +72 -0
  146. xmos_ai_tools/runtime/include/tensorflow/lite/core/api/flatbuffer_conversions.h +440 -0
  147. xmos_ai_tools/runtime/include/tensorflow/lite/core/api/tensor_utils.h +28 -0
  148. xmos_ai_tools/runtime/include/tensorflow/lite/core/c/builtin_op_data.h +626 -0
  149. xmos_ai_tools/runtime/include/tensorflow/lite/core/c/c_api_types.h +178 -0
  150. xmos_ai_tools/runtime/include/tensorflow/lite/core/c/common.h +1496 -0
  151. xmos_ai_tools/runtime/include/tensorflow/lite/core/macros.h +78 -0
  152. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/bits.h +102 -0
  153. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/fft.h +50 -0
  154. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/fft_io.h +34 -0
  155. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/fft_util.h +34 -0
  156. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/filterbank.h +63 -0
  157. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/filterbank_io.h +35 -0
  158. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/filterbank_util.h +50 -0
  159. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/frontend.h +64 -0
  160. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/frontend_io.h +31 -0
  161. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/frontend_util.h +52 -0
  162. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/kiss_fft_common.h +48 -0
  163. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/kiss_fft_int16.h +33 -0
  164. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/log_lut.h +40 -0
  165. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/log_scale.h +39 -0
  166. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/log_scale_io.h +33 -0
  167. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/log_scale_util.h +45 -0
  168. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/noise_reduction.h +46 -0
  169. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/noise_reduction_io.h +36 -0
  170. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/noise_reduction_util.h +50 -0
  171. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/pcan_gain_control.h +47 -0
  172. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/pcan_gain_control_util.h +57 -0
  173. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/window.h +49 -0
  174. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/window_io.h +34 -0
  175. xmos_ai_tools/runtime/include/tensorflow/lite/experimental/microfrontend/lib/window_util.h +45 -0
  176. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/common.h +1358 -0
  177. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/compatibility.h +122 -0
  178. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/cppmath.h +40 -0
  179. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/max.h +35 -0
  180. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/min.h +35 -0
  181. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/optimized/neon_check.h +20 -0
  182. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/portable_tensor.h +141 -0
  183. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/portable_tensor_utils.h +623 -0
  184. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/quantization_util.h +292 -0
  185. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/add.h +561 -0
  186. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/add_n.h +86 -0
  187. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/arg_min_max.h +88 -0
  188. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/batch_matmul.h +275 -0
  189. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/batch_to_space_nd.h +101 -0
  190. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/binary_function.h +91 -0
  191. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/broadcast_args.h +56 -0
  192. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/broadcast_to.h +97 -0
  193. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/ceil.h +37 -0
  194. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/comparisons.h +271 -0
  195. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/concatenation.h +141 -0
  196. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/conv.h +289 -0
  197. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/cumsum.h +175 -0
  198. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/depth_to_space.h +79 -0
  199. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/depthwiseconv_float.h +100 -0
  200. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/depthwiseconv_uint8.h +319 -0
  201. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/dequantize.h +78 -0
  202. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/div.h +247 -0
  203. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/elu.h +37 -0
  204. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/exp.h +38 -0
  205. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/fill.h +38 -0
  206. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/floor.h +39 -0
  207. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/floor_div.h +35 -0
  208. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/floor_mod.h +44 -0
  209. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/fully_connected.h +323 -0
  210. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/hard_swish.h +168 -0
  211. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/add.h +250 -0
  212. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/conv.h +241 -0
  213. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/depthwise_conv.h +291 -0
  214. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/fully_connected.h +126 -0
  215. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/l2normalization.h +67 -0
  216. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/logistic.h +121 -0
  217. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/mean.h +18 -0
  218. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/mul.h +194 -0
  219. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/pooling.h +264 -0
  220. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/tanh.h +117 -0
  221. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/integer_ops/transpose_conv.h +224 -0
  222. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/l2normalization.h +90 -0
  223. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/leaky_relu.h +69 -0
  224. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/log_softmax.h +256 -0
  225. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/logistic.h +132 -0
  226. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/lstm_cell.h +422 -0
  227. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/maximum_minimum.h +64 -0
  228. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/mul.h +267 -0
  229. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/neg.h +37 -0
  230. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/pad.h +169 -0
  231. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/pooling.h +303 -0
  232. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/portable_tensor_utils.h +333 -0
  233. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/portable_tensor_utils_impl.h +244 -0
  234. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/prelu.h +111 -0
  235. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/process_broadcast_shapes.h +140 -0
  236. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/quantize.h +89 -0
  237. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/reduce.h +491 -0
  238. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/requantize.h +70 -0
  239. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/resize_bilinear.h +233 -0
  240. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/resize_nearest_neighbor.h +102 -0
  241. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/round.h +51 -0
  242. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/select.h +151 -0
  243. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/slice.h +80 -0
  244. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/softmax.h +233 -0
  245. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/space_to_batch_nd.h +109 -0
  246. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/space_to_depth.h +80 -0
  247. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/strided_slice.h +147 -0
  248. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/sub.h +465 -0
  249. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/tanh.h +129 -0
  250. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/transpose.h +203 -0
  251. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/reference/transpose_conv.h +225 -0
  252. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/runtime_shape.h +168 -0
  253. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/strided_slice_logic.h +278 -0
  254. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/tensor_ctypes.h +42 -0
  255. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/internal/types.h +1096 -0
  256. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/kernel_util.h +341 -0
  257. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/op_macros.h +49 -0
  258. xmos_ai_tools/runtime/include/tensorflow/lite/kernels/padding.h +115 -0
  259. xmos_ai_tools/runtime/include/tensorflow/lite/micro/arena_allocator/ibuffer_allocator.h +100 -0
  260. xmos_ai_tools/runtime/include/tensorflow/lite/micro/arena_allocator/non_persistent_arena_buffer_allocator.h +104 -0
  261. xmos_ai_tools/runtime/include/tensorflow/lite/micro/arena_allocator/persistent_arena_buffer_allocator.h +58 -0
  262. xmos_ai_tools/runtime/include/tensorflow/lite/micro/arena_allocator/recording_single_arena_buffer_allocator.h +63 -0
  263. xmos_ai_tools/runtime/include/tensorflow/lite/micro/arena_allocator/single_arena_buffer_allocator.h +144 -0
  264. xmos_ai_tools/runtime/include/tensorflow/lite/micro/benchmarks/micro_benchmark.h +95 -0
  265. xmos_ai_tools/runtime/include/tensorflow/lite/micro/compatibility.h +32 -0
  266. xmos_ai_tools/runtime/include/tensorflow/lite/micro/cortex_m_generic/debug_log_callback.h +49 -0
  267. xmos_ai_tools/runtime/include/tensorflow/lite/micro/debug_log.h +38 -0
  268. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/micro_speech/micro_model_settings.h +37 -0
  269. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/network_tester/expected_output_data.h +47 -0
  270. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/network_tester/input_data.h +108 -0
  271. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/network_tester/network_model.h +166 -0
  272. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/person_detection/detection_responder.h +32 -0
  273. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/person_detection/image_provider.h +38 -0
  274. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/person_detection/main_functions.h +37 -0
  275. xmos_ai_tools/runtime/include/tensorflow/lite/micro/examples/person_detection/model_settings.h +35 -0
  276. xmos_ai_tools/runtime/include/tensorflow/lite/micro/fake_micro_context.h +70 -0
  277. xmos_ai_tools/runtime/include/tensorflow/lite/micro/flatbuffer_utils.h +65 -0
  278. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/activation_utils.h +57 -0
  279. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/activations.h +68 -0
  280. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/add.h +78 -0
  281. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/mli_function_specializations.h +141 -0
  282. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/mli_interface.h +75 -0
  283. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/mli_slicers.h +56 -0
  284. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/mli_tf_utils.h +310 -0
  285. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/scratch_buf_mgr.h +145 -0
  286. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/arc_mli/scratch_buffers.h +78 -0
  287. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/ceva/ceva_common.h +24 -0
  288. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/ceva/ceva_tflm_lib.h +613 -0
  289. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/ceva/mcps_macros.h +115 -0
  290. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/ceva/types.h +1286 -0
  291. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/circular_buffer.h +45 -0
  292. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/circular_buffer_flexbuffers_generated_data.h +22 -0
  293. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/conv.h +117 -0
  294. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/conv_test.h +94 -0
  295. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/depthwise_conv.h +80 -0
  296. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/dequantize.h +38 -0
  297. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/detection_postprocess_flexbuffers_generated_data.h +25 -0
  298. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/ethosu.h +28 -0
  299. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/fully_connected.h +112 -0
  300. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/hard_swish.h +30 -0
  301. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/kernel_runner.h +86 -0
  302. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/kernel_util.h +150 -0
  303. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/leaky_relu.h +43 -0
  304. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/logical.h +35 -0
  305. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/logistic.h +42 -0
  306. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/lstm_eval.h +541 -0
  307. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/lstm_eval_test.h +817 -0
  308. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/lstm_shared.h +150 -0
  309. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/micro_ops.h +158 -0
  310. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/micro_tensor_utils.h +56 -0
  311. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/mul.h +74 -0
  312. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/pad.h +27 -0
  313. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/pooling.h +142 -0
  314. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/prelu.h +39 -0
  315. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/quantize.h +37 -0
  316. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/reduce.h +65 -0
  317. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/reshape.h +26 -0
  318. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/softmax.h +67 -0
  319. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/strided_slice.h +40 -0
  320. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/sub.h +60 -0
  321. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/svdf.h +100 -0
  322. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/testdata/conv_test_data.h +37 -0
  323. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/testdata/lstm_test_data.h +579 -0
  324. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/unidirectional_sequence_lstm.h +47 -0
  325. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/hifimini/fixedpoint_utils.h +139 -0
  326. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/lstm_eval.h +216 -0
  327. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/lstm_shared.h +78 -0
  328. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa.h +38 -0
  329. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_add.h +48 -0
  330. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_conv.h +89 -0
  331. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_depthwise_conv.h +74 -0
  332. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_fully_connected.h +78 -0
  333. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_pad.h +49 -0
  334. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_pooling.h +76 -0
  335. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_reduce.h +47 -0
  336. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_reshape.h +44 -0
  337. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_softmax.h +58 -0
  338. xmos_ai_tools/runtime/include/tensorflow/lite/micro/kernels/xtensa/xtensa_svdf.h +39 -0
  339. xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_helpers.h +64 -0
  340. xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/greedy_memory_planner.h +170 -0
  341. xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/linear_memory_planner.h +53 -0
  342. xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/memory_plan_struct.h +73 -0
  343. xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/micro_memory_planner.h +95 -0
  344. xmos_ai_tools/runtime/include/tensorflow/lite/micro/memory_planner/non_persistent_buffer_planner_shim.h +133 -0
  345. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_allocation_info.h +138 -0
  346. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_allocator.h +351 -0
  347. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_arena_constants.h +28 -0
  348. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_common.h +38 -0
  349. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_context.h +176 -0
  350. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_graph.h +79 -0
  351. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_interpreter.h +189 -0
  352. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_interpreter_context.h +125 -0
  353. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_interpreter_graph.h +110 -0
  354. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_log.h +42 -0
  355. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_mutable_op_resolver.h +708 -0
  356. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_op_resolver.h +62 -0
  357. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_profiler.h +140 -0
  358. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_profiler_interface.h +38 -0
  359. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_resource_variable.h +89 -0
  360. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_time.h +36 -0
  361. xmos_ai_tools/runtime/include/tensorflow/lite/micro/micro_utils.h +162 -0
  362. xmos_ai_tools/runtime/include/tensorflow/lite/micro/mock_micro_graph.h +60 -0
  363. xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/interpreter/src/python_ops_resolver.h +21 -0
  364. xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/tflite_size/src/flatbuffer_size.h +30 -0
  365. xmos_ai_tools/runtime/include/tensorflow/lite/micro/python/tflite_size/src/flatbuffer_size_wrapper.h +33 -0
  366. xmos_ai_tools/runtime/include/tensorflow/lite/micro/recording_micro_allocator.h +125 -0
  367. xmos_ai_tools/runtime/include/tensorflow/lite/micro/recording_micro_interpreter.h +69 -0
  368. xmos_ai_tools/runtime/include/tensorflow/lite/micro/system_setup.h +27 -0
  369. xmos_ai_tools/runtime/include/tensorflow/lite/micro/test_helper_custom_ops.h +49 -0
  370. xmos_ai_tools/runtime/include/tensorflow/lite/micro/test_helpers.h +334 -0
  371. xmos_ai_tools/runtime/include/tensorflow/lite/micro/testing/micro_test.h +267 -0
  372. xmos_ai_tools/runtime/include/tensorflow/lite/micro/testing/test_conv_model.h +23 -0
  373. xmos_ai_tools/runtime/include/tensorflow/lite/micro/tflite_bridge/flatbuffer_conversions_bridge.h +45 -0
  374. xmos_ai_tools/runtime/include/tensorflow/lite/micro/tflite_bridge/micro_error_reporter.h +36 -0
  375. xmos_ai_tools/runtime/include/tensorflow/lite/micro/tools/benchmarking/log_utils.h +273 -0
  376. xmos_ai_tools/runtime/include/tensorflow/lite/micro/tools/benchmarking/metrics.h +41 -0
  377. xmos_ai_tools/runtime/include/tensorflow/lite/micro/tools/benchmarking/op_resolver.h +127 -0
  378. xmos_ai_tools/runtime/include/tensorflow/lite/portable_type_to_tflitetype.h +75 -0
  379. xmos_ai_tools/runtime/include/tensorflow/lite/schema/schema_generated.h +24644 -0
  380. xmos_ai_tools/runtime/include/tensorflow/lite/schema/schema_utils.h +33 -0
  381. xmos_ai_tools/runtime/include/tile_ram_server.h +38 -0
  382. xmos_ai_tools/runtime/lib/libhost_xtflitemicro.a +0 -0
  383. xmos_ai_tools/runtime/lib/libxtflitemicro.a +0 -0
  384. xmos_ai_tools/xformer/__init__.py +64 -0
  385. xmos_ai_tools/xformer/flash.py +190 -0
  386. xmos_ai_tools/xinterpreters/__init__.py +1 -0
  387. xmos_ai_tools/xinterpreters/exceptions.py +38 -0
  388. xmos_ai_tools/xinterpreters/host_interpreter.py +651 -0
  389. xmos_ai_tools/xinterpreters/libs/macos/xtflm_python.1.0.1.dylib +0 -0
  390. xmos_ai_tools/xinterpreters/libs/macos/xtflm_python.dylib +0 -0
  391. xmos_ai_tools-1.3.2.dev180.data/data/bin/xcore-opt +0 -0
  392. xmos_ai_tools-1.3.2.dev180.dist-info/METADATA +33 -0
  393. xmos_ai_tools-1.3.2.dev180.dist-info/RECORD +395 -0
  394. xmos_ai_tools-1.3.2.dev180.dist-info/WHEEL +5 -0
  395. xmos_ai_tools-1.3.2.dev180.dist-info/top_level.txt +1 -0
@@ -0,0 +1,7 @@
1
+ from importlib.metadata import version, PackageNotFoundError
2
+
3
+ try:
4
+ __version__ = version(__name__)
5
+ except PackageNotFoundError:
6
+ # package is not installed
7
+ pass
@@ -0,0 +1,151 @@
1
+ # Copyright (c) 2020, XMOS Ltd, All rights reserved
2
+
3
+ import usb
4
+ from typing import Tuple
5
+ import numpy as np
6
+
7
+ IOSERVER_INVOKE = int(0x01)
8
+ IOSERVER_TENSOR_SEND_OUTPUT = int(0x02)
9
+ IOSERVER_TENSOR_RECV_INPUT = int(0x03)
10
+ IOSERVER_RESET = int(0x07)
11
+ IOSERVER_EXIT = int(0x08)
12
+
13
+
14
+ class IOServerError(Exception):
15
+ """Error from device"""
16
+
17
+ pass
18
+
19
+
20
+ class IOError(IOServerError):
21
+ """IO Error from device"""
22
+
23
+ pass
24
+
25
+
26
+ def handle_usb_error(func):
27
+ def wrapper(*args, **kwargs):
28
+ try:
29
+ return func(*args, **kwargs)
30
+ except usb.core.USBError as e:
31
+ print(f"USB error {e}")
32
+ if e.backend_error_code == usb.backend.libusb1.LIBUSB_ERROR_PIPE:
33
+ raise IOError()
34
+ else:
35
+ raise IOServerError(f"Wow...") from e
36
+
37
+ return wrapper
38
+
39
+
40
+ class IOServer:
41
+ def __init__(self, output_details: Tuple[dict, ...] = None, timeout=5000):
42
+ self.__out_ep = None
43
+ self.__in_ep = None
44
+ self._dev = None
45
+ self._output_details = output_details
46
+ self._timeout = timeout
47
+ self._max_block_size = 512 # TODO read from (usb) device?
48
+ super().__init__()
49
+
50
+ def bytes_to_arr(self, data_bytes, tensor_num):
51
+ if self._output_details:
52
+ d = self._output_details[tensor_num]
53
+ s = d["shape"]
54
+ return np.frombuffer(data_bytes, dtype=d["dtype"])[: np.prod(s)].reshape(s)
55
+ return np.frombuffer(data_bytes, dtype=np.uint8)
56
+
57
+ def write_input_tensor(self, raw_img, tensor_num=0, model_num=0):
58
+ self._download_data(
59
+ IOSERVER_TENSOR_RECV_INPUT,
60
+ raw_img,
61
+ tensor_num=tensor_num,
62
+ model_num=model_num,
63
+ )
64
+
65
+ def read_output_tensor(self, tensor_num=0, model_num=0):
66
+ # Retrieve result from device
67
+ data_read = self._upload_data(
68
+ IOSERVER_TENSOR_SEND_OUTPUT,
69
+ model_num=model_num,
70
+ tensor_num=tensor_num,
71
+ )
72
+ assert type(data_read) is bytearray
73
+ return self.bytes_to_arr(data_read, tensor_num)
74
+
75
+ def close(self):
76
+ if self._dev is not None:
77
+ self._dev.write(self._out_ep, bytes([IOSERVER_EXIT, 0, 0]), 1000)
78
+ usb.util.dispose_resources(self._dev)
79
+ self._dev = None
80
+
81
+ @handle_usb_error
82
+ def _download_data(self, cmd, data_bytes, tensor_num=0, model_num=0):
83
+ # TODO rm this extra CMD packet
84
+ self._out_ep.write(bytes([cmd, model_num, tensor_num]))
85
+ self._out_ep.write(data_bytes, 1000)
86
+ if (len(data_bytes) % self._max_block_size) == 0:
87
+ self._out_ep.write(bytearray(), 1000)
88
+
89
+ @handle_usb_error
90
+ def _upload_data(self, cmd, tensor_num=0, model_num=0):
91
+ read_data = bytearray()
92
+ self._out_ep.write(bytes([cmd, model_num, tensor_num]), self._timeout)
93
+ buff = usb.util.create_buffer(self._max_block_size)
94
+ read_len = self._dev.read(self._in_ep, buff, 10000)
95
+ read_data.extend(buff[:read_len])
96
+ while read_len == self._max_block_size:
97
+ read_len = self._dev.read(self._in_ep, buff, 10000)
98
+ read_data.extend(buff[:read_len])
99
+
100
+ return read_data
101
+
102
+ def _clear_error(self):
103
+ self._dev.clear_halt(self._out_ep)
104
+ self._dev.clear_halt(self._in_ep)
105
+
106
+ def connect(self):
107
+ self._dev = None
108
+ while self._dev is None:
109
+ # TODO - more checks that we have the right device..
110
+ self._dev = usb.core.find(idVendor=0x20B1, product="xAISRV")
111
+
112
+ # set the active configuration. With no arguments, the first
113
+ # configuration will be the active one
114
+ self._dev.set_configuration()
115
+
116
+ # get an endpoint instance
117
+ cfg = self._dev.get_active_configuration()
118
+ intf = cfg[(0, 0)]
119
+ self._out_ep = usb.util.find_descriptor(
120
+ intf,
121
+ # match the first OUT endpoint
122
+ custom_match=lambda e: usb.util.endpoint_direction(e.bEndpointAddress)
123
+ == usb.util.ENDPOINT_OUT,
124
+ )
125
+
126
+ self._in_ep = usb.util.find_descriptor(
127
+ intf,
128
+ # match the first IN endpoint
129
+ custom_match=lambda e: usb.util.endpoint_direction(e.bEndpointAddress)
130
+ == usb.util.ENDPOINT_IN,
131
+ )
132
+
133
+ assert self._out_ep is not None
134
+ assert self._in_ep is not None
135
+
136
+ print("Connected to XCORE_IO_SERVER via USB")
137
+
138
+ # TODO move to super()
139
+ def start_inference(self):
140
+ # Send cmd
141
+ self._out_ep.write(bytes([IOSERVER_INVOKE, 0, 0]), 1000)
142
+
143
+ # Send out a 0 length packet
144
+ self._out_ep.write(bytes([]), 1000)
145
+
146
+ def reset(self):
147
+ # Send cmd
148
+ self._out_ep.write(bytes([IOSERVER_RESET, 0, 0]), 1000)
149
+
150
+ # Send out a 0 length packet
151
+ self._out_ep.write(bytes([]), 1000)
File without changes
@@ -0,0 +1,13 @@
1
+ set(XMOS_AITOOLSLIB_DEFINITIONS
2
+ "TF_LITE_STATIC_MEMORY"
3
+ "TF_LITE_STRIP_ERROR_STRINGS"
4
+ "XCORE"
5
+ "NO_INTERPRETER"
6
+ )
7
+
8
+ if("${APP_BUILD_ARCH}" STREQUAL xs3a OR ${CMAKE_SYSTEM_PROCESSOR} STREQUAL XCORE_XS3A)
9
+ set(XMOS_AITOOLSLIB_LIBRARIES "${CMAKE_CURRENT_LIST_DIR}/../lib/libxtflitemicro.a")
10
+ else()
11
+ set(XMOS_AITOOLSLIB_LIBRARIES "${CMAKE_CURRENT_LIST_DIR}/../lib/libhost_xtflitemicro.a")
12
+ endif()
13
+ set(XMOS_AITOOLSLIB_INCLUDES "${CMAKE_CURRENT_LIST_DIR}/../include")
@@ -0,0 +1,8 @@
1
+ XMOS_AITOOLSLIB_DEFINITIONS = \
2
+ -DTF_LITE_STATIC_MEMORY \
3
+ -DTF_LITE_STRIP_ERROR_STRINGS \
4
+ -DXCORE \
5
+ -DNO_INTERPRETER
6
+
7
+ XMOS_AITOOLSLIB_LIBRARIES = $(XMOS_AITOOLSLIB_PATH)/lib/libxtflitemicro.a
8
+ XMOS_AITOOLSLIB_INCLUDES = -I$(XMOS_AITOOLSLIB_PATH)/include
@@ -0,0 +1,73 @@
1
+ #ifndef _flash_server_h_
2
+ #define _flash_server_h_
3
+
4
+ #include <quadflash.h>
5
+
6
+ /** Struct holding the "file system" meta information for each client
7
+ * The flash is partitioned and each client has a section in the flash
8
+ * that stores data relevant to that particular client. For example, models
9
+ * parameters, code, etc.
10
+ *
11
+ * This struct caches all information necessary for a client for fast access.
12
+ * The main program must allocate this structure, one per client, prior to
13
+ * calling the flash server.
14
+ *
15
+ * If there is more than one flash device connected to the device, there can be
16
+ * multiple flash servers.
17
+ */
18
+ typedef struct flash {
19
+ int model_start; ///< Start address for model.
20
+ int parameters_start; ///< Start address of parameters.
21
+ int operators_start; ///< Start address for operator-binaries.
22
+ int execute_in_place_start; ///< Start address for operator-binaries.
23
+ } flash_t;
24
+
25
+ /** Type representing the commands that the flash server accepts */
26
+ typedef enum flash_command {
27
+ FLASH_READ_PARAMETERS =
28
+ 0, ///< Read a set of parameters. // TODO: share with lib_tflite_micro
29
+ FLASH_READ_PARAMETERS_ASYNC = 1, ///< Read parameters asynchronously.
30
+ FLASH_READ_SYNCHRONIZE = 2, ///< Complete async read.
31
+ FLASH_READ_XIP =
32
+ 3, ///< Read code to execute-in-place throught L2 cache - future extension
33
+ FLASH_SERVER_QUIT = 4,
34
+ FLASH_SERVER_INIT = 5, // Initialize flash server with fast flash pattern speed match setup
35
+ //FLASH_READ_PARAMETERS_COMPRESSED_FLOAT = 6, // Read a set of compressed parameters
36
+ } flash_command_t;
37
+
38
+ /**
39
+ * Function that runs a flash-server. A flash server is a thread that serves one
40
+ * or more clients. There is one flash server per flash-device, and the server
41
+ * can serve clients on one or more tiles.
42
+ *
43
+ * The flash server takes the following commands:
44
+ * - Read a whole model from the flash.
45
+ * - Read some parameters from the flash
46
+ * - (future extension) Read code for an operator from flash
47
+ *
48
+ * This function does, at present, never return. It could be made to return if
49
+ * all clients close their connection
50
+ *
51
+ * \param c_flash_clients Array of channels; one per client.
52
+ * Each client is served in turn
53
+ * \param headers Space to store a header for each client
54
+ * The header for the client describes the local
55
+ * "filesystem" for that client \param n_flash_clients Number of clients. The
56
+ * arrays in the first and second parameters should have this many entries
57
+ * \param qspi Structure holding the quad-flash ports. This contains
58
+ * three Ports and a clock-block, the CS_N port, the CLK port, the DATA port and
59
+ * a clock block to be used for the flash. \param flash_spec Array holding
60
+ * specificiations of flash devices, as per the libquadflash documentation
61
+ * \param n_flash_spec Number of elements in the spec array.
62
+ */
63
+ #ifdef __XC__
64
+ void flash_server(chanend c_flash_clients[], flash_t headers[],
65
+ int n_flash_clients, fl_QSPIPorts &qspi,
66
+ fl_QuadDeviceSpec flash_spec[], int n_flash_spec);
67
+ #else
68
+ void flash_server(chanend_t *c_flash_clients, flash_t *headers,
69
+ int n_flash_clients, fl_QSPIPorts *qspi,
70
+ fl_QuadDeviceSpec *flash_spec, int n_flash_spec);
71
+ #endif
72
+
73
+ #endif
@@ -0,0 +1,68 @@
1
+ /*
2
+ * Copyright 2021 Google Inc. All rights reserved.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ #ifndef FLATBUFFERS_ALLOCATOR_H_
18
+ #define FLATBUFFERS_ALLOCATOR_H_
19
+
20
+ #include "flatbuffers/base.h"
21
+
22
+ namespace flatbuffers {
23
+
24
+ // Allocator interface. This is flatbuffers-specific and meant only for
25
+ // `vector_downward` usage.
26
+ class Allocator {
27
+ public:
28
+ virtual ~Allocator() {}
29
+
30
+ // Allocate `size` bytes of memory.
31
+ virtual uint8_t *allocate(size_t size) = 0;
32
+
33
+ // Deallocate `size` bytes of memory at `p` allocated by this allocator.
34
+ virtual void deallocate(uint8_t *p, size_t size) = 0;
35
+
36
+ // Reallocate `new_size` bytes of memory, replacing the old region of size
37
+ // `old_size` at `p`. In contrast to a normal realloc, this grows downwards,
38
+ // and is intended specifcally for `vector_downward` use.
39
+ // `in_use_back` and `in_use_front` indicate how much of `old_size` is
40
+ // actually in use at each end, and needs to be copied.
41
+ virtual uint8_t *reallocate_downward(uint8_t *old_p, size_t old_size,
42
+ size_t new_size, size_t in_use_back,
43
+ size_t in_use_front) {
44
+ FLATBUFFERS_ASSERT(new_size > old_size); // vector_downward only grows
45
+ uint8_t *new_p = allocate(new_size);
46
+ memcpy_downward(old_p, old_size, new_p, new_size, in_use_back,
47
+ in_use_front);
48
+ deallocate(old_p, old_size);
49
+ return new_p;
50
+ }
51
+
52
+ protected:
53
+ // Called by `reallocate_downward` to copy memory from `old_p` of `old_size`
54
+ // to `new_p` of `new_size`. Only memory of size `in_use_front` and
55
+ // `in_use_back` will be copied from the front and back of the old memory
56
+ // allocation.
57
+ void memcpy_downward(uint8_t *old_p, size_t old_size, uint8_t *new_p,
58
+ size_t new_size, size_t in_use_back,
59
+ size_t in_use_front) {
60
+ memcpy(new_p + new_size - in_use_back, old_p + old_size - in_use_back,
61
+ in_use_back);
62
+ memcpy(new_p, old_p, in_use_front);
63
+ }
64
+ };
65
+
66
+ } // namespace flatbuffers
67
+
68
+ #endif // FLATBUFFERS_ALLOCATOR_H_
@@ -0,0 +1,243 @@
1
+ /*
2
+ * Copyright 2021 Google Inc. All rights reserved.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ #ifndef FLATBUFFERS_ARRAY_H_
18
+ #define FLATBUFFERS_ARRAY_H_
19
+
20
+ #include "flatbuffers/base.h"
21
+ #include "flatbuffers/stl_emulation.h"
22
+ #include "flatbuffers/vector.h"
23
+
24
+ namespace flatbuffers {
25
+
26
+ // This is used as a helper type for accessing arrays.
27
+ template<typename T, uint16_t length> class Array {
28
+ // Array<T> can carry only POD data types (scalars or structs).
29
+ typedef typename flatbuffers::bool_constant<flatbuffers::is_scalar<T>::value>
30
+ scalar_tag;
31
+ typedef
32
+ typename flatbuffers::conditional<scalar_tag::value, T, const T *>::type
33
+ IndirectHelperType;
34
+
35
+ public:
36
+ typedef uint16_t size_type;
37
+ typedef typename IndirectHelper<IndirectHelperType>::return_type return_type;
38
+ typedef VectorIterator<T, return_type> const_iterator;
39
+ typedef VectorReverseIterator<const_iterator> const_reverse_iterator;
40
+
41
+ // If T is a LE-scalar or a struct (!scalar_tag::value).
42
+ static FLATBUFFERS_CONSTEXPR bool is_span_observable =
43
+ (scalar_tag::value && (FLATBUFFERS_LITTLEENDIAN || sizeof(T) == 1)) ||
44
+ !scalar_tag::value;
45
+
46
+ FLATBUFFERS_CONSTEXPR uint16_t size() const { return length; }
47
+
48
+ return_type Get(uoffset_t i) const {
49
+ FLATBUFFERS_ASSERT(i < size());
50
+ return IndirectHelper<IndirectHelperType>::Read(Data(), i);
51
+ }
52
+
53
+ return_type operator[](uoffset_t i) const { return Get(i); }
54
+
55
+ // If this is a Vector of enums, T will be its storage type, not the enum
56
+ // type. This function makes it convenient to retrieve value with enum
57
+ // type E.
58
+ template<typename E> E GetEnum(uoffset_t i) const {
59
+ return static_cast<E>(Get(i));
60
+ }
61
+
62
+ const_iterator begin() const { return const_iterator(Data(), 0); }
63
+ const_iterator end() const { return const_iterator(Data(), size()); }
64
+
65
+ const_reverse_iterator rbegin() const {
66
+ return const_reverse_iterator(end());
67
+ }
68
+ const_reverse_iterator rend() const {
69
+ return const_reverse_iterator(begin());
70
+ }
71
+
72
+ const_iterator cbegin() const { return begin(); }
73
+ const_iterator cend() const { return end(); }
74
+
75
+ const_reverse_iterator crbegin() const { return rbegin(); }
76
+ const_reverse_iterator crend() const { return rend(); }
77
+
78
+ // Get a mutable pointer to elements inside this array.
79
+ // This method used to mutate arrays of structs followed by a @p Mutate
80
+ // operation. For primitive types use @p Mutate directly.
81
+ // @warning Assignments and reads to/from the dereferenced pointer are not
82
+ // automatically converted to the correct endianness.
83
+ typename flatbuffers::conditional<scalar_tag::value, void, T *>::type
84
+ GetMutablePointer(uoffset_t i) const {
85
+ FLATBUFFERS_ASSERT(i < size());
86
+ return const_cast<T *>(&data()[i]);
87
+ }
88
+
89
+ // Change elements if you have a non-const pointer to this object.
90
+ void Mutate(uoffset_t i, const T &val) { MutateImpl(scalar_tag(), i, val); }
91
+
92
+ // The raw data in little endian format. Use with care.
93
+ const uint8_t *Data() const { return data_; }
94
+
95
+ uint8_t *Data() { return data_; }
96
+
97
+ // Similarly, but typed, much like std::vector::data
98
+ const T *data() const { return reinterpret_cast<const T *>(Data()); }
99
+ T *data() { return reinterpret_cast<T *>(Data()); }
100
+
101
+ // Copy data from a span with endian conversion.
102
+ // If this Array and the span overlap, the behavior is undefined.
103
+ void CopyFromSpan(flatbuffers::span<const T, length> src) {
104
+ const auto p1 = reinterpret_cast<const uint8_t *>(src.data());
105
+ const auto p2 = Data();
106
+ FLATBUFFERS_ASSERT(!(p1 >= p2 && p1 < (p2 + length)) &&
107
+ !(p2 >= p1 && p2 < (p1 + length)));
108
+ (void)p1;
109
+ (void)p2;
110
+ CopyFromSpanImpl(flatbuffers::bool_constant<is_span_observable>(), src);
111
+ }
112
+
113
+ protected:
114
+ void MutateImpl(flatbuffers::true_type, uoffset_t i, const T &val) {
115
+ FLATBUFFERS_ASSERT(i < size());
116
+ WriteScalar(data() + i, val);
117
+ }
118
+
119
+ void MutateImpl(flatbuffers::false_type, uoffset_t i, const T &val) {
120
+ *(GetMutablePointer(i)) = val;
121
+ }
122
+
123
+ void CopyFromSpanImpl(flatbuffers::true_type,
124
+ flatbuffers::span<const T, length> src) {
125
+ // Use std::memcpy() instead of std::copy() to avoid performance degradation
126
+ // due to aliasing if T is char or unsigned char.
127
+ // The size is known at compile time, so memcpy would be inlined.
128
+ std::memcpy(data(), src.data(), length * sizeof(T));
129
+ }
130
+
131
+ // Copy data from flatbuffers::span with endian conversion.
132
+ void CopyFromSpanImpl(flatbuffers::false_type,
133
+ flatbuffers::span<const T, length> src) {
134
+ for (size_type k = 0; k < length; k++) { Mutate(k, src[k]); }
135
+ }
136
+
137
+ // This class is only used to access pre-existing data. Don't ever
138
+ // try to construct these manually.
139
+ // 'constexpr' allows us to use 'size()' at compile time.
140
+ // @note Must not use 'FLATBUFFERS_CONSTEXPR' here, as const is not allowed on
141
+ // a constructor.
142
+ #if defined(__cpp_constexpr)
143
+ constexpr Array();
144
+ #else
145
+ Array();
146
+ #endif
147
+
148
+ uint8_t data_[length * sizeof(T)];
149
+
150
+ private:
151
+ // This class is a pointer. Copying will therefore create an invalid object.
152
+ // Private and unimplemented copy constructor.
153
+ Array(const Array &);
154
+ Array &operator=(const Array &);
155
+ };
156
+
157
+ // Specialization for Array[struct] with access using Offset<void> pointer.
158
+ // This specialization used by idl_gen_text.cpp.
159
+ template<typename T, uint16_t length> class Array<Offset<T>, length> {
160
+ static_assert(flatbuffers::is_same<T, void>::value, "unexpected type T");
161
+
162
+ public:
163
+ typedef const void *return_type;
164
+
165
+ const uint8_t *Data() const { return data_; }
166
+
167
+ // Make idl_gen_text.cpp::PrintContainer happy.
168
+ return_type operator[](uoffset_t) const {
169
+ FLATBUFFERS_ASSERT(false);
170
+ return nullptr;
171
+ }
172
+
173
+ private:
174
+ // This class is only used to access pre-existing data.
175
+ Array();
176
+ Array(const Array &);
177
+ Array &operator=(const Array &);
178
+
179
+ uint8_t data_[1];
180
+ };
181
+
182
+ template<class U, uint16_t N>
183
+ FLATBUFFERS_CONSTEXPR_CPP11 flatbuffers::span<U, N> make_span(Array<U, N> &arr)
184
+ FLATBUFFERS_NOEXCEPT {
185
+ static_assert(
186
+ Array<U, N>::is_span_observable,
187
+ "wrong type U, only plain struct, LE-scalar, or byte types are allowed");
188
+ return span<U, N>(arr.data(), N);
189
+ }
190
+
191
+ template<class U, uint16_t N>
192
+ FLATBUFFERS_CONSTEXPR_CPP11 flatbuffers::span<const U, N> make_span(
193
+ const Array<U, N> &arr) FLATBUFFERS_NOEXCEPT {
194
+ static_assert(
195
+ Array<U, N>::is_span_observable,
196
+ "wrong type U, only plain struct, LE-scalar, or byte types are allowed");
197
+ return span<const U, N>(arr.data(), N);
198
+ }
199
+
200
+ template<class U, uint16_t N>
201
+ FLATBUFFERS_CONSTEXPR_CPP11 flatbuffers::span<uint8_t, sizeof(U) * N>
202
+ make_bytes_span(Array<U, N> &arr) FLATBUFFERS_NOEXCEPT {
203
+ static_assert(Array<U, N>::is_span_observable,
204
+ "internal error, Array<T> might hold only scalars or structs");
205
+ return span<uint8_t, sizeof(U) * N>(arr.Data(), sizeof(U) * N);
206
+ }
207
+
208
+ template<class U, uint16_t N>
209
+ FLATBUFFERS_CONSTEXPR_CPP11 flatbuffers::span<const uint8_t, sizeof(U) * N>
210
+ make_bytes_span(const Array<U, N> &arr) FLATBUFFERS_NOEXCEPT {
211
+ static_assert(Array<U, N>::is_span_observable,
212
+ "internal error, Array<T> might hold only scalars or structs");
213
+ return span<const uint8_t, sizeof(U) * N>(arr.Data(), sizeof(U) * N);
214
+ }
215
+
216
+ // Cast a raw T[length] to a raw flatbuffers::Array<T, length>
217
+ // without endian conversion. Use with care.
218
+ // TODO: move these Cast-methods to `internal` namespace.
219
+ template<typename T, uint16_t length>
220
+ Array<T, length> &CastToArray(T (&arr)[length]) {
221
+ return *reinterpret_cast<Array<T, length> *>(arr);
222
+ }
223
+
224
+ template<typename T, uint16_t length>
225
+ const Array<T, length> &CastToArray(const T (&arr)[length]) {
226
+ return *reinterpret_cast<const Array<T, length> *>(arr);
227
+ }
228
+
229
+ template<typename E, typename T, uint16_t length>
230
+ Array<E, length> &CastToArrayOfEnum(T (&arr)[length]) {
231
+ static_assert(sizeof(E) == sizeof(T), "invalid enum type E");
232
+ return *reinterpret_cast<Array<E, length> *>(arr);
233
+ }
234
+
235
+ template<typename E, typename T, uint16_t length>
236
+ const Array<E, length> &CastToArrayOfEnum(const T (&arr)[length]) {
237
+ static_assert(sizeof(E) == sizeof(T), "invalid enum type E");
238
+ return *reinterpret_cast<const Array<E, length> *>(arr);
239
+ }
240
+
241
+ } // namespace flatbuffers
242
+
243
+ #endif // FLATBUFFERS_ARRAY_H_