diff --git a/opencl/source/dll/command_queue_dll.cpp b/opencl/source/dll/command_queue_dll.cpp index 642eb08e90..08f8d40999 100644 --- a/opencl/source/dll/command_queue_dll.cpp +++ b/opencl/source/dll/command_queue_dll.cpp @@ -10,7 +10,7 @@ namespace NEO { bool CommandQueue::isAssignEngineRoundRobinEnabled() { - auto assignEngineRoundRobin = true; + auto assignEngineRoundRobin = false; if (DebugManager.flags.EnableCmdQRoundRobindEngineAssign.get() != -1) { assignEngineRoundRobin = DebugManager.flags.EnableCmdQRoundRobindEngineAssign.get(); diff --git a/opencl/test/unit_test/linux/main_linux_dll.cpp b/opencl/test/unit_test/linux/main_linux_dll.cpp index 224d2d0d48..3cb56a5386 100644 --- a/opencl/test/unit_test/linux/main_linux_dll.cpp +++ b/opencl/test/unit_test/linux/main_linux_dll.cpp @@ -868,8 +868,8 @@ TEST(DirectSubmissionControllerTest, whenCheckDirectSubmissionControllerSupportT EXPECT_TRUE(DirectSubmissionController::isSupported()); } -TEST(CommandQueueTest, whenCheckEngineRoundRobinAssignThenReturnsTrue) { - EXPECT_TRUE(CommandQueue::isAssignEngineRoundRobinEnabled()); +TEST(CommandQueueTest, whenCheckEngineRoundRobinAssignThenReturnsFalse) { + EXPECT_FALSE(CommandQueue::isAssignEngineRoundRobinEnabled()); } TEST(CommandQueueTest, whenCheckEngineTimestampWaitEnabledThenReturnsTrue) {