Skip to content

Commit

Permalink
Merge commit for internal changes
Browse files Browse the repository at this point in the history
  • Loading branch information
yifeif committed Feb 23, 2018
2 parents fac1930 + f64c38b commit 055fc23
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 111 deletions.
41 changes: 1 addition & 40 deletions install/install_java.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,7 @@ As an example, these steps will create a Maven project that uses TensorFlow:
<dependency>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow</artifactId>
<<<<<<< HEAD
<version>1.6.0-rc1</version>
=======
<version>1.6.0-rc0</version>
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
</dependency>
</dependencies>
</project>
Expand Down Expand Up @@ -127,20 +123,12 @@ instead:
<dependency>
<groupId>org.tensorflow</groupId>
<artifactId>libtensorflow</artifactId>
<<<<<<< HEAD
<version>1.6.0-rc1</version>
=======
<version>1.6.0-rc0</version>
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
</dependency>
<dependency>
<groupId>org.tensorflow</groupId>
<artifactId>libtensorflow_jni_gpu</artifactId>
<<<<<<< HEAD
<version>1.6.0-rc1</version>
=======
<version>1.6.0-rc0</version>
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
</dependency>
```

Expand All @@ -159,11 +147,7 @@ refer to the simpler instructions above instead.
Take the following steps to install TensorFlow for Java on Linux or macOS:

1. Download
<<<<<<< HEAD
[libtensorflow.jar](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.6.0-rc1.jar),
=======
[libtensorflow.jar](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.6.0-rc0.jar),
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
which is the TensorFlow Java Archive (JAR).

2. Decide whether you will run TensorFlow for Java on CPU(s) only or with
Expand All @@ -182,29 +166,18 @@ Take the following steps to install TensorFlow for Java on Linux or macOS:
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
mkdir -p ./jni
curl -L \
<<<<<<< HEAD
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-${TF_TYPE}-${OS}-x86_64-1.6.0-rc1.tar.gz" |
=======
"https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-${TF_TYPE}-${OS}-x86_64-1.6.0-rc0.tar.gz" |
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
tar -xz -C ./jni

### Install on Windows

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

1. Download
<<<<<<< HEAD
[libtensorflow.jar](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.6.0-rc1.jar),
which is the TensorFlow Java Archive (JAR).
2. Download the following Java Native Interface (JNI) file appropriate for
[TensorFlow for Java on Windows](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-cpu-windows-x86_64-1.6.0-rc1.zip).
=======
[libtensorflow.jar](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-1.6.0-rc0.jar),
which is the TensorFlow Java Archive (JAR).
2. Download the following Java Native Interface (JNI) file appropriate for
[TensorFlow for Java on Windows](https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow_jni-cpu-windows-x86_64-1.6.0-rc0.zip).
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
3. Extract this .zip file.


Expand Down Expand Up @@ -252,11 +225,7 @@ must be part of your `classpath`. For example, you can include the
downloaded `.jar` in your `classpath` by using the `-cp` compilation flag
as follows:

<<<<<<< HEAD
<pre><b>javac -cp libtensorflow-1.6.0-rc1.jar HelloTF.java</b></pre>
=======
<pre><b>javac -cp libtensorflow-1.6.0-rc0.jar HelloTF.java</b></pre>
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d


### Running
Expand All @@ -270,19 +239,11 @@ two files are available to the JVM:
For example, the following command line executes the `HelloTF` program on Linux
and macOS X:

<<<<<<< HEAD
<pre><b>java -cp libtensorflow-1.6.0-rc1.jar:. -Djava.library.path=./jni HelloTF</b></pre>

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

<pre><b>java -cp libtensorflow-1.6.0-rc1.jar;. -Djava.library.path=jni HelloTF</b></pre>
=======
<pre><b>java -cp libtensorflow-1.6.0-rc0.jar:. -Djava.library.path=./jni HelloTF</b></pre>

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

<pre><b>java -cp libtensorflow-1.6.0-rc0.jar;. -Djava.library.path=jni HelloTF</b></pre>
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
<pre><b>java -cp libtensorflow-1.6.0-rc1.jar;. -Djava.library.path=jni HelloTF</b></pre>d

If the program prints <tt>Hello from <i>version</i></tt>, you've successfully
installed TensorFlow for Java and are ready to use the API. If the program
Expand Down
41 changes: 0 additions & 41 deletions install/install_linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -293,11 +293,7 @@ take the following steps:

<pre>
$ <b>sudo pip3 install --upgrade \
<<<<<<< HEAD
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.6.0rc1-cp34-cp34m-linux_x86_64.whl</b>
=======
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.6.0rc0-cp34-cp34m-linux_x86_64.whl</b>
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
</pre>

If this step fails, see
Expand Down Expand Up @@ -484,12 +480,7 @@ Take the following steps to install TensorFlow in an Anaconda environment:

<pre>
(tensorflow)$ <b>pip install --ignore-installed --upgrade \
<<<<<<< HEAD
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.6.0rc1-cp34-cp34m-linux_x86_64.whl</b></pre>
=======
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.6.0rc0-cp34-cp34m-linux_x86_64.whl</b></pre>
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d

<a name="ValidateYourInstallation"></a>
## Validate your installation
Expand Down Expand Up @@ -656,22 +647,14 @@ This section documents the relevant values for Linux installations.
CPU only:

<pre>
<<<<<<< HEAD
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.6.0rc1-cp27-none-linux_x86_64.whl
=======
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.6.0rc0-cp27-none-linux_x86_64.whl
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
</pre>


GPU support:

<pre>
<<<<<<< HEAD
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.6.0rc1-cp27-none-linux_x86_64.whl
=======
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.6.0rc0-cp27-none-linux_x86_64.whl
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
</pre>

Note that GPU support requires the NVIDIA hardware and software described in
Expand All @@ -683,22 +666,14 @@ Note that GPU support requires the NVIDIA hardware and software described in
CPU only:

<pre>
<<<<<<< HEAD
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.6.0rc1-cp34-cp34m-linux_x86_64.whl
=======
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.6.0rc0-cp34-cp34m-linux_x86_64.whl
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
</pre>


GPU support:

<pre>
<<<<<<< HEAD
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.6.0rc1-cp34-cp34m-linux_x86_64.whl
=======
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.6.0rc0-cp34-cp34m-linux_x86_64.whl
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
</pre>

Note that GPU support requires the NVIDIA hardware and software described in
Expand All @@ -710,22 +685,14 @@ Note that GPU support requires the NVIDIA hardware and software described in
CPU only:

<pre>
<<<<<<< HEAD
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.6.0rc1-cp35-cp35m-linux_x86_64.whl
=======
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.6.0rc0-cp35-cp35m-linux_x86_64.whl
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
</pre>


GPU support:

<pre>
<<<<<<< HEAD
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.6.0rc1-cp35-cp35m-linux_x86_64.whl
=======
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.6.0rc0-cp35-cp35m-linux_x86_64.whl
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
</pre>


Expand All @@ -737,22 +704,14 @@ Note that GPU support requires the NVIDIA hardware and software described in
CPU only:

<pre>
<<<<<<< HEAD
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.6.0rc1-cp36-cp36m-linux_x86_64.whl
=======
https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.6.0rc0-cp36-cp36m-linux_x86_64.whl
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
</pre>


GPU support:

<pre>
<<<<<<< HEAD
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.6.0rc1-cp36-cp36m-linux_x86_64.whl
=======
https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.6.0rc0-cp36-cp36m-linux_x86_64.whl
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
</pre>


Expand Down
16 changes: 0 additions & 16 deletions install/install_mac.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,11 +242,7 @@ take the following steps:
issue the following command:

<pre> $ <b>sudo pip3 install --upgrade \
<<<<<<< HEAD
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.6.0rc1-py3-none-any.whl</b> </pre>
=======
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.6.0rc0-py3-none-any.whl</b> </pre>
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d

If the preceding command fails, see
[installation problems](#common-installation-problems).
Expand Down Expand Up @@ -355,11 +351,7 @@ Take the following steps to install TensorFlow in an Anaconda environment:
TensorFlow for Python 2.7:

<pre> (<i>targetDirectory</i>)$ <b>pip install --ignore-installed --upgrade \
<<<<<<< HEAD
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.6.0rc1-py2-none-any.whl</b></pre>
=======
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.6.0rc0-py2-none-any.whl</b></pre>
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d


<a name="ValidateYourInstallation"></a>
Expand Down Expand Up @@ -532,21 +524,13 @@ This section documents the relevant values for Mac OS installations.


<pre>
<<<<<<< HEAD
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.6.0rc1-py2-none-any.whl
=======
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.6.0rc0-py2-none-any.whl
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
</pre>


### Python 3.4, 3.5, or 3.6


<pre>
<<<<<<< HEAD
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.6.0rc1-py3-none-any.whl
=======
https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.6.0rc0-py3-none-any.whl
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
</pre>
14 changes: 0 additions & 14 deletions install/install_sources.md
Original file line number Diff line number Diff line change
Expand Up @@ -460,13 +460,8 @@ Stack Overflow and specify the `tensorflow` tag.
**Linux**
<table>
<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>
<<<<<<< HEAD
<tr><td>tensorflow-1.6.0</td><td>CPU</td><td>2.7, 3.3-3.6</td><td>GCC 4.8</td><td>Bazel 0.9.0</td><td>N/A</td><td>N/A</td></tr>
<tr><td>tensorflow_gpu-1.6.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>
=======
<tr><td>tensorflow-1.6.0rc0</td><td>CPU</td><td>2.7, 3.3-3.6</td><td>GCC 4.8</td><td>Bazel 0.9.0</td><td>N/A</td><td>N/A</td></tr>
<tr><td>tensorflow_gpu-1.6.0rc0</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>
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
<tr><td>tensorflow-1.5.0</td><td>CPU</td><td>2.7, 3.3-3.6</td><td>GCC 4.8</td><td>Bazel 0.8.0</td><td>N/A</td><td>N/A</td></tr>
<tr><td>tensorflow_gpu-1.5.0</td><td>GPU</td><td>2.7, 3.3-3.6</td><td>GCC 4.8</td><td>Bazel 0.8.0</td><td>7</td><td>9</td></tr>
<tr><td>tensorflow-1.4.0</td><td>CPU</td><td>2.7, 3.3-3.6</td><td>GCC 4.8</td><td>Bazel 0.5.4</td><td>N/A</td><td>N/A</td></tr>
Expand All @@ -484,11 +479,7 @@ Stack Overflow and specify the `tensorflow` tag.
**Mac**
<table>
<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>
<<<<<<< HEAD
<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>
=======
<tr><td>tensorflow-1.6.0rc0</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>
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
<tr><td>tensorflow-1.5.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>
<tr><td>tensorflow-1.4.0</td><td>CPU</td><td>2.7, 3.3-3.6</td><td>Clang from xcode</td><td>Bazel 0.5.4</td><td>N/A</td><td>N/A</td></tr>
<tr><td>tensorflow-1.3.0</td><td>CPU</td><td>2.7, 3.3-3.6</td><td>Clang from xcode</td><td>Bazel 0.4.5</td><td>N/A</td><td>N/A</td></tr>
Expand All @@ -502,13 +493,8 @@ Stack Overflow and specify the `tensorflow` tag.
**Windows**
<table>
<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>
<<<<<<< HEAD
<tr><td>tensorflow-1.6.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>
<tr><td>tensorflow_gpu-1.6.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>
=======
<tr><td>tensorflow-1.6.0rc0</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>
<tr><td>tensorflow_gpu-1.6.0rc0</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>
>>>>>>> 943a21fcdc1c48c8e95d872911ad52b13f0c037d
<tr><td>tensorflow-1.5.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>
<tr><td>tensorflow_gpu-1.5.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>
<tr><td>tensorflow-1.4.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>
Expand Down

0 comments on commit 055fc23

Please sign in to comment.