diff --git a/.github/workflows/linux_conditional_compilation.yml b/.github/workflows/linux_conditional_compilation.yml index 8f0cb8982ec446..3d4b2bd6aa1670 100644 --- a/.github/workflows/linux_conditional_compilation.yml +++ b/.github/workflows/linux_conditional_compilation.yml @@ -206,14 +206,11 @@ jobs: install_dependencies/install_openvino_dependencies.sh popd - cp -v ${OPENVINO_REPO}/temp/tbb/lib/lib* ${INSTALL_TEST_DIR}/tests pushd ${INSTALL_TEST_DIR} tar -czvf ${BUILD_DIR}/openvino_tests.tar.gz \ tests/ov_cpu_func_tests \ tests/libopenvino_template_extension.so \ tests/libze_loader.so* \ - tests/libhwloc* \ - tests/libtbb* \ tests/functional_test_utils/layer_tests_summary/* popd diff --git a/.github/workflows/windows_conditional_compilation.yml b/.github/workflows/windows_conditional_compilation.yml index b94da30fdf95a3..6dcee8476e0c69 100644 --- a/.github/workflows/windows_conditional_compilation.yml +++ b/.github/workflows/windows_conditional_compilation.yml @@ -202,13 +202,13 @@ jobs: - name: Ctest - OpenVINO unit tests shell: cmd run: | - set path=%path%;${{ env.OPENVINO_REPO }}\temp\tbb\bin;${{ env.BUILD_DIR }}\bin\Release + set path=%path%;${{ env.BUILD_DIR }}\bin\Release ctest -C ${{ env.CMAKE_BUILD_TYPE }} --test-dir ${{ env.BUILD_DIR }} -V -L UNIT - name: Perform code tracing via ITT collector shell: cmd run: | - set path=%path%;${{ env.OPENVINO_REPO }}\temp\tbb\bin;${{ env.BUILD_DIR }}\bin\Release + set path=%path%;${{ env.BUILD_DIR }}\bin\Release python3 ${{ env.OPENVINO_REPO }}\thirdparty\itt_collector\runtool\sea_runtool.py ^ --bindir ${{ env.OPENVINO_REPO }}\bin\intel64\${{ env.CMAKE_BUILD_TYPE }} ^ @@ -237,7 +237,7 @@ jobs: Compress-Archive @compress $compress = @{ - Path = "${{ env.OPENVINO_REPO }}/bin/intel64/${{ env.CMAKE_BUILD_TYPE }}/ov_cpu_func_tests.exe", "${{ env.BUILD_DIR }}/bin/Release/ze_loader.dll", "${{ env.OPENVINO_REPO }}/bin/intel64/${{ env.CMAKE_BUILD_TYPE }}/openvino_template_extension.dll", "${{ env.OPENVINO_REPO }}/src/tests/test_utils/functional_test_utils/layer_tests_summary", "${{ env.INSTALL_DIR }}/runtime/3rdparty/tbb" + Path = "${{ env.OPENVINO_REPO }}/bin/intel64/${{ env.CMAKE_BUILD_TYPE }}/ov_cpu_func_tests.exe", "${{ env.BUILD_DIR }}/bin/Release/ze_loader.dll", "${{ env.OPENVINO_REPO }}/bin/intel64/${{ env.CMAKE_BUILD_TYPE }}/openvino_template_extension.dll", "${{ env.OPENVINO_REPO }}/src/tests/test_utils/functional_test_utils/layer_tests_summary" CompressionLevel = "Optimal" DestinationPath = "${{ env.BUILD_DIR }}/openvino_tests.zip" } @@ -337,7 +337,7 @@ jobs: - name: Run with CC-ed runtime shell: cmd run: | - set path=%path%;${{ env.OPENVINO_REPO }}\temp\tbb\bin;${{ env.BUILD_DIR }}\bin\Release + set path=%path%;${{ env.BUILD_DIR }}\bin\Release ${{ env.OPENVINO_REPO }}\bin\intel64\${{ env.CMAKE_BUILD_TYPE }}\benchmark_app.exe -niter 1 -nireq 1 -m ${{ env.MODELS_PATH }}\models\test_model\test_model_fp32.xml -d CPU CPU_Functional_Tests: @@ -394,7 +394,7 @@ jobs: - name: Intel CPU plugin func tests (parallel) shell: cmd run: | - set path=%path%;${{ env.INSTALL_TEST_DIR }}\tbb\bin;${{ env.INSTALL_TEST_DIR }}\tbb;${{ env.INSTALL_TEST_DIR }} + set path=%path%;${{ env.INSTALL_TEST_DIR }} python3 ${{ env.PARALLEL_TEST_SCRIPT }} -e ${{ env.INSTALL_TEST_DIR }}\ov_cpu_func_tests.exe -w ${{ env.INSTALL_TEST_DIR }} -s suite -rf 0 -- --gtest_print_time=1 --gtest_filter=*smoke* timeout-minutes: 60 diff --git a/cmake/features.cmake b/cmake/features.cmake index 8709c48cc1c567..e5c36e1730731a 100644 --- a/cmake/features.cmake +++ b/cmake/features.cmake @@ -43,7 +43,7 @@ endif() ov_dependent_option (ENABLE_ONEDNN_FOR_GPU "Enable oneDNN with GPU support" ${ENABLE_ONEDNN_FOR_GPU_DEFAULT} "ENABLE_INTEL_GPU" OFF) -if(X86_64) +if(X86_64 AND (LINUX OR WIN32)) set(ENABLE_INTEL_NPU_DEFAULT ON) else() set(ENABLE_INTEL_NPU_DEFAULT OFF) @@ -91,7 +91,7 @@ if(ANDROID) elseif(RISCV64) set(THREADING_DEFAULT "OMP") else() - set(THREADING_DEFAULT "TBB") + set(THREADING_DEFAULT "OMP") endif() set(THREADING_OPTIONS "TBB" "TBB_AUTO" "SEQ" "OMP") diff --git a/src/bindings/c/tests/ov_infer_request_test.cpp b/src/bindings/c/tests/ov_infer_request_test.cpp index d0981ad50bede4..2e2a07b50a132c 100644 --- a/src/bindings/c/tests/ov_infer_request_test.cpp +++ b/src/bindings/c/tests/ov_infer_request_test.cpp @@ -333,7 +333,7 @@ TEST_P(ov_infer_request_test, infer_async) { } } -TEST_P(ov_infer_request_test, infer_async_wait_for) { +TEST_P(ov_infer_request_test, DISABLED_infer_async_wait_for) { OV_EXPECT_OK(ov_infer_request_set_input_tensor_by_index(infer_request, 0, input_tensor)); OV_ASSERT_OK(ov_infer_request_start_async(infer_request)); diff --git a/src/plugins/intel_cpu/thirdparty/ACLConfig.cmake b/src/plugins/intel_cpu/thirdparty/ACLConfig.cmake index 72ea407f3273be..f26b0a97dfe1d2 100644 --- a/src/plugins/intel_cpu/thirdparty/ACLConfig.cmake +++ b/src/plugins/intel_cpu/thirdparty/ACLConfig.cmake @@ -131,8 +131,6 @@ elseif(NOT TARGET arm_compute::arm_compute) set(ARM_COMPUTE_OPTIONS neon=1 opencl=0 - openmp=0 - cppthreads=1 examples=0 Werror=0 gemm_tuner=0 @@ -146,6 +144,12 @@ elseif(NOT TARGET arm_compute::arm_compute) arch=${OV_CPU_ARM_TARGET_ARCH} ) + if(THREADING STREQUAL "OMP") + list(APPEND ARM_COMPUTE_OPTIONS openmp=1 cppthreads=0) + else() + list(APPEND ARM_COMPUTE_OPTIONS openmp=0 cppthreads=1) + endif() + if(ARM) list(APPEND ARM_COMPUTE_OPTIONS estate=32) else() diff --git a/src/plugins/intel_cpu/thirdparty/CMakeLists.txt b/src/plugins/intel_cpu/thirdparty/CMakeLists.txt index ef6b56ea77ff11..8771f66d1eedbb 100644 --- a/src/plugins/intel_cpu/thirdparty/CMakeLists.txt +++ b/src/plugins/intel_cpu/thirdparty/CMakeLists.txt @@ -9,6 +9,8 @@ if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC" AND MSVC_TOOLSET_VERSION GREATER_EQUAL # This flag is needed for enabling SIMD vectorization with command '#pragma omp simd'. # Compilation with '/openmp:experimental' key allow us to enable vectorizatikon capability in MSVC. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /openmp:experimental") + # see https://github.com/openvinotoolkit/openvino/pull/4496 + set(OpenMP_cmake_included ON) endif() if(ENABLE_LTO) @@ -64,7 +66,7 @@ function(ov_add_onednn) endif() set(SDL_cmake_included ON) ## to skip internal SDL flags. SDL flags are already set on OV level - if (ANDROID OR ((CMAKE_CXX_COMPILER_ID STREQUAL "MSVC" OR OV_COMPILER_IS_CLANG) AND NOT (THREADING STREQUAL "OMP"))) + if (ANDROID) set(OpenMP_cmake_included ON) ## to skip "omp simd" inside a code. Lead to some crashes inside NDK LLVM.. endif()