You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by GitBox <gi...@apache.org> on 2022/06/22 13:35:39 UTC

[GitHub] [tvm] leandron opened a new pull request, #11829: [CI][arm] Fix tensorflow-aarch64 repository URL

leandron opened a new pull request, #11829:
URL: https://github.com/apache/tvm/pull/11829

   Update the custom repository URL used to pull TensorFlow-aarch64. The mechanism of installation is also changed to a file based, as a temporary workaround before we update to a newer version (>=2.7) that can be pulled from the official PyPI repository.
   
   Closes #11773
   
   cc @Mousius @areusch @lhutton1 @driazati 
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [tvm] leandron merged pull request #11829: [CI][arm] Fix tensorflow-aarch64 repository URL

Posted by GitBox <gi...@apache.org>.
leandron merged PR #11829:
URL: https://github.com/apache/tvm/pull/11829


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [tvm] driazati commented on pull request #11829: [CI][arm] Fix tensorflow-aarch64 repository URL

Posted by GitBox <gi...@apache.org>.
driazati commented on PR #11829:
URL: https://github.com/apache/tvm/pull/11829#issuecomment-1163648216

   @tvm-bot rerun


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [tvm] leandron commented on a diff in pull request #11829: [CI][arm] Fix tensorflow-aarch64 repository URL

Posted by GitBox <gi...@apache.org>.
leandron commented on code in PR #11829:
URL: https://github.com/apache/tvm/pull/11829#discussion_r903757994


##########
docker/install/ubuntu_install_tensorflow_aarch64.sh:
##########
@@ -21,11 +21,26 @@ set -euxo pipefail
 # Build dependencies
 apt-install-and-clear -y --no-install-recommends libhdf5-dev
 
+# Downloading Tensorflow and installing it manually is needed
+# just as a temporary workaround while we move to a newer
+# version (>2.7) that is hosted in the official PyPI repository.
+linaro_repo="https://snapshots.linaro.org/ldcg/python/tensorflow-manylinux/43/tensorflow-aarch64"
+tensorflow_package="tensorflow_aarch64-2.6.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
+tmpdir=$(mktemp -d)
+
+cleanup()
+{
+  rm -rf "$tmpdir"
+}
+
+trap cleanup 0
+

Review Comment:
   I'm missing to `cd` into my tmpdir. I will update this once I test the change. 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [tvm] driazati commented on pull request #11829: [CI][arm] Fix tensorflow-aarch64 repository URL

Posted by GitBox <gi...@apache.org>.
driazati commented on PR #11829:
URL: https://github.com/apache/tvm/pull/11829#issuecomment-1163295917

   Jenkins was down this morning, can you push to your branch again to kick off a build?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@tvm.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org