diff --git a/docs/articles_en/openvino_workflow/running_inference_with_openvino/Device_Plugins/CPU.rst b/docs/articles_en/openvino_workflow/running_inference_with_openvino/Device_Plugins/CPU.rst index 0bd9b2b6beeb6a..a8e9464ccd848c 100644 --- a/docs/articles_en/openvino_workflow/running_inference_with_openvino/Device_Plugins/CPU.rst +++ b/docs/articles_en/openvino_workflow/running_inference_with_openvino/Device_Plugins/CPU.rst @@ -429,10 +429,6 @@ By default, OpenVINO Runtime will enable CPU threads pinning for better performa user can check the :doc:`optimization guide ` for details on multi-stream execution -.. note:: - - ``ov::hint::enable_cpu_pinning`` only support Linux in current release. - Denormals Optimization +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ diff --git a/src/plugins/intel_cpu/src/cpu_map_scheduling.cpp b/src/plugins/intel_cpu/src/cpu_map_scheduling.cpp index 7889dc2dd5442a..1b7046484c775d 100644 --- a/src/plugins/intel_cpu/src/cpu_map_scheduling.cpp +++ b/src/plugins/intel_cpu/src/cpu_map_scheduling.cpp @@ -88,11 +88,6 @@ bool get_cpu_pinning(bool& input_value, } } #if (OV_THREAD == OV_THREAD_TBB || OV_THREAD == OV_THREAD_TBB_AUTO) -# if defined(_WIN32) - if (proc_type_table.size() > 1) { - result_value = false; - } -# endif # if defined(__APPLE__) result_value = false; # endif