| #!/usr/bin/env bash |
| # Copyright 2019 The TensorFlow Authors. All Rights Reserved. |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| # ============================================================================== |
| # |
| # Called with following arguments: |
| # 1 - (optional) TENSORFLOW_ROOT: path to root of the TFLM tree (relative to directory from where the script is called). |
| # 2 - (optional) EXTERNAL_DIR: Path to the external directory that contains external code |
| # Tests the microcontroller code using native x86 execution. |
| # |
| # This file is a subset of the tests in test_x86.sh. It is for parallelizing the test |
| # suite on github actions. |
| |
| set -e |
| |
| TENSORFLOW_ROOT=${1} |
| EXTERNAL_DIR=${2} |
| |
| source ${TENSORFLOW_ROOT}tensorflow/lite/micro/tools/ci_build/helper_functions.sh |
| |
| readable_run make -f ${TENSORFLOW_ROOT}tensorflow/lite/micro/tools/make/Makefile clean TENSORFLOW_ROOT=${TENSORFLOW_ROOT} EXTERNAL_DIR=${EXTERNAL_DIR} |
| |
| # TODO(b/143715361): downloading first to allow for parallel builds. |
| readable_run make -f ${TENSORFLOW_ROOT}tensorflow/lite/micro/tools/make/Makefile third_party_downloads TENSORFLOW_ROOT=${TENSORFLOW_ROOT} EXTERNAL_DIR=${EXTERNAL_DIR} |
| |
| # Test the hello_world as an example outside of the github repo. |
| readable_run make -f ${TENSORFLOW_ROOT}tensorflow/lite/micro/tools/make/Makefile clean TENSORFLOW_ROOT=${TENSORFLOW_ROOT} EXTERNAL_DIR=${EXTERNAL_DIR} |
| cp -r ${TENSORFLOW_ROOT}tensorflow/lite/micro/examples/hello_world ./ |
| sed -i 's/tensorflow\/lite\/micro\/examples\///g' hello_world/Makefile.inc |
| sed -i 's/$(TENSORFLOW_ROOT)//g' hello_world/Makefile.inc |
| mv hello_world/Makefile.inc hello_world/Makefile_internal.inc |
| sed -i 's/tensorflow\/lite\/micro\/examples\///g' hello_world/hello_world_test.cc |
| readable_run make -s -j8 -f ${TENSORFLOW_ROOT}tensorflow/lite/micro/tools/make/Makefile test_hello_world_test TENSORFLOW_ROOT=${TENSORFLOW_ROOT} EXTERNAL_DIR=hello_world/ |
| readable_run make -f ${TENSORFLOW_ROOT}tensorflow/lite/micro/tools/make/Makefile clean TENSORFLOW_ROOT=${TENSORFLOW_ROOT} EXTERNAL_DIR=hello_world/ |
| rm -rf hello_world |