1. 27 7月, 2021 3 次提交
  2. 24 7月, 2021 5 次提交
  3. 23 7月, 2021 4 次提交
    • P
      Port int16 support to Mean kernel (#250) · 5124fe33
      Patrik Laurell 提交于
      * Port int16 support to MEAN kernel
      
      Change-Id: I7633099ea261ccdca424b01a591738f6dfae62eb
      
      * Port tests for int16 MEAN kernel
      
      Change-Id: I2731476dccb33d2a429e9a9e2b7b86efb3a71e16
      
      * Add test for int16 mean, different input and output scale and zero point
      
      * Fix bug in calculating multiplier and shift for int16 case
      Co-authored-by: NAdvait Jain <advaitjain@users.noreply.github.com>
      5124fe33
    • A
      Turn on Python formatting checks as part of CI. (#316) · 43265614
      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.
      
      * Turn on Python formatting checks as part of CI.
      
      Also, add an option to fix the formatting via the test_code_style.sh
      script.
      
      BUG=http://b/194404984 and http://b/194404216
      43265614
    • 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
    • A
      Groundwork to enable python format checks (via yapf) as part of the CI. (#314) · 762ff800
      Advait Jain 提交于
      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
      762ff800
  4. 21 7月, 2021 3 次提交
  5. 20 7月, 2021 1 次提交
  6. 18 7月, 2021 1 次提交
  7. 17 7月, 2021 3 次提交
  8. 16 7月, 2021 3 次提交
  9. 15 7月, 2021 3 次提交
  10. 14 7月, 2021 3 次提交
  11. 13 7月, 2021 5 次提交
  12. 10 7月, 2021 4 次提交
  13. 09 7月, 2021 2 次提交
    • A
      Add Hifi5 and Vision P6 to the Xtensa CI. (#262) · 20e0aa91
      Advait Jain 提交于
      20e0aa91
    • S
      Provide a lightweight version of flexbuffers::Vector (#243) · d25b2678
      Shlomi Regev 提交于
      - Save ~4KB of RAM by implementing a lightweight version of the vector, which only accesses integer values, without implicit conversion.
      - Change Micro kernels to access flexbuffers as vectors instead of maps, which is recommended by the flexbuffers doc for efficiency. Since the values in the vector are ordered alphabetically by their keys, the kernels can access them by index instead.
      - Revert detection_postprocess to the native flexbuffers API. The
      LiteVector API doesn't support IsNull() and I prefer not to support two
      custom flexbuffer APIs.
      Co-authored-by: NNat Jeffries <natmjeffries@gmail.com>
      d25b2678