diff --git a/opencl/source/dll/command_queue_dll.cpp b/opencl/source/dll/command_queue_dll.cpp index 16c2cc37df..8bde1f598a 100644 --- a/opencl/source/dll/command_queue_dll.cpp +++ b/opencl/source/dll/command_queue_dll.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2020-2021 Intel Corporation + * Copyright (C) 2020-2022 Intel Corporation * * SPDX-License-Identifier: MIT * @@ -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 b8528f2c45..5674594acf 100644 --- a/opencl/test/unit_test/linux/main_linux_dll.cpp +++ b/opencl/test/unit_test/linux/main_linux_dll.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018-2021 Intel Corporation + * Copyright (C) 2018-2022 Intel Corporation * * SPDX-License-Identifier: MIT * @@ -829,8 +829,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) {