From 69924236cdea8584ca5e6cd488eac6c1cb2ecc9e Mon Sep 17 00:00:00 2001 From: Adam Crume Date: Sun, 23 Jul 2023 12:46:57 -0700 Subject: [PATCH] Upgrade to TensorFlow 2.13.0 --- .github/workflows/requirements.txt | 2 +- examples/addition/model.pb | Bin 178 -> 178 bytes run-valgrind | 2 +- tensorflow-sys/build.rs | 4 ++-- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/requirements.txt b/.github/workflows/requirements.txt index 6e985a9982..39be941d37 100644 --- a/.github/workflows/requirements.txt +++ b/.github/workflows/requirements.txt @@ -1 +1 @@ -tensorflow == 2.12.0 +tensorflow == 2.13.0 diff --git a/examples/addition/model.pb b/examples/addition/model.pb index 8780837d68749bfc15961ff4b71d17500c1f2db2..882b3516cd2ab6b04d3694a8b86d0f9c97e87026 100644 GIT binary patch delta 9 QcmdnQxQTJX2BuTo01|8iegFUf delta 9 QcmdnQxQTJX2Byzk01~|erT_o{ diff --git a/run-valgrind b/run-valgrind index 0da14a755d..1a330d7de5 100755 --- a/run-valgrind +++ b/run-valgrind @@ -19,7 +19,7 @@ function run { echo } -tensorflow_version=2.12.0 +tensorflow_version=2.13.0 valgrind_log=valgrind.log truncate --size=0 "$valgrind_log" diff --git a/tensorflow-sys/build.rs b/tensorflow-sys/build.rs index 3d11390eac..1a4314f2da 100644 --- a/tensorflow-sys/build.rs +++ b/tensorflow-sys/build.rs @@ -24,8 +24,8 @@ const REPOSITORY: &str = "https://github.com/tensorflow/tensorflow.git"; const FRAMEWORK_TARGET: &str = "tensorflow:libtensorflow_framework"; const TARGET: &str = "tensorflow:libtensorflow"; // `VERSION` and `TAG` are separate because the tag is not always `'v' + VERSION`. -const VERSION: &str = "2.12.0"; -const TAG: &str = "v2.12.0"; +const VERSION: &str = "2.13.0"; +const TAG: &str = "v2.13.0"; const MIN_BAZEL: &str = "3.7.2"; macro_rules! get(($name:expr) => (ok!(env::var($name))));