Skip to content

Commit cc3e816

Browse files
committedFeb 24, 2024
First draft for Bazelcism
1 parent d39cbb9 commit cc3e816

File tree

75 files changed

+744
-388
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+744
-388
lines changed
 

‎tensorflow-core/pom.xml

+18-5
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,10 @@
3838
<properties>
3939
<!--
4040
Match version used by TensorFlow, in
41-
https://github.com/tensorflow/tensorflow/blob/master/tensorflow/workspace2.bzl#L567
41+
https://github.com/tensorflow/tensorflow/blob/master/tensorflow/workspace2.bzl
4242
(but for the currently used release, not master)
43-
44-
Bumped to newer version to patch a CVE only present in protobuf-java
4543
-->
46-
<protobuf.version>3.19.4</protobuf.version>
44+
<protobuf.version>3.21.9</protobuf.version>
4745

4846
<native.classifier>${javacpp.platform}${javacpp.platform.extension}</native.classifier>
4947
<javacpp.build.skip>false</javacpp.build.skip> <!-- To skip execution of build.sh: -Djavacpp.build.skip=true -->
@@ -69,7 +67,10 @@
6967
<javacpp.platform.macosx-x86_64.extension>macosx-x86_64${javacpp.platform.extension}</javacpp.platform.macosx-x86_64.extension>
7068
<javacpp.platform.windows-x86.extension>windows-x86${javacpp.platform.extension}</javacpp.platform.windows-x86.extension>
7169
<javacpp.platform.windows-x86_64.extension>windows-x86_64${javacpp.platform.extension}</javacpp.platform.windows-x86_64.extension>
72-
<javacpp.version>1.5.8</javacpp.version>
70+
<javacpp.version>1.5.9</javacpp.version>
71+
72+
<native.wheel.url/>
73+
<native.wheel.url.macosx-arm64>https://files.pythonhosted.org/packages/d2/e6/94748fedae940a7095ac3acb821e613f72513cf9fa8ea0cf6fe734ef8c8f/tensorflow_macos-2.12.0-cp311-cp311-macosx_12_0_arm64.whl</native.wheel.url.macosx-arm64>
7374
</properties>
7475

7576
<profiles>
@@ -882,6 +883,18 @@
882883
<os.name>macosx</os.name>
883884
</properties>
884885
</profile>
886+
<profile>
887+
<id>macosx-arm64</id>
888+
<activation>
889+
<os>
890+
<name>mac os x</name>
891+
<arch>aarch64</arch>
892+
</os>
893+
</activation>
894+
<properties>
895+
<native.wheel.url>${native.wheel.url.macosx-arm64}</native.wheel.url>
896+
</properties>
897+
</profile>
885898
<profile>
886899
<id>windowsos</id>
887900
<activation>

‎tensorflow-core/tensorflow-core-api/build.sh

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
# Script to build native TensorFlow libraries
33
set -eu
44

5+
6+
7+
58
# Allows us to use ccache with Bazel on Mac
69
export BAZEL_USE_CPP_ONLY_TOOLCHAIN=1
710

0 commit comments

Comments
 (0)
Please sign in to comment.