Skip to content

Commit 1ddf5a3

Browse files
authored
Merge pull request #426 from adamcrume/master
Upgrade to TensorFlow 2.18.0
2 parents 454da03 + e4b6aee commit 1ddf5a3

25 files changed

+22776
-1548
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Setup Python # Set Python version
3232
uses: actions/setup-python@v4
3333
with:
34-
python-version: 3.8
34+
python-version: "3.10"
3535
# Install pip and pytest
3636
- name: Install dependencies
3737
run: |

.github/workflows/requirements.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
tensorflow == 2.13.0
1+
tensorflow == 2.18.0
2+
tf_keras == 2.18.0

RELEASING.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Note that any crate not mentioned here (e.g. tensorflow-proto-codegen, tensorflo
3636
1. Bump the version for `tensorflow-internal-macros` in the root `Cargo.toml`
3737
1. Bump the version number in `Cargo.toml`
3838
1. Bump the version number in `README.md`
39-
1. Run `./test-all`
39+
1. Inside a virtualenv, run `./test-all`. (See "Running in a virtualenv" section.)
4040
1. Double-check that addition.py is built using the version of TensorFlow being linked against. (See "Upgrading TensorFlow" section.)
4141
1. Run `./run-valgrind`
4242
1. Commit and push the changes. (Push before publishing to ensure that the changes being published are up to date.)
@@ -56,12 +56,12 @@ Note that any crate not mentioned here (e.g. tensorflow-proto-codegen, tensorflo
5656
## Upgrading TensorFlow
5757

5858
1. Update version and tag in tensorflow-sys/build.rs
59-
1. Update version in run-valgrind
60-
1. Run `python examples/addition/addition.py` using the version of TensorFlow being linked against.
61-
(Use pip in a virtualenv, see https://www.tensorflow.org/install/pip#2-create-a-virtual-environment-recommended)
62-
1. Run `virtualenv --system-site-packages -p python3 ~/tensorflow-${TENSORFLOW_VERSION?}`
63-
1. Run `source ~/tensorflow-${TENSORFLOW_VERSION?}/bin/activate` to activate the virtualenv
64-
1. Run `pip install --upgrade pip`
65-
1. Run `pip install --upgrade tensorflow==${TENSORFLOW_VERSION?}`
66-
1. Run `python examples/addition/addition.py`
67-
1. Run `deactivate` to exit the virtualenv
59+
1. Update version in .github/workflow/requirements.txt
60+
1. Inside a virtualenv using the version of TensorFlow being linked against, run `python examples/addition/addition.py`. (See "Running in a virtualenv" section.)
61+
62+
## Running in a virtualenv
63+
64+
1. If you haven't set it up, run `./create-virtualenv ${TENSORFLOW_VERSION?}`
65+
1. Run `source ~/tensorflow-${TENSORFLOW_VERSION?}/bin/activate` to activate the virtualenv
66+
1. Do whatever you need to do in the virtual env
67+
1. Run `deactivate` to exit the virtualenv

check-disk-space

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
set -euo pipefail
4+
5+
df -h || true
6+
du -sh || true
7+
du -sh /* || true

create-virtualenv

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#!/bin/bash
2+
3+
# See https://www.tensorflow.org/install/pip#2-create-a-virtual-environment-recommended
4+
5+
set -euo pipefail
6+
7+
if [ "$#" -lt 1 ]; then
8+
echo "Expected first argument to be TensorFlow version"
9+
exit 1
10+
fi
11+
TENSORFLOW_VERSION="$1"
12+
13+
function run {
14+
echo "----------------------------------------------------------------------"
15+
echo "Running: $@"
16+
"$@"
17+
echo
18+
}
19+
20+
run virtualenv --system-site-packages -p python3 ~/tensorflow-${TENSORFLOW_VERSION?}
21+
run source ~/tensorflow-${TENSORFLOW_VERSION?}/bin/activate
22+
run pip install --upgrade pip
23+
run pip install --upgrade tensorflow==${TENSORFLOW_VERSION?}
24+
run pip install tf_keras # required for examples/mobilenetv3
25+
run deactivate

examples/addition/model.pb

0 Bytes
Binary file not shown.

run-valgrind

-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ function run {
1919
echo
2020
}
2121

22-
tensorflow_version=2.13.0
23-
2422
valgrind_log=valgrind.log
2523
truncate --size=0 "$valgrind_log"
2624

0 commit comments

Comments
 (0)