Skip to content

Commit

Permalink
Bumping to 1.0.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
Craigacp authored and karllessard committed Apr 5, 2024
1 parent cff20e9 commit 13ce91b
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 24 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,24 +56,24 @@ restrictive.
While TensorFlow Java can be compiled for [multiple platforms](https://github.com/tensorflow/java/blob/master/tensorflow-core/pom.xml#L54),
only binaries for the followings are being **supported and distributed** by this project:

- `linux-x86_64`: Linux platforms on Intel chips
- `linux-x86_64-gpu`: Linux platforms on Intel chips with Cuda GPU support
- `macosx-x86_64`: MacOS X platforms on Intel chips
- `linux-x86_64`: Linux platforms on Intel/AMD chips
- `linux-x86_64-gpu`: Linux platforms on Intel/AMD chips with Cuda GPU support
- `macosx-x86_64`: MacOS X platforms on Intel/AMD chips
- `macosx-arm64`: MacOS X platforms on Apple Silicon chips
- `windows-x86_64`: Windows platforms on Intel chips
- `windows-x86_64`: Windows platforms on Intel/AMD chips

For example, for building a JAR that uses TensorFlow and is targeted to be deployed only on Linux
systems with no GPU support, you should add the following dependencies:
```xml
<dependency>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow-core-api</artifactId>
<version>0.5.0</version>
<version>1.0.0-rc1</version>
</dependency>
<dependency>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow-core-native</artifactId>
<version>0.5.0</version>
<version>1.0.0-rc1</version>
<classifier>linux-x86_64</classifier>
</dependency>
```
Expand All @@ -84,24 +84,24 @@ native dependencies as follows:
<dependency>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow-core-api</artifactId>
<version>0.5.0</version>
<version>1.0.0-rc1</version>
</dependency>
<dependency>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow-core-native</artifactId>
<version>0.5.0</version>
<version>1.0.0-rc1</version>
<classifier>linux-x86_64-gpu</classifier>
</dependency>
<dependency>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow-core-native</artifactId>
<version>0.5.0</version>
<version>1.0.0-rc1</version>
<classifier>macosx-arm64</classifier>
</dependency>
<dependency>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow-core-native</artifactId>
<version>0.5.0</version>
<version>1.0.0-rc1</version>
<classifier>windows-x86_64</classifier>
</dependency>
```
Expand All @@ -116,13 +116,13 @@ required to run TensorFlow Java on any [supported platforms](README.md#individua

- `tensorflow-core-platform`: Includes `tensorflow-core-api`, plus native artifacts for `linux-x86_64`, `macosx-arm64`, `macosx-x86_64` and `windows-x86_64`

For example, to run TensorFlow Java on any platform for which a binary is being distributed by this project, you can
For example, to run TensorFlow Java on any CPU platform for which a binary is being distributed by this project, you can
simply add this dependency to your application:
```xml
<dependency>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow-core-platform</artifactId>
<version>0.5.0</version>
<version>1.0.0-rc1</version>
</dependency>
```

Expand Down Expand Up @@ -172,7 +172,7 @@ This table shows the mapping between TensorFlow, TensorFlow Java and minimum sup
| 0.4.1 | 2.7.1 | 8 |
| 0.4.2 | 2.7.4 | 8 |
| 0.5.0 | 2.10.1 | 11 |
| 0.6.0-SNAPSHOT | 2.10.1 | 11 |
| 1.0.0-rc1 | 2.16.1 | 11 |
| 1.0.0-SNAPSHOT | 2.16.1 | 11 |

## How to Contribute?
Expand Down
8 changes: 4 additions & 4 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ following platforms:

## Versions

TensorFlow Java has its own release cycle, independent from the
TensorFlow Java has its own release cycle, independent of the
[TensorFlow runtime](https://github.com/tensorflow/tensorflow). Consequently,
its version does not match the version of TensorFlow runtime it runs on. Consult
the TensorFlow Java
Expand Down Expand Up @@ -58,7 +58,7 @@ For example,
<dependency>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow-core-platform</artifactId>
<version>0.5.0</version>
<version>1.0.0-rc1</version>
</dependency>
```

Expand Down Expand Up @@ -118,7 +118,7 @@ repositories {
}
dependencies {
compile group: 'org.tensorflow', name: 'tensorflow-core-platform', version: '0.5.0'
compile group: 'org.tensorflow', name: 'tensorflow-core-platform', version: '1.0.0-rc1'
}
```

Expand Down Expand Up @@ -164,7 +164,7 @@ add the TensorFlow dependency to the project's `pom.xml` file:
<dependency>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow-core-platform</artifactId>
<version>0.5.0</version>
<version>1.0.0-rc1</version>
</dependency>
</dependencies>
</project>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>org.tensorflow</groupId>
<artifactId>tensorflow-java</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-rc1</version>
<packaging>pom</packaging>

<name>TensorFlow Java Parent</name>
Expand Down
2 changes: 1 addition & 1 deletion tensorflow-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow-java</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-rc1</version>
</parent>
<artifactId>tensorflow-core</artifactId>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion tensorflow-core/tensorflow-core-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow-core</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-rc1</version>
</parent>
<artifactId>tensorflow-core-api</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion tensorflow-core/tensorflow-core-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow-core</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-rc1</version>
</parent>
<artifactId>tensorflow-core-generator</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion tensorflow-core/tensorflow-core-native/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow-core</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-rc1</version>
</parent>
<artifactId>tensorflow-core-native</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion tensorflow-core/tensorflow-core-platform/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow-core</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-rc1</version>
</parent>
<artifactId>tensorflow-core-platform</artifactId>
<name>TensorFlow API Platform</name>
Expand Down
2 changes: 1 addition & 1 deletion tensorflow-framework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>org.tensorflow</groupId>
<artifactId>tensorflow-java</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-rc1</version>
</parent>
<artifactId>tensorflow-framework</artifactId>
<packaging>jar</packaging>
Expand Down

0 comments on commit 13ce91b

Please sign in to comment.