File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ readonly CPUINFO_REPOSITORY="https://github.com/pytorch/cpuinfo"
20
20
readonly CPUINFO_TAG=" 5e63739504f0f8e18e941bd63b2d6d42536c7d90"
21
21
22
22
readonly RUY_REPOSITORY=" https://github.com/google/ruy"
23
- readonly RUY_TAG=" 841ea4172ba904fe3536789497f9565f2ef64129 "
23
+ readonly RUY_TAG=" 97ebb72aa0655c0af98896b317476a5d0dacad9c "
24
24
25
25
readonly ABSEIL_REPOSITORY=" https://github.com/abseil/abseil-cpp"
26
26
readonly ABSEIL_TAG=" dc370a82467cb35066475537b797197aee3e5164"
Original file line number Diff line number Diff line change @@ -97,6 +97,19 @@ userdel buildbot
97
97
groupadd buildbot
98
98
useradd buildbot -g buildbot -m -d /var/lib/buildbot
99
99
100
+ if [[ " ${HOSTNAME} " == ml-opt-dev* ]]
101
+ then
102
+ echo " Building TFLite"
103
+ rm -rf /tmp/tflitebuild
104
+ mkdir -p /tmp/tflitebuild
105
+ pushd /tmp/tflitebuild
106
+ curl https://raw.githubusercontent.com/google/ml-compiler-opt/main/buildbot/build_tflite.sh | bash -s
107
+ popd
108
+ echo " Done building TFLite"
109
+ else
110
+ echo " NOT building TFLite - this is a release only bot."
111
+ fi
112
+
100
113
wget --quiet https://raw.githubusercontent.com/google/ml-compiler-opt/main/requirements.txt -P /tmp \
101
114
|| on_error " failed to get python requirements file"
102
115
You can’t perform that action at this time.
0 commit comments