Skip to content

Commit 68ce1ee

Browse files
Revert "Enable engines round robin assign"
This reverts commit c374073. Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
1 parent 2b177ca commit 68ce1ee

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

opencl/source/dll/command_queue_dll.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
namespace NEO {
1111

1212
bool CommandQueue::isAssignEngineRoundRobinEnabled() {
13-
auto assignEngineRoundRobin = true;
13+
auto assignEngineRoundRobin = false;
1414

1515
if (DebugManager.flags.EnableCmdQRoundRobindEngineAssign.get() != -1) {
1616
assignEngineRoundRobin = DebugManager.flags.EnableCmdQRoundRobindEngineAssign.get();

opencl/test/unit_test/linux/main_linux_dll.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -829,8 +829,8 @@ TEST(DirectSubmissionControllerTest, whenCheckDirectSubmissionControllerSupportT
829829
EXPECT_TRUE(DirectSubmissionController::isSupported());
830830
}
831831

832-
TEST(CommandQueueTest, whenCheckEngineRoundRobinAssignThenReturnsTrue) {
833-
EXPECT_TRUE(CommandQueue::isAssignEngineRoundRobinEnabled());
832+
TEST(CommandQueueTest, whenCheckEngineRoundRobinAssignThenReturnsFalse) {
833+
EXPECT_FALSE(CommandQueue::isAssignEngineRoundRobinEnabled());
834834
}
835835

836836
TEST(CommandQueueTest, whenCheckEngineTimestampWaitEnabledThenReturnsFalse) {

0 commit comments

Comments
 (0)