Skip to content

Commit ec05e48

Browse files
updated workflow files
1 parent 548a1ea commit ec05e48

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/jammy-build-x86_64-avx2.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@ jobs:
4646
echo "latest_tag=$latest_tag" >> $GITHUB_OUTPUT
4747
git checkout "$latest_tag"
4848
49+
- name: Patch XNNPACK BUILD.bazel to remove unsupported AVXVNNIINT8 files
50+
run: |
51+
find . -type f -name BUILD.bazel -path "*XNNPACK*" \
52+
-exec sed -i '/avxvnniint8_prod_microkernels\.c/d' {} \;
53+
4954
- name: Build TensorFlow Lite (AVX2 target)
5055
working-directory: ./tensorflow
5156
run: >

.github/workflows/jammy-build-x86_64-generic.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@ jobs:
4646
echo "latest_tag=$latest_tag" >> $GITHUB_OUTPUT
4747
git checkout "$latest_tag"
4848
49+
- name: Patch XNNPACK BUILD.bazel to remove unsupported AVXVNNIINT8 files
50+
run: |
51+
find . -type f -name BUILD.bazel -path "*XNNPACK*" \
52+
-exec sed -i '/avxvnniint8_prod_microkernels\.c/d' {} \;
53+
4954
- name: Build the TensorFlow Lite library using Bazel
5055
working-directory: ./tensorflow
5156
run: >

0 commit comments

Comments
 (0)