Skip to content

Commit f3bcbfb

Browse files
Revert "Enable engines round robin assign"
This reverts commit b81380a. Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
1 parent dc4a1e7 commit f3bcbfb

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
@@ -868,8 +868,8 @@ TEST(DirectSubmissionControllerTest, whenCheckDirectSubmissionControllerSupportT
868868
EXPECT_TRUE(DirectSubmissionController::isSupported());
869869
}
870870

871-
TEST(CommandQueueTest, whenCheckEngineRoundRobinAssignThenReturnsTrue) {
872-
EXPECT_TRUE(CommandQueue::isAssignEngineRoundRobinEnabled());
871+
TEST(CommandQueueTest, whenCheckEngineRoundRobinAssignThenReturnsFalse) {
872+
EXPECT_FALSE(CommandQueue::isAssignEngineRoundRobinEnabled());
873873
}
874874

875875
TEST(CommandQueueTest, whenCheckEngineTimestampWaitEnabledThenReturnsTrue) {

0 commit comments

Comments
 (0)