Skip to content

Commit 43125d7

Browse files
committed
Prepare for next iteration
1 parent 8aa4861 commit 43125d7

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

Diff for: README.md

+10-8
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ only binaries for the followings are being **supported and distributed** by this
5858

5959
- `linux-x86_64`: Linux platforms on Intel/AMD chips
6060
- `linux-x86_64-gpu`: Linux platforms on Intel/AMD chips with Cuda GPU support
61+
- `linux-arm64`: Linux platforms on Arm chips
6162
- `macosx-x86_64`: MacOS X platforms on Intel/AMD chips
6263
- `macosx-arm64`: MacOS X platforms on Apple Silicon chips
6364
- `windows-x86_64`: Windows platforms on Intel/AMD chips
@@ -68,12 +69,12 @@ systems with no GPU support, you should add the following dependencies:
6869
<dependency>
6970
<groupId>org.tensorflow</groupId>
7071
<artifactId>tensorflow-core-api</artifactId>
71-
<version>1.0.0-rc.1</version>
72+
<version>1.0.0-rc.2</version>
7273
</dependency>
7374
<dependency>
7475
<groupId>org.tensorflow</groupId>
7576
<artifactId>tensorflow-core-native</artifactId>
76-
<version>1.0.0-rc.1</version>
77+
<version>1.0.0-rc.2</version>
7778
<classifier>linux-x86_64</classifier>
7879
</dependency>
7980
```
@@ -84,24 +85,24 @@ native dependencies as follows:
8485
<dependency>
8586
<groupId>org.tensorflow</groupId>
8687
<artifactId>tensorflow-core-api</artifactId>
87-
<version>1.0.0-rc.1</version>
88+
<version>1.0.0-rc.2</version>
8889
</dependency>
8990
<dependency>
9091
<groupId>org.tensorflow</groupId>
9192
<artifactId>tensorflow-core-native</artifactId>
92-
<version>1.0.0-rc.1</version>
93+
<version>1.0.0-rc.2</version>
9394
<classifier>linux-x86_64-gpu</classifier>
9495
</dependency>
9596
<dependency>
9697
<groupId>org.tensorflow</groupId>
9798
<artifactId>tensorflow-core-native</artifactId>
98-
<version>1.0.0-rc.1</version>
99+
<version>1.0.0-rc.2</version>
99100
<classifier>macosx-arm64</classifier>
100101
</dependency>
101102
<dependency>
102103
<groupId>org.tensorflow</groupId>
103104
<artifactId>tensorflow-core-native</artifactId>
104-
<version>1.0.0-rc.1</version>
105+
<version>1.0.0-rc.2</version>
105106
<classifier>windows-x86_64</classifier>
106107
</dependency>
107108
```
@@ -122,7 +123,7 @@ simply add this dependency to your application:
122123
<dependency>
123124
<groupId>org.tensorflow</groupId>
124125
<artifactId>tensorflow-core-platform</artifactId>
125-
<version>1.0.0-rc.1</version>
126+
<version>1.0.0-rc.2</version>
126127
</dependency>
127128
```
128129

@@ -173,7 +174,8 @@ This table shows the mapping between TensorFlow, TensorFlow Java and minimum sup
173174
| 0.4.2 | 2.7.4 | 8 |
174175
| 0.5.0 | 2.10.1 | 11 |
175176
| 1.0.0-rc.1 | 2.16.1 | 11 |
176-
| 1.0.0-SNAPSHOT | 2.16.1 | 11 |
177+
| 1.0.0-rc.2 | 2.16.2 | 11 |
178+
| 1.0.0-SNAPSHOT | 2.16.2 | 11 |
177179

178180
## How to Contribute?
179181

Diff for: docs/install.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ For example,
5858
<dependency>
5959
<groupId>org.tensorflow</groupId>
6060
<artifactId>tensorflow-core-platform</artifactId>
61-
<version>1.0.0-rc.1</version>
61+
<version>1.0.0-rc.2</version>
6262
</dependency>
6363
```
6464

@@ -164,7 +164,7 @@ add the TensorFlow dependency to the project's `pom.xml` file:
164164
<dependency>
165165
<groupId>org.tensorflow</groupId>
166166
<artifactId>tensorflow-core-platform</artifactId>
167-
<version>1.0.0-rc.1</version>
167+
<version>1.0.0-rc.2</version>
168168
</dependency>
169169
</dependencies>
170170
</project>

Diff for: tensorflow-core/tensorflow-core-generator/src/main/java/org/tensorflow/generator/op/ClassGenerator.java

-4
Original file line numberDiff line numberDiff line change
@@ -297,10 +297,6 @@ void buildClass() {
297297
if (seenGenerics.add(typeVar.name)) {
298298
typeParams.add(typeVar);
299299
builder.addTypeVariable(typeVar);
300-
// FIXME: check if we need to add this or if it's redundant now with other type
301-
// generations.
302-
// builder.addJavadoc("\n@param <$L> data type for {@code $L} output\n", typeVar.name,
303-
// output.getName());
304300
}
305301
}
306302
}

0 commit comments

Comments
 (0)