From 05a36e7be80bfa41ecc41de9c3034633dd90a51c Mon Sep 17 00:00:00 2001 From: Nikolai Shchegolev Date: Thu, 7 Nov 2024 12:01:59 +0400 Subject: [PATCH] ENABLE_INTEL_OPENMP ON --- cmake/features.cmake | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cmake/features.cmake b/cmake/features.cmake index e5c36e1730731a..f19d5c5eedb125 100644 --- a/cmake/features.cmake +++ b/cmake/features.cmake @@ -106,13 +106,11 @@ endif() if(X86_64 AND (WIN32 OR LINUX)) # we have a precompiled version of Intel OMP only for this platforms set(ENABLE_INTEL_OPENMP_DEFAULT ON) - # temporart override to OFF for testing purposes - set(ENABLE_INTEL_OPENMP_DEFAULT OFF) else() set(ENABLE_INTEL_OPENMP_DEFAULT OFF) endif() -ov_dependent_option (ENABLE_INTEL_OPENMP "Enables usage of Intel OpenMP instead of default compiler one" ${ENABLE_INTEL_OPENMP_DEFAULT} "THREADING STREQUAL SEQ" OFF) +ov_dependent_option (ENABLE_INTEL_OPENMP "Enables usage of Intel OpenMP instead of default compiler one" ${ENABLE_INTEL_OPENMP_DEFAULT} "THREADING STREQUAL OMP" OFF) if((THREADING STREQUAL "TBB" OR THREADING STREQUAL "TBB_AUTO") AND (BUILD_SHARED_LIBS OR (LINUX AND X86_64)))