Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit e174f9f

Browse files
authored
Merge branch 'master' into SSL_handshake_refactor
2 parents 4587b1e + 8b8f68d commit e174f9f

File tree

18 files changed

+947
-59
lines changed

18 files changed

+947
-59
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
*~
1010
# Merge files created by git.
1111
*.orig
12+
# Java bytecode
13+
*.class
1214
# Byte compiled python modules.
1315
*.pyc
1416
# vim swap files

script/installation/packages.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ fi
3838
unset UNAME
3939
DISTRO=$(echo $DISTRO | tr "[:lower:]" "[:upper:]")
4040
TMPDIR=/tmp
41-
TF_VERSION="1.4.0"
4241
TF_TYPE="cpu"
4342

4443

@@ -115,20 +114,24 @@ if [ "$DISTRO" = "UBUNTU" ]; then
115114
PKG_CMAKE="cmake"
116115
PKG_LLVM="llvm-3.7"
117116
PKG_CLANG="clang-3.7"
117+
TF_VERSION="1.4.0"
118118

119119
# Fix for cmake name change on Ubuntu 14.x and 16.x plus --force-yes deprecation
120120
if [ "$MAJOR_VER" == "14" ]; then
121121
PKG_CMAKE="cmake3"
122122
FORCE_Y="--force-yes"
123+
TF_VERSION="1.4.0"
123124
TFBinaryURL="https://storage.googleapis.com/tensorflow/linux/${TF_TYPE}/tensorflow-${TF_VERSION}-cp34-cp34m-linux_x86_64.whl"
124125
fi
125126
if [ "$MAJOR_VER" == "16" ]; then
127+
TF_VERSION="1.5.0"
126128
TFBinaryURL="https://storage.googleapis.com/tensorflow/linux/${TF_TYPE}/tensorflow-${TF_VERSION}-cp35-cp35m-linux_x86_64.whl"
127129
fi
128130
# Fix for llvm on Ubuntu 17.x
129131
if [ "$MAJOR_VER" == "17" ]; then
130132
PKG_LLVM="llvm-3.9"
131133
PKG_CLANG="clang-3.8"
134+
TF_VERSION="1.5.0"
132135
TFBinaryURL="https://storage.googleapis.com/tensorflow/linux/${TF_TYPE}/tensorflow-${TF_VERSION}-cp35-cp35m-linux_x86_64.whl"
133136
fi
134137
TFCApiFile="libtensorflow-${TF_TYPE}-linux-x86_64-${TF_VERSION}.tar.gz"
@@ -201,6 +204,7 @@ elif [[ "$DISTRO" == *"FEDORA"* ]]; then
201204
26) LLVM="llvm";;
202205
*) LLVM="llvm4.0";;
203206
esac
207+
TF_VERSION="1.5.0"
204208
TFCApiFile="libtensorflow-${TF_TYPE}-linux-x86_64-${TF_VERSION}.tar.gz"
205209
TFBinaryURL="https://storage.googleapis.com/tensorflow/linux/${TF_TYPE}/tensorflow-${TF_VERSION}-cp36-cp36m-linux_x86_64.whl"
206210
LinkerConfigCmd="sudo ldconfig"
@@ -316,6 +320,7 @@ elif [ "$DISTRO" = "DARWIN" ]; then
316320
echo "Installing homebrew..."
317321
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
318322
fi
323+
TF_VERSION="1.4.0"
319324
TFBinaryURL="https://storage.googleapis.com/tensorflow/mac/${TF_TYPE}/tensorflow-${TF_VERSION}-py3-none-any.whl"
320325
TFCApiFile="libtensorflow-${TF_TYPE}-darwin-x86_64-${TF_VERSION}.tar.gz"
321326
LinkerConfigCmd="sudo update_dyld_shared_cache"

0 commit comments

Comments
 (0)