This is an automated email from the ASF dual-hosted git repository.
leandron pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/main by this push:
new 3db44f4 Fix ordering of tf and tflite installs in ci_cpu (#8312)
3db44f4 is described below
commit 3db44f42cbafc107f1146a55b834c5c7a9458d3c
Author: Manupa Karunaratne <[email protected]>
AuthorDate: Thu Jun 24 08:22:14 2021 +0100
Fix ordering of tf and tflite installs in ci_cpu (#8312)
The recently merged 8306 PR introduced a depedency
for tflite installation that tf must be installed first.
However, that PR did not correct the ordering in ci_cpu which
does not have that ordering.
Change-Id: Ib82c2b33e4e123d4562682e9e97b21bfe23cc0ef
---
docker/Dockerfile.ci_cpu | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/docker/Dockerfile.ci_cpu b/docker/Dockerfile.ci_cpu
index 7b511de..65afa69 100644
--- a/docker/Dockerfile.ci_cpu
+++ b/docker/Dockerfile.ci_cpu
@@ -79,14 +79,14 @@ RUN bash /install/ubuntu_install_sbt.sh
COPY install/ubuntu_install_verilator.sh /install/ubuntu_install_verilator.sh
RUN bash /install/ubuntu_install_verilator.sh
-# TFLite deps
-COPY install/ubuntu_install_tflite.sh /install/ubuntu_install_tflite.sh
-RUN bash /install/ubuntu_install_tflite.sh
-
# TensorFlow deps
COPY install/ubuntu_install_tensorflow.sh /install/ubuntu_install_tensorflow.sh
RUN bash /install/ubuntu_install_tensorflow.sh
+# TFLite deps
+COPY install/ubuntu_install_tflite.sh /install/ubuntu_install_tflite.sh
+RUN bash /install/ubuntu_install_tflite.sh
+
# Compute Library
COPY install/ubuntu_download_arm_compute_lib_binaries.sh
/install/ubuntu_download_arm_compute_lib_binaries.sh
RUN bash /install/ubuntu_download_arm_compute_lib_binaries.sh