File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 : |
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments