Skip to content

Commit fbec7be

Browse files
Try to run arm64 without system tbb (#21524)
* Try to run arm64 without system tbb * Moved files * Moved cmake files for auto batch
1 parent 89e4cb4 commit fbec7be

File tree

3 files changed

+15
-10
lines changed

3 files changed

+15
-10
lines changed

.github/workflows/linux_arm64.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Linux ARM64 (Ubuntu 20.04, Python 3.11)
22
on:
33
workflow_dispatch:
4-
# pull_request:
4+
pull_request:
55
push:
66
branches:
77
- master
@@ -117,7 +117,6 @@ jobs:
117117
version: ${{ env.PYTHON_VERSION }}
118118
pip-cache-path: ${{ env.PIP_CACHE_PATH }}
119119
should-setup-pip-paths: 'true'
120-
self-hosted-runner: 'true'
121120
show-cache-info: 'true'
122121

123122
- name: Install python dependencies
@@ -150,7 +149,7 @@ jobs:
150149
-DENABLE_NCC_STYLE=OFF \
151150
-DENABLE_TESTS=ON \
152151
-DENABLE_STRICT_DEPENDENCIES=OFF \
153-
-DENABLE_SYSTEM_TBB=ON \
152+
-DENABLE_SYSTEM_TBB=OFF \
154153
-DENABLE_SYSTEM_OPENCL=ON \
155154
-DCMAKE_VERBOSE_MAKEFILE=ON \
156155
-DCPACK_GENERATOR=TGZ \
@@ -197,6 +196,7 @@ jobs:
197196
popd
198197
199198
- name: Build Debian packages
199+
if: ${{ 'false' }}
200200
run: |
201201
/usr/bin/python3.8 -m pip install -U pip
202202
/usr/bin/python3.8 -m pip install -r ${OPENVINO_REPO}/src/bindings/python/wheel/requirements-dev.txt
@@ -240,7 +240,7 @@ jobs:
240240
if-no-files-found: 'error'
241241

242242
- name: Upload openvino debian packages
243-
if: ${{ always() }}
243+
if: ${{ 'false' }}
244244
uses: actions/upload-artifact@v3
245245
with:
246246
name: openvino_debian_packages
@@ -258,6 +258,7 @@ jobs:
258258
Debian_Packages:
259259
name: Debian Packages
260260
needs: Build
261+
if: ${{ 'false' }}
261262
uses: ./.github/workflows/job_debian_packages.yml
262263
with:
263264
runner: 'aks-linux-16-cores-arm'
@@ -302,8 +303,7 @@ jobs:
302303

303304
CPU_Functional_Tests:
304305
name: CPU functional tests
305-
# if: fromJSON(needs.smart_ci.outputs.affected_components).CPU.test
306-
if: ${{ 'false' }} # Ticket: 126379
306+
if: fromJSON(needs.smart_ci.outputs.affected_components).CPU.test
307307
needs: [ Build, Smart_CI ]
308308
uses: ./.github/workflows/job_cpu_functional_tests.yml
309309
with:

src/plugins/auto/CMakeLists.txt

+6-3
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,16 @@ elseif(ENABLE_MULTI)
3535
VERSION_DEFINES_FOR src/plugin.cpp)
3636
endif()
3737

38-
if(ENABLE_TESTS)
39-
add_subdirectory(tests)
40-
endif()
38+
find_package(Threads REQUIRED)
39+
target_link_libraries(${TARGET_NAME} PRIVATE Threads::Threads)
4140

4241
ov_set_threading_interface_for(${TARGET_NAME})
4342

4443
# must be called after all target_link_libraries
4544
ov_add_api_validator_post_build_step(TARGET ${TARGET_NAME})
4645

4746
set_target_properties(${TARGET_NAME} PROPERTIES INTERPROCEDURAL_OPTIMIZATION_RELEASE ${ENABLE_LTO})
47+
48+
if(ENABLE_TESTS)
49+
add_subdirectory(tests)
50+
endif()

src/plugins/auto_batch/CMakeLists.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ endif()
99
set(TARGET_NAME "openvino_auto_batch_plugin")
1010

1111
file(GLOB SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/src/*.cpp)
12-
1312
file(GLOB HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/src/*.hpp)
1413

1514
ov_add_plugin(NAME ${TARGET_NAME}
@@ -18,6 +17,9 @@ ov_add_plugin(NAME ${TARGET_NAME}
1817
SOURCES ${SOURCES} ${HEADERS}
1918
VERSION_DEFINES_FOR src/plugin.cpp ADD_CLANG_FORMAT)
2019

20+
find_package(Threads REQUIRED)
21+
target_link_libraries(${TARGET_NAME} PRIVATE Threads::Threads)
22+
2123
ov_set_threading_interface_for(${TARGET_NAME})
2224

2325
# must be called after all target_link_libraries

0 commit comments

Comments
 (0)