-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Docker] Update tensorflow/tflite/xgboost versions #8306
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Tensorflow update required following update to cuda 11.0. Based on https://www.tensorflow.org/install/source#gpu, the 2.4 branch of tensorflow should be used with cuda 11.0. - Removed pinned version of keras/h5py, no longer needed. tensorflow/tensorflow#44467 (comment) - Updated tflite version to 2.4.2. Also, tflite install script now reads the installed version of tensorflow, to keep the version matched in the future.
Previously, due to missing quotes, installed most recent version of xgboost, piping the results to a file named '=1.1.0'. Now, installs xgboost at least at version 1.1.0.
26 tasks
mbrookhart
approved these changes
Jun 22, 2021
Thanks @Lunderberg |
This was my fault, I'm sorry. The Ubuntu repository for llvm was broken yesterday, so the docker build failed for unrelated reasons before I hit this, I should have waited |
Lunderberg
added a commit
to Lunderberg/tvm
that referenced
this pull request
Jun 23, 2021
Similar to apache#8312, the recently merged apache#8306 required tflite to be installed after tf. However, apache#8306 did not correct the ordering in the dockerfiles. After this and apache#8312, all dockerfiles should be up to date with the correct ordering.
Lunderberg
added a commit
to Lunderberg/tvm
that referenced
this pull request
Jun 23, 2021
Similar to apache#8312, the recently merged apache#8306 required tflite to be installed after tf. However, apache#8306 did not correct the ordering in the dockerfiles. After this and apache#8312, all dockerfiles should be up to date with the correct ordering.
Lunderberg
added a commit
to Lunderberg/tvm
that referenced
this pull request
Jun 24, 2021
Similar to apache#8312, the recently merged apache#8306 required tflite to be installed after tf. However, apache#8306 did not correct the ordering in the dockerfiles. After this and apache#8312, all dockerfiles should be up to date with the correct ordering.
ylc
pushed a commit
to ylc/tvm
that referenced
this pull request
Sep 29, 2021
* [Docker] Updated tensorflow/tflite version to 2.4.2 Tensorflow update required following update to cuda 11.0. Based on https://www.tensorflow.org/install/source#gpu, the 2.4 branch of tensorflow should be used with cuda 11.0. - Removed pinned version of keras/h5py, no longer needed. tensorflow/tensorflow#44467 (comment) - Updated tflite version to 2.4.2. Also, tflite install script now reads the installed version of tensorflow, to keep the version matched in the future. * [Docker] Corrected version pinning of xgboost Previously, due to missing quotes, installed most recent version of xgboost, piping the results to a file named '=1.1.0'. Now, installs xgboost at least at version 1.1.0. Co-authored-by: Eric Lunderberg <elunderberg@octoml.ai>
ylc
pushed a commit
to ylc/tvm
that referenced
this pull request
Sep 29, 2021
Similar to apache#8312, the recently merged apache#8306 required tflite to be installed after tf. However, apache#8306 did not correct the ordering in the dockerfiles. After this and apache#8312, all dockerfiles should be up to date with the correct ordering. Co-authored-by: Eric Lunderberg <elunderberg@octoml.ai>
zxy844288792
pushed a commit
to zxy844288792/tvm
that referenced
this pull request
Mar 4, 2022
* [Docker] Updated tensorflow/tflite version to 2.4.2 Tensorflow update required following update to cuda 11.0. Based on https://www.tensorflow.org/install/source#gpu, the 2.4 branch of tensorflow should be used with cuda 11.0. - Removed pinned version of keras/h5py, no longer needed. tensorflow/tensorflow#44467 (comment) - Updated tflite version to 2.4.2. Also, tflite install script now reads the installed version of tensorflow, to keep the version matched in the future. * [Docker] Corrected version pinning of xgboost Previously, due to missing quotes, installed most recent version of xgboost, piping the results to a file named '=1.1.0'. Now, installs xgboost at least at version 1.1.0. Co-authored-by: Eric Lunderberg <elunderberg@octoml.ai>
zxy844288792
pushed a commit
to zxy844288792/tvm
that referenced
this pull request
Mar 4, 2022
Similar to apache#8312, the recently merged apache#8306 required tflite to be installed after tf. However, apache#8306 did not correct the ordering in the dockerfiles. After this and apache#8312, all dockerfiles should be up to date with the correct ordering. Co-authored-by: Eric Lunderberg <elunderberg@octoml.ai>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Updated tensorflow version to 2.4.2, required following update to cuda 11.0. Based on https://www.tensorflow.org/install/source#gpu, the 2.4 branch of tensorflow should be used with cuda 11.0.
Removed pinned version of h5py, no longer needed with tensorflow 2.4.x
h5py==3.0.0 causes issues with keras model loads in tensorflow 2.1.0 tensorflow/tensorflow#44467 (comment)
Updated tflite version to 2.4.2. Also, tflite install script now reads the installed version of tensorflow, to keep the version matched in the future.
Previously, due to missing quotes, installed most recent version of xgboost, piping the results to a file named '=1.1.0'. Now, installs xgboost at least at version 1.1.0.