1. 26 5月, 2023 1 次提交
  2. 11 3月, 2023 2 次提交
    • A
      Explicitly use TfLiteRegistration_V1 in TFLM. (#1817) · 29b683a3
      Advait Jain 提交于
      Change generated with the following command:
      ```bash
      cd tensorflow/lite/micro/
      sed -i 's/TfLiteRegistration/TfLiteRegistration_V1/g' `find . -name "*.h" -o -name "*.cc"`
      cd -
      cd third_party/hexagon/
      sed -i 's/TfLiteRegistration/TfLiteRegistration_V1/g' `find . -name "*.h" -o -name "*.cc"`
      cd -
      tensorflow/lite/micro/tools/ci_build/test_code_style.sh --fix_formatting
      ```
      
      BUG=http://b/272808609
      29b683a3
    • A
      Decouple TFLM and TF Lite OpResolvers. (#1818) · 77cc07a3
      Advait Jain 提交于
      With this change, the `MicroOpResolver` no longer inherits from the TfLite `OpResolver`. As a result:
       * `GetRegistrationFromOpCode` is now duplicated between TF Lite and TFLM.
       * This duplication is a necessary step to allow TFLM to pin to `TfLiteRegistration_V1`
       * A follow-up PR will introduce a find and replace modification to switch everything over to `TfLiteRegistration_V1`: https://github.com/tensorflow/tflite-micro/pull/1817
       * A side-benefit of this duplication is that the error message from unresolved OPs no longer has the version number which has been confusing for TFLM users for a long time.
      
      BUG=http://b/272808609
      77cc07a3
  3. 21 7月, 2022 1 次提交
  4. 10 4月, 2021 1 次提交