Skip to content

Commit c376dde

Browse files
authored
Merge pull request #406 from adamcrume/master
Upgrade to TensorFlow 2.12.0
2 parents b84c862 + 5f40532 commit c376dde

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
tensorflow == 2.11.0
1+
tensorflow == 2.12.0

examples/addition/model.pb

0 Bytes
Binary file not shown.

run-valgrind

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function run {
1919
echo
2020
}
2121

22-
tensorflow_version=2.11.0
22+
tensorflow_version=2.12.0
2323

2424
valgrind_log=valgrind.log
2525
truncate --size=0 "$valgrind_log"

tensorflow-sys/build.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ const REPOSITORY: &str = "https://github.com/tensorflow/tensorflow.git";
2424
const FRAMEWORK_TARGET: &str = "tensorflow:libtensorflow_framework";
2525
const TARGET: &str = "tensorflow:libtensorflow";
2626
// `VERSION` and `TAG` are separate because the tag is not always `'v' + VERSION`.
27-
const VERSION: &str = "2.11.0";
28-
const TAG: &str = "v2.11.0";
27+
const VERSION: &str = "2.12.0";
28+
const TAG: &str = "v2.12.0";
2929
const MIN_BAZEL: &str = "3.7.2";
3030

3131
macro_rules! get(($name:expr) => (ok!(env::var($name))));

0 commit comments

Comments
 (0)