Skip to content
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

Build Against TF 2.10 #2744

Merged
merged 58 commits into from
Sep 20, 2022
Merged
Changes from 1 commit
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
409596c
Build TF 2.10rc0
seanpmorgan Aug 7, 2022
06a45db
Build TF 2.10rc0
seanpmorgan Aug 7, 2022
d3204a1
Build TF 2.10rc0
seanpmorgan Aug 7, 2022
64415e2
Build TF 2.10rc0
seanpmorgan Aug 7, 2022
06c7c1f
Fix version check
seanpmorgan Aug 8, 2022
7e165e4
Build with C++17
seanpmorgan Aug 9, 2022
868389d
trigger bugged CI
seanpmorgan Aug 10, 2022
4bd4cd9
FIx version check
seanpmorgan Aug 11, 2022
6cc463c
Set static docker container
seanpmorgan Aug 23, 2022
ed1de29
Bump rc2
seanpmorgan Aug 24, 2022
2cd451d
Bump rc2
seanpmorgan Aug 24, 2022
30232db
Merge branch 'master' into pr/seanpmorgan/2744
bhack Aug 24, 2022
ae21f81
Update tensorflow_addons.bzl
seanpmorgan Aug 24, 2022
3893054
Merge branch 'master' into pr/seanpmorgan/2744
bhack Aug 24, 2022
6c694e6
Testing flag swap
seanpmorgan Aug 24, 2022
5c97b97
Merge branch 'master' into build-tf210
seanpmorgan Aug 24, 2022
5b3ea69
Conditional c++ version
bhack Aug 25, 2022
c0b9cbb
Merge branch 'build-tf210' of https://github.com/seanpmorgan/addons i…
bhack Aug 25, 2022
6328f2e
fix version
bhack Aug 25, 2022
f1a2ce7
Update configure.py
bhack Aug 25, 2022
7c2682e
Pass C++ version
seanpmorgan Aug 25, 2022
07b86bb
Merge remote-tracking branch 'origin/build-tf210' into build-tf210
seanpmorgan Aug 25, 2022
aa87c54
Skip custom op tests for unsupported tf versions
seanpmorgan Aug 25, 2022
9f90c85
Skip custom op tests for unsupported tf versions
seanpmorgan Aug 25, 2022
4d3116e
Skip custom op tests for unsupported tf versions
seanpmorgan Aug 25, 2022
64b08c7
Skip custom op tests for unsupported tf versions
seanpmorgan Aug 25, 2022
5051daf
Skip custom op tests for unsupported tf versions
seanpmorgan Aug 25, 2022
a137afb
Skip custom op tests for unsupported tf versions
seanpmorgan Aug 25, 2022
dd5d1d3
Skip custom op tests for unsupported tf versions
seanpmorgan Aug 25, 2022
a6435bb
Add device ordinal
seanpmorgan Sep 3, 2022
b663893
Update test_utils.py
bhack Sep 3, 2022
d5cde94
Fixed ordinal
bhack Sep 3, 2022
46e77c8
Update rc3
bhack Sep 3, 2022
4c7d796
Fix
bhack Sep 3, 2022
568ec68
Debug
bhack Sep 3, 2022
989e95c
debug
bhack Sep 3, 2022
09bd902
Test
bhack Sep 6, 2022
7c65f94
Test
bhack Sep 6, 2022
cef508f
Test
bhack Sep 6, 2022
6a33311
Test
bhack Sep 6, 2022
f343a39
Test
bhack Sep 6, 2022
88d1e20
Test
bhack Sep 6, 2022
3c3d766
Build against 2.10
seanpmorgan Sep 6, 2022
676cd3b
Build against 2.10
seanpmorgan Sep 6, 2022
c8d82fb
Try to test without logical GPUs
seanpmorgan Sep 6, 2022
0d5b5e8
Patch for multi gpu
seanpmorgan Sep 6, 2022
045bf71
Update test_utils.py
bhack Sep 6, 2022
d2774dd
Fix
bhack Sep 6, 2022
e854a9c
Fix typo
bhack Sep 6, 2022
5d2bf2a
Fix format
bhack Sep 6, 2022
bd13421
Switch to MacOS 12
bhack Sep 16, 2022
ff6a8c3
Macosx 12
bhack Sep 16, 2022
b8982c6
Macosx 12
bhack Sep 16, 2022
96a0214
MacOS 12 amd64
bhack Sep 16, 2022
8b3ef83
Build mac x86 with macOS 10
seanpmorgan Sep 20, 2022
e58dda9
Build mac x86 with macOS 10
seanpmorgan Sep 20, 2022
c41e2bc
Align with TF macos build compatibility
seanpmorgan Sep 20, 2022
7c92c3d
Update .github/workflows/make_wheel_macOS_x86.sh
seanpmorgan Sep 20, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Bump rc2
  • Loading branch information
seanpmorgan committed Aug 24, 2022
commit 2cd451d1d125ed7e7be178ca872bce90038f363e
6 changes: 3 additions & 3 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ cuda_configure(name = "local_config_cuda")

http_archive(
name = "org_tensorflow",
sha256 = "3bac161442497c1ad5fd44ee7084064c0f5aab2cceb53a34c9345eaaa326a618",
strip_prefix = "tensorflow-2.10.0-rc0",
sha256 = "7edd8b544cc65254735210e03364fe9828f36430e09e9322fba9b0a4b2912580",
strip_prefix = "tensorflow-2.10.0-rc2",
urls = [
"https://github.com/tensorflow/tensorflow/archive/refs/tags/v2.10.0-rc0.tar.gz",
"https://github.com/tensorflow/tensorflow/archive/refs/tags/v2.10.0-rc2.tar.gz",
],
)

Expand Down