Skip to content

Commit 5d0a0e5

Browse files
authored
Merge pull request tensorflow#176 from adamcrume/master
Upgrade to TensorFlow 1.10.1
2 parents 86cc7d0 + 7061a3c commit 5d0a0e5

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

run-valgrind

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ set -e
1212

1313
cd $(dirname $(readlink -f "$0"))
1414

15-
tensorflow_version=1.9.0
15+
tensorflow_version=1.10.1
1616

1717
valgrind_log=valgrind.log
1818
truncate --size=0 "$valgrind_log"
@@ -33,7 +33,6 @@ rm -rf target/debug/build/tensorflow-sys-*
3333
echo "Building libtensorflow.so"
3434

3535
# This is the very expensive step.
36-
export TF_RUST_BAZEL_OPTS=--incompatible_load_argument_is_label=false
3736
cargo +nightly build --features=nightly -p tensorflow-sys -vvv -j 1
3837

3938
# Run valgrind against all the things.

tensorflow-sys/build.rs

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

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

0 commit comments

Comments
 (0)