Skip to content

Commit 1128e10

Browse files
committed
update Android workflow and OpenVINO builder: refine architecture mappings and remove redundant debug output
1 parent 7e2d9bc commit 1128e10

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/e2e-android-test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,6 @@ jobs:
187187
python -m ovmobilebench.cli build \
188188
-c ${{ matrix.config_file }} \
189189
--verbose
190-
ls -l ovmb_cache/openvino_build/bin
191190
192191
- name: Show ccache statistics
193192
run: |

ovmobilebench/builders/openvino.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,15 +213,15 @@ def _get_cmake_arch(self) -> str:
213213
# Map Android ABI to CMake output directory name
214214
if self.config.toolchain and self.config.toolchain.abi:
215215
abi = self.config.toolchain.abi
216-
# OpenVINO CMake uses 'aarch64' for ARM64 builds
216+
# OpenVINO CMake uses specific directory names for each architecture
217217
if abi == "arm64-v8a":
218218
return "aarch64"
219219
elif abi == "armeabi-v7a":
220220
return "armv7"
221221
elif abi == "x86":
222222
return "i386"
223223
elif abi == "x86_64":
224-
return "x86_64"
224+
return "intel64" # OpenVINO uses 'intel64' for x86_64 builds
225225
else:
226226
return abi
227227
return "aarch64" # Default to aarch64

0 commit comments

Comments
 (0)