1. 17 5月, 2022 1 次提交
  2. 14 5月, 2022 3 次提交
  3. 13 5月, 2022 2 次提交
  4. 12 5月, 2022 9 次提交
  5. 11 5月, 2022 3 次提交
  6. 10 5月, 2022 5 次提交
  7. 09 5月, 2022 4 次提交
  8. 06 5月, 2022 3 次提交
  9. 05 5月, 2022 1 次提交
  10. 04 5月, 2022 3 次提交
  11. 03 5月, 2022 4 次提交
    • T
      Automated size log update (#1096) · 01a58c96
      TFLM-bot 提交于
      01a58c96
    • F
      Add Arm landing page readme (#1034) · 9c279d09
      Fredrik Knutsson 提交于
      * Add Arm IP landing page readme
      
      Plus re-phrasing and spelling fixes in other Arm readme's
      
      Change-Id: I95b43850026b1fa45285fe044cf0ef5c119c114d
      
      * Add clarification as per code review comment
      
      Change-Id: I650c7ac21f2385339b607f49bf309fc51298de2f
      
      * Adding Arm as subchapter. As per review comment.
      
      Change-Id: Ida7598a6f561fb25bde968632551890712c7a557
      Co-authored-by: NPauline Sho <psho@google.com>
      9c279d09
    • T
      Add conv kernel unit tests (#1094) · d0cdc6a8
      Trinity Lundgren 提交于
      * Add conv kernel test with 3x3 filter, 2x2 stride, and 4x4 EVEN size
        input (padding 'same').
      * Add conv kernel test with 3x3 filter, 2x2 stride, and 5x5 ODD size
        input (padding 'same').
      
      Both tests pass for the TFLM reference kernel for conv when run with:
      
      $ make -f tensorflow/lite/micro/tools/make/Makefile \
        test_kernel_conv_test
      
      When run for the xtensa kernel with:
      
      $ make -f tensorflow/lite/micro/tools/make/Makefile TARGET=xtensa \
        TARGET_ARCH=vision_p6 OPTIMIZED_KERNEL_DIR=xtensa \
        XTENSA_CORE=${VP6_CORE} test_kernel_conv_test
      
      The 4x4 even-size input fails and the 5x5 odd size input passes.
      
      Note that the 4x4 test is currently excluded from the Xtensa tests by an
      include guard. It must be included to reproduce the failure.
      
      BUG=b/228102789
      Co-authored-by: Nmergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
      d0cdc6a8
    • T
      Automated size log update (#1093) · 1c2e49b1
      TFLM-bot 提交于
      1c2e49b1
  12. 30 4月, 2022 2 次提交
    • T
      Fix LSTM test bug with wrong output dimension (#1091) · 10b12233
      Ting Yan 提交于
      * Correct LSTM test bug with wrong output dimension
      
      * Unloop output dimension checks
      10b12233
    • P
      Add support for conv 16x8 int32 bias (#1076) · b52e0f65
      Pauline Sho 提交于
      * Fix outdated reference to int64 in comment
      
      * Add support for conv 16x8 int32 bias
      
      Currently, the 16x8 conv op implicitly assumes int64 biases. This
      behavior ignores the converter option
      `_experimental_full_integer_quantization_bias_type`. The actual bias
      size/type can be retrieved from the model via `GetEvalInput()->type`.
      Supporting int32 instead of int64 is expected to lower latency on
      average.
      
      Verified that bias->type correctly reflects the converter option set
      during conversion. Replicated basic unit tests for int32 biases.
      
      BUG=b/230125424
      
      * Address PR comments
      
      * Added missing include header
      
      * Revert TFLite changes
      
      * Uncompile tests for CMSIS_NN because 32b bias isn't supported there yet
      Co-authored-by: Nmergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
      b52e0f65