Skip to content

Commit d52b7e5

Browse files
Enable engines round robin assign
Signed-off-by: Lukasz Jobczyk <[email protected]>
1 parent 7ab6d28 commit d52b7e5

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 = false;
13+
auto assignEngineRoundRobin = true;
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, whenCheckEngineRoundRobinAssignThenReturnsFalse) {
833-
EXPECT_FALSE(CommandQueue::isAssignEngineRoundRobinEnabled());
832+
TEST(CommandQueueTest, whenCheckEngineRoundRobinAssignThenReturnsTrue) {
833+
EXPECT_TRUE(CommandQueue::isAssignEngineRoundRobinEnabled());
834834
}
835835

836836
TEST(CommandQueueTest, whenCheckEngineTimestampWaitEnabledThenReturnsTrue) {

0 commit comments

Comments
 (0)