Skip to content

Commit

Permalink
Fix TFLite build
Browse files Browse the repository at this point in the history
  • Loading branch information
mariecwhite committed Jun 12, 2024
1 parent 38f1750 commit ab8e545
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/run_mobile_comparative_benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
schedule:
# Scheduled to run at 09:00 UTC and 21:00 UTC.
- cron: '0 09,21 * * *'
pull_request:

concurrency:
# A PR number if a pull request and otherwise the commit hash. This cancels
Expand Down
4 changes: 3 additions & 1 deletion experimental/tflite/build_tflite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ pushd tensorflow
# Log the git version of Tensorflow repo.
git log --oneline --graph --max-count=1

bazel build -c opt --define xnnpack_use_latest_ops=true //tensorflow/lite/tools/benchmark:benchmark_model
# Disable avx512fp16 on build servers due to a gcc compiler error:
# gcc: error: unrecognized command-line option '-mavx512fp16'
bazel build -c opt --define xnnpack_use_latest_ops=true --define avx512fp16_enabled=false //tensorflow/lite/tools/benchmark:benchmark_model
cp "$(realpath bazel-bin/tensorflow/lite/tools/benchmark/benchmark_model)" "${X86_OUTPUT_DIR}/"

# The compiler flags used here were retrieved by running ./configure in the root Tensorflow repo.
Expand Down

0 comments on commit ab8e545

Please sign in to comment.