Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automated sync from github.com/tensorflow/tensorflow #2110

Merged
merged 2 commits into from
Jul 12, 2023

Commits on Jul 12, 2023

  1. Sync from upstream TF.

    TFLM-bot committed Jul 12, 2023
    Configuration menu
    Copy the full SHA
    e9b6a39 View commit details
    Browse the repository at this point in the history
  2. Add TF_LITE_ASSERT macro

    In upstream TFLite, op_macros.h contains a TF_LITE_ASSERT macro that
    would print the failed assertion and then call abort(). This macro was
    removed from TFLM's version of op_macros.h because it relied on stdlib
    functions (namely, fprintf). As there were no usages of TF_LITE_ASSERT
    in shared code, this was not a problem. However, the latest sync
    introduces a usage of it within shared code, breaking the build. This
    commit adds a TFLM-friendly implementation of TF_LITE_ASSERT using
    MicroPrintf for the implementation.
    rascani committed Jul 12, 2023
    Configuration menu
    Copy the full SHA
    4601be7 View commit details
    Browse the repository at this point in the history