1. 28 8月, 2021 1 次提交
  2. 26 8月, 2021 1 次提交
  3. 25 8月, 2021 1 次提交
  4. 24 8月, 2021 1 次提交
  5. 20 8月, 2021 6 次提交
  6. 18 8月, 2021 2 次提交
  7. 17 8月, 2021 1 次提交
  8. 14 8月, 2021 1 次提交
  9. 13 8月, 2021 2 次提交
  10. 12 8月, 2021 1 次提交
  11. 03 8月, 2021 3 次提交
    • A
    • D
      Arduino python (#257) · 06c91f42
      David Davis 提交于
      * Add files from TfLite
      
      Added batch_matmul.h and tensor_utils_common.h that are needed for the BATCH_MATMUL operator.
      
      * Arduino library creation for CI build.
      Issue# 256
      
      * fix bug with include file path flattening
      
      * fix examples path generation
      
      Some files in examples source and headers list are not in the examples directory.  They can be tensorflow files or third-party files.  The code is corrected so that these files end up inside the generated directory tree.  Previously, these files were being placed outside the generated directory tree and were thus invisible to follow-on targeted generation scripts.
      
      * remove/revert files that go into the arduino-examples repo
      
      * Format with:
      
      ```
      tensorflow/lite/micro/tools/ci_build/test_code_style.sh --fix_formatting
      ```
      
      * request changes to PR
      
      * Removed symbolic link for micro_speech example from Makefile.
      Added additional include flags to Makefile.
      Adjusted header file transformations during base tree creation.
      Co-authored-by: NAdvait Jain <advaitjain@users.noreply.github.com>
      Co-authored-by: NAdvait Jain <advaitjain@google.com>
      06c91f42
    • L
      Fix example Zephyr build (#333) · fa4bbc7b
      Lauren Murphy 提交于
      On commit 5c7c11e of the tensorflow repo at
      tensorflow/lite/micro/tools/make/Makefile:664, MICROLITE_CC_SRCS contains
      MICROLITE_CC_KERNEL_SRCS. In the new tflite-micro repo, it does not contain
      MICROLITE_CC_KERNEL_SRCS. This commit adds MICROLITE_CC_KERNEL_SRCS to
      tensorflow/lite/micro/examples/hello_world/zephyr_riscv/Makefile.inc
      so that the generated Zephyr CMakeLists.txt doesn't miss these files.
      
      Similar fix made to corresponding file for magic_wand sample.
      Signed-off-by: NLauren Murphy <lauren.murphy@intel.com>
      Co-authored-by: NAdvait Jain <advaitjain@users.noreply.github.com>
      fa4bbc7b
  12. 28 7月, 2021 1 次提交
  13. 27 7月, 2021 1 次提交
  14. 23 7月, 2021 1 次提交
    • A
      Format all the code (#315) · 0315e685
      Advait Jain 提交于
      * Groundwork to enable python format checks (via yapf) as part of the CI.
      
      With this change:
       * we are set up to use yapf as part of the docker container
       * pigweed patch is updated to use the google Python style (pep8 with indent of 2 spaces)
       * some documentation updates.
      
      The code still needs to be formatted, and then the Python formatting check will be turned on as part of ci.
      
      BUG=http://b/194404216
      
      * Format all the code.
      
      Once this change is merged, we will turn on Python formatting check as
      part of the CI.
      
      * minor formatting update.
      0315e685
  15. 15 7月, 2021 1 次提交
  16. 10 7月, 2021 1 次提交
  17. 16 6月, 2021 1 次提交
    • N
      Separate core, kernel and third party objects. (#168) · 6b799b7d
      Nat Jeffries 提交于
      * Separate core, kernel and third party objects.
      
      Add a second optimization level in the Makefile to enable different
      levels between kernels and the rest of the TFLM code. This results in a
      smaller binary with minimal performance impact compared with using a
      single optimization level.
      
      Allows the use of implicit patterns to compile all sources, choosing
      different flags for core, kernel and third party sources.
      
      The following measurements are taken using the hexagon toolchain +
      hexagon-size and hexagon-sim.
      
      For the keyword benchmark using -O2:
         text    data     bss     dec
        58140   37639   46612  142391
      
        Cycles: 1700364
      
      For the keyword benchmark using -O2 for kernels and -Oz for framework:
         text    data     bss     dec
        52796   37623   46612  137031
      
        Cycles: 1759664
      
      * Make the optimization level log an error.
      
      Remove OPTIMIZATION_LEVEL setting for bluepill since core framework now automatically is compiled with -Os.
      
      * Remove section that builds bluepill with -Os since default uses -Os.
      
      * Disable -Werror=vla in order to pass stm32 bare lib presubmit.
      
      * Chnage order so that -Wno-vla takes priority over -Wvla
      Co-authored-by: NAdvait Jain <advaitjain@users.noreply.github.com>
      6b799b7d
  18. 09 6月, 2021 1 次提交
    • M
      Revert "Revert: PR #48758: TFLM: Remove uint8 support for CMSIS-NN ke… (#109) · 0afb62f9
      Måns Nilsson 提交于
      * Revert "Revert: PR #48758: TFLM: Remove uint8 support for CMSIS-NN kernels"
      
      This reverts commit 6d8a184710164c7bcc41d3bd29fe4ef46836b6c9.
      
      * TFLM: Increase stack size for bluepill
      
      Change-Id: Ie278c6fff55cc620104c69167273a92a2d8e639a
      
      * Update PPD unit test
      
      * Remove leftovers from when PPD supported dynamic output dimensions.
      * Correct number of output elements.
      * Correct number of input elements for last unit test.
      
      Change-Id: I66fd36d7eb48816986450033bc83c6b240d559b6
      
      * Revert "TFLM: Increase stack size for bluepill"
      
      This reverts commit c7fc2a0e0f16d2ab10c44389033822503c178e69.
      
      With the fix to the PPD unit test from
      6e39d12d7688143bd17acb2c5d422385baef9e0f, increasing the bluepill stack
      size should not be necessary.
      
      * Fix circular buffer formatting.
      
      The CI check for clang-format needs to be fixed.
      Co-authored-by: NAdvait Jain <advaitjain@google.com>
      Co-authored-by: NAdvait Jain <advaitjain@users.noreply.github.com>
      0afb62f9
  19. 05 6月, 2021 1 次提交
  20. 04 6月, 2021 1 次提交
  21. 02 6月, 2021 1 次提交
  22. 27 5月, 2021 1 次提交
  23. 23 5月, 2021 2 次提交
  24. 22 5月, 2021 1 次提交
  25. 06 5月, 2021 1 次提交
  26. 29 4月, 2021 3 次提交
  27. 21 4月, 2021 1 次提交
  28. 10 4月, 2021 1 次提交