-
Notifications
You must be signed in to change notification settings - Fork 617
Test wheels in a fresh environement #1189
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
Conversation
.github/workflows/release.yml
Outdated
run: | | ||
pip install tensorflow~=2.1.0 | ||
pip install wheel/tensorflow_addons-*.whl | ||
python -c "import tensorflow_addons as tfa; print(tfa.activations.gelu(0.2))" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since gelu is a possible candidate for moving to TF core. Could we replace with another custom-op? Say gather_tree As seq2seq is likely to stay in Addons for the foreseeable future.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I used lisht
because it's simpler to setup than gather_tree
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, I'm good with that. Depending on results of #1156 lisht custom-op may be removed at some point so lets just keep that in mind as those results get reported.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM thanks!
* Test macos and windows wheels. * Add widnows. * Test all wheels. * Depends on result of tests. * Change name. * Use matrix everywhere. * Replaced gelu by lisht.
Fix #1122