1. 21 9月, 2022 1 次提交
  2. 10 8月, 2022 1 次提交
  3. 19 7月, 2022 1 次提交
    • S
      Port the SUM operator from lite (#1229) · ed4d97a8
      sasapetr 提交于
      * Add micro implementation for the reduce sum op.
      
      * Fix the error message for supported types in reduce ops
      
      * Refactor reduce_test: replace TestMeanFloatInput4D with the more general
      version.
      
      * Refactor reduce_test: replace TestMeanOpQuantized with the more general
      version.
      
      * Add eval helper function for the reduce sum op.
      
      * Use ReduceGeneric for reduce sum implementation.
      
      ReduceSumImpl expects that the output is already initialized.
      
      * Add tests for reduce sum.
      
      * Use MicroPrintf instead of TF_LITE_ENSURE_MSG for errors.
      
      * Port a few more tests for reduce sum from Lite.
      
      * Fix linter issue in reduce_test.cc
      
      * Skip the reduce_sum tests when using Xtensa.
      
      This op isn't yet added to the Xtensa optimized reduce kernel, causing
      the tests to fail.
      
      * Don't compile the expected outputs for reduce_sum when running on Xtensa.
      Co-authored-by: NPauline Sho <psho@google.com>
      ed4d97a8
  4. 09 6月, 2022 1 次提交
  5. 07 6月, 2022 1 次提交
  6. 26 5月, 2022 1 次提交
  7. 04 5月, 2022 1 次提交
    • P
      Enable -Wmissing-field-initializers and update all registration (#1084) · 1bc98621
      Pauline Sho 提交于
      * Enable -Wmissing-field-initializers and update all registration
      references
      
      In https://github.com/tensorflow/tflite-micro/pull/1082/, we disabled
      the compiler error as a workaround for a successful upstream sync from
      TFLite. This PR re-enables the error after addressing all errors. A new
      `RegisterOp` API is added, and all prior TfLiteRegistration struct
      initializations are updated to use the new API. At the minimum, this
      ensures that such additions in future will only require an update to
      RegisterOp if TFLM doesn't use that field.
      
      BUG=b/230507399
      
      * Added new RegisterOpWithFree for LSTM
      
      * Remove LSTM Free
      
      * Changed inline to normal function to save code size
      
      * Changed inline to normal function to save code size
      
      * Replace cmsis_nn static initialization with RegisterOp
      
      * Removed extra code
      
      * Add dropped namespace in hard_swish
      1bc98621
  8. 02 2月, 2022 1 次提交
    • D
      Replace (almost) all kernel's GetInput/GetOutput with AllocateTempXXx and... · ce9451f5
      deqiangc 提交于
      Replace (almost) all kernel's GetInput/GetOutput with AllocateTempXXx and DeallocateTempXxx micro context api (#894)
      
      * Replace GetInput/GetOutput with micro context api
      
      * Replace GetInput/GetOutput in kernels with micro_context api. Ther are three kernels (strided_slice, squeeze, transpose)that are not changed yet because:
      they put the returned value of GetInput/GetOutput in an OpData structure that is persistent.
      It is better to have separate change to opdata of those kernels
      
      * Fix corner case in pad
      
      * Fix cmsis-nn
      
      * Fix xtensa, cmsis_nn, hexagon
      ce9451f5
  9. 18 8月, 2021 1 次提交
  10. 23 7月, 2021 1 次提交
  11. 10 4月, 2021 1 次提交