This is an automated email from the ASF dual-hosted git repository. areusch pushed a commit to branch areusch/freeze-dependencies in repository https://gitbox.apache.org/repos/asf/tvm.git
commit 444feb6cb7c717ae64f8a3198c81852b322bef0c Author: Andrew Reusch <[email protected]> AuthorDate: Mon Jun 27 13:52:59 2022 -0700 fixup! try tf 2.7 --- docker/install/ubuntu_install_tflite_runtime.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker/install/ubuntu_install_tflite_runtime.sh b/docker/install/ubuntu_install_tflite_runtime.sh index cc5ce65f60..df79f58a0b 100755 --- a/docker/install/ubuntu_install_tflite_runtime.sh +++ b/docker/install/ubuntu_install_tflite_runtime.sh @@ -36,5 +36,6 @@ cd .. # The library is built at: # tensorflow/tensorflow/lite/tools/make/gen/*/lib/libtensorflow-lite.a. git clone https://github.com/tensorflow/tensorflow --branch=v${TENSORFLOW_VERSION} --depth 1 -./tensorflow/tensorflow/lite/tools/make/download_dependencies.sh -./tensorflow/tensorflow/lite/tools/make/build_lib.sh +mkdir tflite-build && cd tflite-build +cmake ../tensorflow/tensorflow/lite +cmake --build . -j
