Skip to content

Commit 7dd0efe

Browse files
author
Amit Patankar
committed
Merge branch 'relnotes_19b' of github.com:av8ramit/tensorflow into relnotes_19b
2 parents 06a7049 + 4641e3c commit 7dd0efe

File tree

12 files changed

+41
-36
lines changed

12 files changed

+41
-36
lines changed

tensorflow/core/public/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ limitations under the License.
1919
// TensorFlow uses semantic versioning, see http://semver.org/.
2020

2121
#define TF_MAJOR_VERSION 1
22-
#define TF_MINOR_VERSION 8
22+
#define TF_MINOR_VERSION 9
2323
#define TF_PATCH_VERSION 0
2424

2525
// TF_VERSION_SUFFIX is non-empty for pre-releases (e.g. "-alpha", "-alpha.1",
2626
// "-beta", "-rc", "-rc.1")
27-
#define TF_VERSION_SUFFIX ""
27+
#define TF_VERSION_SUFFIX "-rc0"
2828

2929
#define TF_STR_HELPER(x) #x
3030
#define TF_STR(x) TF_STR_HELPER(x)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Get Started with Eager Execution
22

3-
[Colab notebook](https://colab.research.google.com/github/tensorflow/models/blob/r1.8.0/samples/core/get_started/eager.ipynb)
3+
[Colab notebook](https://colab.research.google.com/github/tensorflow/models/blob/r1.9.0/samples/core/get_started/eager.ipynb)

tensorflow/docs_src/install/install_c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ enable TensorFlow for C:
3838
OS="linux" # Change to "darwin" for macOS
3939
TARGET_DIRECTORY="/usr/local"
4040
curl -L \
41-
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-${OS}-x86_64-1.8.0.tar.gz" |
41+
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-${OS}-x86_64-1.9.0-rc0.tar.gz" |
4242
sudo tar -C $TARGET_DIRECTORY -xz
4343

4444
The `tar` command extracts the TensorFlow C library into the `lib`

tensorflow/docs_src/install/install_go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ steps to install this library and enable TensorFlow for Go:
3838
TF_TYPE="cpu" # Change to "gpu" for GPU support
3939
TARGET_DIRECTORY='/usr/local'
4040
curl -L \
41-
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-$(go env GOOS)-x86_64-1.8.0.tar.gz" |
41+
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-${TF_TYPE}-$(go env GOOS)-x86_64-1.9.0-rc0.tar.gz" |
4242
sudo tar -C $TARGET_DIRECTORY -xz
4343

4444
The `tar` command extracts the TensorFlow C library into the `lib`

tensorflow/docs_src/install/install_java.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ following to the project's `pom.xml` to use the TensorFlow Java APIs:
3636
<dependency>
3737
<groupId>org.tensorflow</groupId>
3838
<artifactId>tensorflow</artifactId>
39-
<version>1.8.0</version>
39+
<version>1.9.0-rc0</version>
4040
</dependency>
4141
```
4242

@@ -65,7 +65,7 @@ As an example, these steps will create a Maven project that uses TensorFlow:
6565
<dependency>
6666
<groupId>org.tensorflow</groupId>
6767
<artifactId>tensorflow</artifactId>
68-
<version>1.8.0</version>
68+
<version>1.9.0-rc0</version>
6969
</dependency>
7070
</dependencies>
7171
</project>
@@ -124,12 +124,12 @@ instead:
124124
<dependency>
125125
<groupId>org.tensorflow</groupId>
126126
<artifactId>libtensorflow</artifactId>
127-
<version>1.8.0</version>
127+
<version>1.9.0-rc0</version>
128128
</dependency>
129129
<dependency>
130130
<groupId>org.tensorflow</groupId>
131131
<artifactId>libtensorflow_jni_gpu</artifactId>
132-
<version>1.8.0</version>
132+
<version>1.9.0-rc0</version>
133133
</dependency>
134134
```
135135

@@ -148,7 +148,7 @@ refer to the simpler instructions above instead.
148148
Take the following steps to install TensorFlow for Java on Linux or macOS:
149149

150150
1. Download
151-
[libtensorflow.jar](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.8.0.jar),
151+
[libtensorflow.jar](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.9.0-rc0.jar),
152152
which is the TensorFlow Java Archive (JAR).
153153

154154
2. Decide whether you will run TensorFlow for Java on CPU(s) only or with
@@ -167,18 +167,18 @@ Take the following steps to install TensorFlow for Java on Linux or macOS:
167167
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
168168
mkdir -p ./jni
169169
curl -L \
170-
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-${TF_TYPE}-${OS}-x86_64-1.8.0.tar.gz" |
170+
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-${TF_TYPE}-${OS}-x86_64-1.9.0-rc0.tar.gz" |
171171
tar -xz -C ./jni
172172

173173
### Install on Windows
174174

175175
Take the following steps to install TensorFlow for Java on Windows:
176176

177177
1. Download
178-
[libtensorflow.jar](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.8.0.jar),
178+
[libtensorflow.jar](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.9.0-rc0.jar),
179179
which is the TensorFlow Java Archive (JAR).
180180
2. Download the following Java Native Interface (JNI) file appropriate for
181-
[TensorFlow for Java on Windows](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-cpu-windows-x86_64-1.8.0.zip).
181+
[TensorFlow for Java on Windows](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-cpu-windows-x86_64-1.9.0-rc0.zip).
182182
3. Extract this .zip file.
183183

184184

@@ -227,7 +227,7 @@ must be part of your `classpath`. For example, you can include the
227227
downloaded `.jar` in your `classpath` by using the `-cp` compilation flag
228228
as follows:
229229

230-
<pre><b>javac -cp libtensorflow-1.8.0.jar HelloTF.java</b></pre>
230+
<pre><b>javac -cp libtensorflow-1.9.0-rc0.jar HelloTF.java</b></pre>
231231

232232

233233
### Running
@@ -241,11 +241,11 @@ two files are available to the JVM:
241241
For example, the following command line executes the `HelloTF` program on Linux
242242
and macOS X:
243243

244-
<pre><b>java -cp libtensorflow-1.8.0.jar:. -Djava.library.path=./jni HelloTF</b></pre>
244+
<pre><b>java -cp libtensorflow-1.9.0-rc0.jar:. -Djava.library.path=./jni HelloTF</b></pre>
245245

246246
And the following command line executes the `HelloTF` program on Windows:
247247

248-
<pre><b>java -cp libtensorflow-1.8.0.jar;. -Djava.library.path=jni HelloTF</b></pre>
248+
<pre><b>java -cp libtensorflow-1.9.0-rc0.jar;. -Djava.library.path=jni HelloTF</b></pre>
249249

250250
If the program prints <tt>Hello from <i>version</i></tt>, you've successfully
251251
installed TensorFlow for Java and are ready to use the API. If the program

tensorflow/docs_src/install/install_linux.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ Take the following steps to install TensorFlow in an Anaconda environment:
438438

439439
<pre>
440440
(tensorflow)$ <b>pip install --ignore-installed --upgrade \
441-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.8.0-cp34-cp34m-linux_x86_64.whl</b></pre>
441+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.9.0rc0-cp34-cp34m-linux_x86_64.whl</b></pre>
442442

443443
<a name="ValidateYourInstallation"></a>
444444
## Validate your installation
@@ -684,14 +684,14 @@ This section documents the relevant values for Linux installations.
684684
CPU only:
685685

686686
<pre>
687-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.8.0-cp27-none-linux_x86_64.whl
687+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.9.0rc0-cp27-none-linux_x86_64.whl
688688
</pre>
689689

690690

691691
GPU support:
692692

693693
<pre>
694-
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.8.0-cp27-none-linux_x86_64.whl
694+
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.9.0rc0-cp27-none-linux_x86_64.whl
695695
</pre>
696696

697697
Note that GPU support requires the NVIDIA hardware and software described in
@@ -703,14 +703,14 @@ Note that GPU support requires the NVIDIA hardware and software described in
703703
CPU only:
704704

705705
<pre>
706-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.8.0-cp34-cp34m-linux_x86_64.whl
706+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.9.0rc0-cp34-cp34m-linux_x86_64.whl
707707
</pre>
708708

709709

710710
GPU support:
711711

712712
<pre>
713-
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.8.0-cp34-cp34m-linux_x86_64.whl
713+
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.9.0rc0-cp34-cp34m-linux_x86_64.whl
714714
</pre>
715715

716716
Note that GPU support requires the NVIDIA hardware and software described in
@@ -722,14 +722,14 @@ Note that GPU support requires the NVIDIA hardware and software described in
722722
CPU only:
723723

724724
<pre>
725-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.8.0-cp35-cp35m-linux_x86_64.whl
725+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.9.0rc0-cp35-cp35m-linux_x86_64.whl
726726
</pre>
727727

728728

729729
GPU support:
730730

731731
<pre>
732-
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.8.0-cp35-cp35m-linux_x86_64.whl
732+
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.9.0rc0-cp35-cp35m-linux_x86_64.whl
733733
</pre>
734734

735735

@@ -741,14 +741,14 @@ Note that GPU support requires the NVIDIA hardware and software described in
741741
CPU only:
742742

743743
<pre>
744-
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.8.0-cp36-cp36m-linux_x86_64.whl
744+
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.9.0rc0-cp36-cp36m-linux_x86_64.whl
745745
</pre>
746746

747747

748748
GPU support:
749749

750750
<pre>
751-
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.8.0-cp36-cp36m-linux_x86_64.whl
751+
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.9.0rc0-cp36-cp36m-linux_x86_64.whl
752752
</pre>
753753

754754

tensorflow/docs_src/install/install_mac.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Take the following steps to install TensorFlow with Virtualenv:
119119
TensorFlow in the active Virtualenv is as follows:
120120

121121
<pre> $ <b>pip3 install --upgrade \
122-
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.8.0-py3-none-any.whl</b></pre>
122+
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.9.0rc0-py3-none-any.whl</b></pre>
123123

124124
If you encounter installation problems, see
125125
[Common Installation Problems](#common-installation-problems).
@@ -242,7 +242,7 @@ take the following steps:
242242
issue the following command:
243243

244244
<pre> $ <b>sudo pip3 install --upgrade \
245-
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.8.0-py3-none-any.whl</b> </pre>
245+
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.9.0rc0-py3-none-any.whl</b> </pre>
246246

247247
If the preceding command fails, see
248248
[installation problems](#common-installation-problems).
@@ -350,7 +350,7 @@ Take the following steps to install TensorFlow in an Anaconda environment:
350350
TensorFlow for Python 2.7:
351351

352352
<pre> (<i>targetDirectory</i>)$ <b>pip install --ignore-installed --upgrade \
353-
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.8.0-py2-none-any.whl</b></pre>
353+
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.9.0rc0-py2-none-any.whl</b></pre>
354354

355355

356356
<a name="ValidateYourInstallation"></a>
@@ -522,13 +522,13 @@ The value you specify depends on your Python version.
522522

523523

524524
<pre>
525-
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.8.0-py2-none-any.whl
525+
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.9.0rc0-py2-none-any.whl
526526
</pre>
527527

528528

529529
### Python 3.4, 3.5, or 3.6
530530

531531

532532
<pre>
533-
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.8.0-py3-none-any.whl
533+
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.9.0rc0-py3-none-any.whl
534534
</pre>

tensorflow/docs_src/install/install_sources.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,10 +328,10 @@ Invoke `pip install` to install that pip package.
328328
The filename of the `.whl` file depends on your platform.
329329
For example, the following command will install the pip package
330330

331-
for TensorFlow 1.8.0 on Linux:
331+
for TensorFlow 1.9.0rc0 on Linux:
332332

333333
<pre>
334-
$ <b>sudo pip install /tmp/tensorflow_pkg/tensorflow-1.8.0-py2-none-any.whl</b>
334+
$ <b>sudo pip install /tmp/tensorflow_pkg/tensorflow-1.9.0rc0-py2-none-any.whl</b>
335335
</pre>
336336

337337
## Validate your installation
@@ -433,6 +433,8 @@ Stack Overflow and specify the `tensorflow` tag.
433433
**Linux**
434434
<table>
435435
<tr><th>Version:</th><th>CPU/GPU:</th><th>Python Version:</th><th>Compiler:</th><th>Build Tools:</th><th>cuDNN:</th><th>CUDA:</th></tr>
436+
<tr><td>tensorflow-1.9.0</td><td>CPU</td><td>2.7, 3.3-3.6</td><td>GCC 4.8</td><td>Bazel 0.11.0</td><td>N/A</td><td>N/A</td></tr>
437+
<tr><td>tensorflow_gpu-1.9.0</td><td>GPU</td><td>2.7, 3.3-3.6</td><td>GCC 4.8</td><td>Bazel 0.11.0</td><td>7</td><td>9</td></tr>
436438
<tr><td>tensorflow-1.8.0</td><td>CPU</td><td>2.7, 3.3-3.6</td><td>GCC 4.8</td><td>Bazel 0.10.0</td><td>N/A</td><td>N/A</td></tr>
437439
<tr><td>tensorflow_gpu-1.8.0</td><td>GPU</td><td>2.7, 3.3-3.6</td><td>GCC 4.8</td><td>Bazel 0.9.0</td><td>7</td><td>9</td></tr>
438440
<tr><td>tensorflow-1.7.0</td><td>CPU</td><td>2.7, 3.3-3.6</td><td>GCC 4.8</td><td>Bazel 0.10.0</td><td>N/A</td><td>N/A</td></tr>
@@ -456,6 +458,7 @@ Stack Overflow and specify the `tensorflow` tag.
456458
**Mac**
457459
<table>
458460
<tr><th>Version:</th><th>CPU/GPU:</th><th>Python Version:</th><th>Compiler:</th><th>Build Tools:</th><th>cuDNN:</th><th>CUDA:</th></tr>
461+
<tr><td>tensorflow-1.9.0</td><td>CPU</td><td>2.7, 3.3-3.6</td><td>Clang from xcode</td><td>Bazel 0.11.0</td><td>N/A</td><td>N/A</td></tr>
459462
<tr><td>tensorflow-1.8.0</td><td>CPU</td><td>2.7, 3.3-3.6</td><td>Clang from xcode</td><td>Bazel 0.10.1</td><td>N/A</td><td>N/A</td></tr>
460463
<tr><td>tensorflow-1.7.0</td><td>CPU</td><td>2.7, 3.3-3.6</td><td>Clang from xcode</td><td>Bazel 0.10.1</td><td>N/A</td><td>N/A</td></tr>
461464
<tr><td>tensorflow-1.6.0</td><td>CPU</td><td>2.7, 3.3-3.6</td><td>Clang from xcode</td><td>Bazel 0.8.1</td><td>N/A</td><td>N/A</td></tr>
@@ -472,6 +475,8 @@ Stack Overflow and specify the `tensorflow` tag.
472475
**Windows**
473476
<table>
474477
<tr><th>Version:</th><th>CPU/GPU:</th><th>Python Version:</th><th>Compiler:</th><th>Build Tools:</th><th>cuDNN:</th><th>CUDA:</th></tr>
478+
<tr><td>tensorflow-1.9.0</td><td>CPU</td><td>3.5-3.6</td><td>MSVC 2015 update 3</td><td>Cmake v3.6.3</td><td>N/A</td><td>N/A</td></tr>
479+
<tr><td>tensorflow_gpu-1.9.0</td><td>GPU</td><td>3.5-3.6</td><td>MSVC 2015 update 3</td><td>Cmake v3.6.3</td><td>7</td><td>9</td></tr>
475480
<tr><td>tensorflow-1.8.0</td><td>CPU</td><td>3.5-3.6</td><td>MSVC 2015 update 3</td><td>Cmake v3.6.3</td><td>N/A</td><td>N/A</td></tr>
476481
<tr><td>tensorflow_gpu-1.8.0</td><td>GPU</td><td>3.5-3.6</td><td>MSVC 2015 update 3</td><td>Cmake v3.6.3</td><td>7</td><td>9</td></tr>
477482
<tr><td>tensorflow-1.7.0</td><td>CPU</td><td>3.5-3.6</td><td>MSVC 2015 update 3</td><td>Cmake v3.6.3</td><td>N/A</td><td>N/A</td></tr>

tensorflow/tools/docker/Dockerfile.devel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ RUN mkdir /bazel && \
7676

7777
# Download and build TensorFlow.
7878
WORKDIR /tensorflow
79-
RUN git clone --branch=r1.8 --depth=1 https://github.com/tensorflow/tensorflow.git .
79+
RUN git clone --branch=r1.9 --depth=1 https://github.com/tensorflow/tensorflow.git .
8080

8181
# TODO(craigcitro): Don't install the pip package, since it makes it
8282
# more difficult to experiment with local changes. Instead, just add

tensorflow/tools/docker/Dockerfile.devel-cpu-mkl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM tensorflow/tensorflow:latest-devel
33
LABEL maintainer="Clayne Robison<clayne.b.robison@intel.com>"
44

55
# These arguments are parameterized. Use --build-args to override.
6-
ARG TF_BRANCH=r1.8
6+
ARG TF_BRANCH=r1.9
77
ARG WHL_DIR=/whl
88

99
RUN apt-get update && apt-get install -y --no-install-recommends \

tensorflow/tools/docker/Dockerfile.devel-gpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ RUN mkdir /bazel && \
8585

8686
# Download and build TensorFlow.
8787
WORKDIR /tensorflow
88-
RUN git clone --branch=r1.8 --depth=1 https://github.com/tensorflow/tensorflow.git .
88+
RUN git clone --branch=r1.9 --depth=1 https://github.com/tensorflow/tensorflow.git .
8989

9090
# Configure the build for our CUDA configuration.
9191
ENV CI_BUILD_PYTHON python

tensorflow/tools/pip_package/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
# This version string is semver compatible, but incompatible with pip.
4646
# For pip, we will remove all '-' characters from this string, and use the
4747
# result for pip.
48-
_VERSION = '1.8.0'
48+
_VERSION = '1.9.0-rc0'
4949

5050
REQUIRED_PACKAGES = [
5151
'absl-py >= 0.1.6',

0 commit comments

Comments
 (0)