Skip to content

Commit

Permalink
Merge pull request #176 from adamcrume/master
Browse files Browse the repository at this point in the history
Upgrade to TensorFlow 1.10.1
  • Loading branch information
adamcrume committed Sep 4, 2018
2 parents 86cc7d0 + 7061a3c commit 5d0a0e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions run-valgrind
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ set -e

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

tensorflow_version=1.9.0
tensorflow_version=1.10.1

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

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

# Run valgrind against all the things.
Expand Down
4 changes: 2 additions & 2 deletions tensorflow-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ const REPOSITORY: &'static str = "https://github.com/tensorflow/tensorflow.git";
const FRAMEWORK_TARGET: &'static str = "tensorflow:libtensorflow_framework.so";
const TARGET: &'static str = "tensorflow:libtensorflow.so";
// `VERSION` and `TAG` are separate because the tag is not always `'v' + VERSION`.
const VERSION: &'static str = "1.9.0";
const TAG: &'static str = "v1.9.0";
const VERSION: &'static str = "1.10.1";
const TAG: &'static str = "v1.10.1";
const MIN_BAZEL: &'static str = "0.5.4";

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

0 comments on commit 5d0a0e5

Please sign in to comment.