Skip to content

Commit 9c1642a

Browse files
seanpmorganbhack
andauthored
Build 2.12 (#2821)
* Initial build against TF2.12 * support 3.11 --------- Co-authored-by: bhack <[email protected]>
1 parent c35cde6 commit 9c1642a

23 files changed

+71
-92
lines changed

.github/workflows/backport.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
backport:
10-
runs-on: ubuntu-18.04
10+
runs-on: ubuntu-20.04
1111
name: Backport
1212
steps:
1313
- name: Backport Bot

.github/workflows/ci_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
steps:
7474
- uses: actions/setup-python@v1
7575
with:
76-
python-version: 3.7
76+
python-version: 3.9
7777
- uses: actions/checkout@v2
7878
- run: pip install --default-timeout=1000 -r tools/install_deps/tensorflow-cpu.txt -r tools/install_deps/pytest.txt
7979
- run: pip install -e ./

.github/workflows/notify_codeowners.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v2
1414
- uses: actions/setup-python@v1
1515
with:
16-
python-version: 3.7
16+
python-version: 3.9
1717
- run: pip install pygithub click
1818
- name: Drop a message for codeowners
1919
env:

.github/workflows/release.yml

+22-20
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ on:
1515
- r*
1616

1717
env:
18-
MIN_PY_VERSION: '3.7'
19-
MAX_PY_VERSION: '3.10'
18+
MIN_PY_VERSION: '3.9'
19+
MAX_PY_VERSION: '3.11'
2020

2121
jobs:
2222
test-with-bazel:
2323
name: Test with bazel
24-
runs-on: ubuntu-18.04
24+
runs-on: ubuntu-20.04
2525
steps:
2626
- uses: actions/checkout@v2
2727
- uses: actions/setup-python@v2
@@ -40,22 +40,22 @@ jobs:
4040
matrix:
4141
# To switch on windows-2022/latest, please verify the bazel version:
4242
# https://github.com/bazelbuild/bazel/issues/14232#issuecomment-1011247429
43-
os: ['macos-12', 'windows-2019', 'ubuntu-18.04']
44-
py-version: ['3.7', '3.8', '3.9', '3.10']
45-
tf-version: ['2.9.3', '2.10.1', '2.11.0']
43+
os: ['macos-12', 'windows-2019', 'ubuntu-20.04']
44+
py-version: ['3.8', '3.9', '3.10', '3.11']
45+
tf-version: ['2.10.1', '2.11.0', '2.12.0']
4646
cpu: ['x86']
4747
include:
4848
- os: 'macos-12'
4949
cpu: 'arm64'
50-
tf-version: '2.11.0'
50+
tf-version: '2.12.0'
5151
py-version: '3.8'
5252
- os: 'macos-12'
5353
cpu: 'arm64'
54-
tf-version: '2.11.0'
54+
tf-version: '2.12.0'
5555
py-version: '3.9'
5656
- os: 'macos-12'
5757
cpu: 'arm64'
58-
tf-version: '2.11.0'
58+
tf-version: '2.12.0'
5959
py-version: '3.10'
6060
fail-fast: false
6161
steps:
@@ -66,7 +66,7 @@ jobs:
6666
script: |
6767
const commit_details = await github.git.getCommit({owner: context.repo.owner, repo: context.repo.repo, commit_sha: context.sha});
6868
return commit_details.data.author.date
69-
- if: matrix.tf-version != '2.10.0'
69+
- if: matrix.tf-version != '2.12.0'
7070
shell: bash
7171
run: echo "SKIP_CUSTOM_OP_TESTS=--skip-custom-ops" >> $GITHUB_ENV
7272
- if: github.event_name == 'push'
@@ -76,11 +76,12 @@ jobs:
7676
- uses: actions/setup-python@v2
7777
with:
7878
python-version: ${{ matrix.py-version }}
79-
- if: matrix.os != 'ubuntu-18.04'
79+
- if: matrix.os != 'ubuntu-20.04'
8080
name: Setup Bazel
8181
# Ubuntu bazel is run inside of the docker image
8282
run: bash tools/install_deps/install_bazelisk.sh ./
83-
- name: Build wheels
83+
- if: matrix.py-version != '3.11' || matrix.tf-version == '2.12.0'
84+
name: Build wheels
8485
env:
8586
OS: ${{ runner.os }}
8687
PY_VERSION: ${{ matrix.py-version }}
@@ -89,32 +90,33 @@ jobs:
8990
CPU: ${{ matrix.cpu }}
9091
shell: bash
9192
run: bash .github/workflows/make_wheel_${OS}_${CPU}.sh
92-
- uses: actions/upload-artifact@v1
93+
- if: matrix.py-version != '3.11' || matrix.tf-version == '2.12.0'
94+
uses: actions/upload-artifact@v1
9395
with:
9496
name: ${{ runner.os }}-${{ matrix.py-version }}-tf${{ matrix.tf-version }}-${{ matrix.cpu }}-wheel
9597
path: wheelhouse
9698
upload-wheels:
9799
name: Publish wheels to PyPi
98100
needs: [release-wheel, test-with-bazel]
99-
runs-on: ubuntu-18.04
101+
runs-on: ubuntu-20.04
100102
strategy:
101103
matrix:
102104
os: ['macOS', 'Windows', 'Linux']
103-
py-version: ['3.7', '3.8', '3.9', '3.10']
104-
tf-version: ['2.11.0']
105+
py-version: ['3.8', '3.9', '3.10', '3.11']
106+
tf-version: ['2.12.0']
105107
cpu: ['x86']
106108
include:
107109
- os: 'macOS'
108110
cpu: 'arm64'
109-
tf-version: '2.11.0'
111+
tf-version: '2.12.0'
110112
py-version: '3.8'
111113
- os: 'macOS'
112114
cpu: 'arm64'
113-
tf-version: '2.11.0'
115+
tf-version: '2.12.0'
114116
py-version: '3.9'
115117
- os: 'macOS'
116118
cpu: 'arm64'
117-
tf-version: '2.11.0'
119+
tf-version: '2.12.0'
118120
py-version: '3.10'
119121
fail-fast: false
120122
if: (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'release'
@@ -134,7 +136,7 @@ jobs:
134136
upload-dev-container:
135137
name: Upload dev container to DockerHub
136138
needs: [release-wheel, test-with-bazel]
137-
runs-on: ubuntu-18.04
139+
runs-on: ubuntu-20.04
138140
env:
139141
PY_VERSION: '3.9'
140142
if: (github.event_name == 'push' && github.ref == 'refs/heads/master')

.github/workflows/validate_codeowners.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@v2
2424
- uses: actions/setup-python@v1
2525
with:
26-
python-version: 3.7
26+
python-version: 3.9
2727
- run: pip install pygithub click
2828
- name: Check that the CODEOWNERS is valid
2929
env:

CONTRIBUTING.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ conda activate my_dev_environement
173173
Just run from the root:
174174

175175
```bash
176-
pip install tensorflow==2.11.0
177-
# you can use "pip install tensorflow-cpu==2.11.0" too if you're not testing on gpu.
176+
pip install tensorflow==2.12.0
177+
# you can use "pip install tensorflow-cpu==2.12.0" too if you're not testing on gpu.
178178
pip install -e ./
179179
```
180180

@@ -262,7 +262,7 @@ If you need a custom C++/Cuda op for your test, compile your ops with
262262

263263
```bash
264264
python configure.py
265-
pip install tensorflow==2.11.0 -e ./ -r tools/install_deps/pytest.txt
265+
pip install tensorflow==2.12.0 -e ./ -r tools/install_deps/pytest.txt
266266
bash tools/install_so_files.sh # Linux/macos/WSL2
267267
sh tools/install_so_files.sh # PowerShell
268268
```
@@ -285,12 +285,12 @@ docker run --rm -it -v ${PWD}:/addons -w /addons tfaddons/dev_container:latest-c
285285

286286
GPU Docker:
287287
```bash
288-
docker run --gpus all --rm -it -v ${PWD}:/addons -w /addons gcr.io/tensorflow-testing/nosla-cuda11.2-cudnn8.1-ubuntu18.04-manylinux2010-multipython
288+
docker run --gpus all --rm -it -v ${PWD}:/addons -w /addons gcr.io/tensorflow-testing/nosla-cuda11.8-cudnn8.6-ubuntu20.04-manylinux2014-multipython
289289
```
290290

291291
Configure:
292292
```bash
293-
python3 -m pip install tensorflow==2.11.0
293+
python3 -m pip install tensorflow==2.12.0
294294
python3 ./configure.py # Links project with TensorFlow dependency
295295
```
296296

@@ -329,7 +329,7 @@ quickly, as Bazel has great support for caching and distributed testing.
329329
To test with Bazel:
330330

331331
```bash
332-
python3 -m pip install tensorflow==2.11.0
332+
python3 -m pip install tensorflow==2.12.0
333333
python3 configure.py
334334
python3 -m pip install -r tools/install_deps/pytest.txt
335335
bazel test -c opt -k \

WORKSPACE

+3-16
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,16 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
22
load("//build_deps/tf_dependency:tf_configure.bzl", "tf_configure")
33
load("//build_deps/toolchains/gpu:cuda_configure.bzl", "cuda_configure")
44

5-
http_archive(
6-
name = "cub_archive",
7-
build_file = "//build_deps/toolchains/gpu:cub.BUILD",
8-
sha256 = "6bfa06ab52a650ae7ee6963143a0bbc667d6504822cbd9670369b598f18c58c3",
9-
strip_prefix = "cub-1.8.0",
10-
urls = [
11-
"https://storage.googleapis.com/mirror.tensorflow.org/github.com/NVlabs/cub/archive/1.8.0.zip",
12-
"https://github.com/NVlabs/cub/archive/1.8.0.zip",
13-
],
14-
)
15-
165
tf_configure(
176
name = "local_config_tf",
187
)
198

20-
cuda_configure(name = "local_config_cuda")
21-
229
http_archive(
2310
name = "org_tensorflow",
24-
sha256 = "99c732b92b1b37fc243a559e02f9aef5671771e272758aa4aec7f34dc92dac48",
25-
strip_prefix = "tensorflow-2.11.0",
11+
sha256 = "c030cb1905bff1d2446615992aad8d8d85cbe90c4fb625cee458c63bf466bc8e",
12+
strip_prefix = "tensorflow-2.12.0",
2613
urls = [
27-
"https://github.com/tensorflow/tensorflow/archive/refs/tags/v2.11.0.tar.gz",
14+
"https://github.com/tensorflow/tensorflow/archive/refs/tags/v2.12.0.tar.gz",
2815
],
2916
)
3017

configure.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -185,14 +185,14 @@ def configure_cuda():
185185
"CUDNN_INSTALL_PATH",
186186
os.getenv("CUDNN_INSTALL_PATH", "/usr/lib/x86_64-linux-gnu"),
187187
)
188-
write_action_env("TF_CUDA_VERSION", os.getenv("TF_CUDA_VERSION", "11.2"))
188+
write_action_env("TF_CUDA_VERSION", os.getenv("TF_CUDA_VERSION", "11.8"))
189189
write_action_env("TF_CUDNN_VERSION", os.getenv("TF_CUDNN_VERSION", "8"))
190190

191191
write("test --config=cuda")
192192
write("build --config=cuda")
193193
write("build:cuda --define=using_cuda=true --define=using_cuda_nvcc=true")
194194
write(
195-
"build:cuda [email protected]_manylinux2014-cuda11.2-cudnn8.1-tensorrt7.2_config_cuda//crosstool:toolchain"
195+
"build:cuda [email protected]_manylinux2014-cuda11.8-cudnn8.6-tensorrt8.4_config_cuda//crosstool:toolchain"
196196
)
197197

198198

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@ def has_ext_modules(self):
115115
"Intended Audience :: Science/Research",
116116
"License :: OSI Approved :: Apache Software License",
117117
"Programming Language :: Python :: 3",
118-
"Programming Language :: Python :: 3.7",
119118
"Programming Language :: Python :: 3.8",
120119
"Programming Language :: Python :: 3.9",
121120
"Programming Language :: Python :: 3.10",
121+
"Programming Language :: Python :: 3.11",
122122
"Topic :: Scientific/Engineering :: Mathematics",
123123
"Topic :: Software Development :: Libraries :: Python Modules",
124124
"Topic :: Software Development :: Libraries",

tensorflow_addons/seq2seq/tests/beam_search_ops_test.py

+3-16
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
import pytest
2121
import tensorflow as tf
2222

23-
from tensorflow_addons import options
2423
from tensorflow_addons.seq2seq import gather_tree
2524

2625

@@ -80,26 +79,14 @@ def test_bad_parent_values_on_gpu():
8079
[[[0, 0, 0], [0, -1, 1], [2, 1, 2], [-1, -1, -1]]]
8180
)
8281
max_sequence_lengths = [3]
83-
expected_result = _transpose_batch_time(
84-
[[[2, -1, 2], [6, 5, 6], [7, 8, 9], [10, 10, 10]]]
85-
)
86-
if options.is_custom_kernel_disabled():
87-
# The Python version has the same behavior on CPU and GPU.
88-
with pytest.raises(tf.errors.InvalidArgumentError, match="parent id"):
89-
_ = gather_tree(
90-
step_ids=step_ids,
91-
parent_ids=parent_ids,
92-
max_sequence_lengths=max_sequence_lengths,
93-
end_token=end_token,
94-
)
95-
else:
96-
beams = gather_tree(
82+
83+
with pytest.raises(tf.errors.InvalidArgumentError, match="parent id"):
84+
_ = gather_tree(
9785
step_ids=step_ids,
9886
parent_ids=parent_ids,
9987
max_sequence_lengths=max_sequence_lengths,
10088
end_token=end_token,
10189
)
102-
np.testing.assert_equal(expected_result, beams.numpy())
10390

10491

10592
@pytest.mark.usefixtures("run_custom_and_py_ops")

tensorflow_addons/utils/resource_loader.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
import tensorflow as tf
2222

23-
INCLUSIVE_MIN_TF_VERSION_FOR_ABI_COMPATIBILITY = "2.11.0"
24-
EXCLUSIVE_MAX_TF_VERSION_FOR_ABI_COMPATIBILITY = "2.12.0"
23+
INCLUSIVE_MIN_TF_VERSION_FOR_ABI_COMPATIBILITY = "2.12.0"
24+
EXCLUSIVE_MAX_TF_VERSION_FOR_ABI_COMPATIBILITY = "2.13.0"
2525
abi_warning_already_raised = False
2626
SKIP_CUSTOM_OPS = False
2727

tensorflow_addons/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"""Define TensorFlow Addons version information."""
1616

1717
# Required TensorFlow version [min, max)
18-
INCLUSIVE_MIN_TF_VERSION = "2.9.0"
19-
EXCLUSIVE_MAX_TF_VERSION = "2.12.0"
18+
INCLUSIVE_MIN_TF_VERSION = "2.10.0"
19+
EXCLUSIVE_MAX_TF_VERSION = "2.13.0"
2020

2121
# We follow Semantic Versioning (https://semver.org/)
2222
_MAJOR_VERSION = "0"

tools/build_dev_container.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -x -e
44

55
docker build \
66
-f tools/docker/dev_container.Dockerfile \
7-
--build-arg TF_VERSION=2.11.0 \
7+
--build-arg TF_VERSION=2.12.0 \
88
--build-arg TF_PACKAGE=tensorflow \
99
--build-arg PY_VERSION=$PY_VERSION \
1010
--no-cache \

tools/docker/build_wheel.Dockerfile

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
#syntax=docker/dockerfile:1.1.5-experimental
22
ARG PY_VERSION
3-
FROM tensorflow/build:2.11-python$PY_VERSION as base_install
3+
FROM tensorflow/build:2.12-python$PY_VERSION as base_install
44

55
ENV TF_NEED_CUDA="1"
66
ARG PY_VERSION
77
ARG TF_VERSION
88

9+
# TODO: Temporary due to build bug https://github.com/pypa/pip/issues/11770
10+
RUN python -m pip install pip==22.3.1
11+
912
# TODO: Remove this if tensorflow/build container removes their keras-nightly install
1013
# https://github.com/tensorflow/build/issues/78
1114
RUN python -m pip uninstall -y keras-nightly
@@ -42,7 +45,7 @@ RUN bazel build \
4245
--noshow_loading_progress \
4346
--verbose_failures \
4447
--test_output=errors \
45-
[email protected]_manylinux2014-cuda11.2-cudnn8.1-tensorrt7.2_config_cuda//crosstool:toolchain \
48+
[email protected]_manylinux2014-cuda11.8-cudnn8.6-tensorrt8.4_config_cuda//crosstool:toolchain \
4649
build_pip_pkg && \
4750
# Package Whl
4851
bazel-bin/build_pip_pkg artifacts $NIGHTLY_FLAG

tools/docker/cpu_tests.Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#syntax=docker/dockerfile:1.1.5-experimental
2-
FROM python:3.7 as build_wheel
2+
FROM python:3.9 as build_wheel
33

4-
ARG TF_VERSION=2.11.0
4+
ARG TF_VERSION=2.12.0
55
RUN pip install --default-timeout=1000 tensorflow-cpu==$TF_VERSION
66

77
RUN apt-get update && apt-get install -y sudo rsync
@@ -27,7 +27,7 @@ RUN bazel build --enable_runfiles build_pip_pkg
2727
RUN bazel-bin/build_pip_pkg artifacts
2828

2929

30-
FROM python:3.7
30+
FROM python:3.9
3131

3232
COPY tools/install_deps/tensorflow-cpu.txt ./
3333
RUN pip install --default-timeout=1000 -r tensorflow-cpu.txt

tools/docker/pre-commit.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.7
1+
FROM python:3.9
22

33
COPY tools/install_deps /install_deps
44
RUN pip install -r /install_deps/black.txt -r /install_deps/flake8.txt

0 commit comments

Comments
 (0)