Skip to content

Commit dc5f4f1

Browse files
committed
linux-arm64: add build artifact item for linux-arm64 platform
TensorFlow v2.16.1 wheel artifacts are added
1 parent 71654ca commit dc5f4f1

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

tensorflow-core/tensorflow-core-native/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,12 @@
131131
<version>${project.version}</version>
132132
<classifier>${javacpp.platform.windows-x86_64}</classifier>
133133
</artifactItem>
134+
<artifactItem>
135+
<groupId>${project.groupId}</groupId>
136+
<artifactId>${project.artifactId}</artifactId>
137+
<version>${project.version}</version>
138+
<classifier>${javacpp.platform.linux-arm64}</classifier>
139+
</artifactItem>
134140
</artifactItems>
135141
</configuration>
136142
</execution>

tensorflow-core/tensorflow-core-native/scripts/dist_download.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ case ${PLATFORM:-} in
2020
WHEEL_URL='https://files.pythonhosted.org/packages/e0/36/6278e4e7e69a90c00e0f82944d8f2713dd85a69d1add455d9e50446837ab/tensorflow_intel-2.16.1-cp311-cp311-win_amd64.whl'
2121
CLIB_URL='https://storage.googleapis.com/tensorflow/versions/2.16.1/libtensorflow-cpu-windows-x86_64.zip'
2222
;;
23+
'linux-arm64')
24+
WHEEL_URL='https://files.pythonhosted.org/packages/41/ab/e5386c722548df2043c1eaadc431ea3ba0ee42a66b3af7f8013bbbacecd3/tensorflow-2.16.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl'
25+
;;
2326
*)
2427
echo "TensorFlow distribution for ${PLATFORM} is not supported for download"
2528
exit 1;

0 commit comments

Comments
 (0)