From dbd48145840d7ff0ef6be5b2c41368ba09d0b5d2 Mon Sep 17 00:00:00 2001 From: msuih Date: Mon, 24 Dec 2018 07:31:57 +0200 Subject: [PATCH] Disable thread assignment for Intel --- Utilities/Thread.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Utilities/Thread.cpp b/Utilities/Thread.cpp index 2a9dc4a0be..01b9a305c4 100644 --- a/Utilities/Thread.cpp +++ b/Utilities/Thread.cpp @@ -1926,6 +1926,7 @@ u16 thread_ctrl::get_affinity_mask(thread_class group) } case native_core_arrangement::intel_ht: { + /* This has been disabled as it seems to degrade performance instead of improving it. if (thread_count <= 4) { //i3 or worse @@ -1940,6 +1941,7 @@ u16 thread_ctrl::get_affinity_mask(thread_class group) return all_cores_mask; } } + */ return all_cores_mask; }