Skip to content

Commit 60ed4c4

Browse files
Enable timestamp wait mechanism
Signed-off-by: Lukasz Jobczyk <[email protected]>
1 parent f52f3df commit 60ed4c4

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
@@ -20,7 +20,7 @@ bool CommandQueue::isAssignEngineRoundRobinEnabled() {
2020
}
2121

2222
bool CommandQueue::isTimestampWaitEnabled() {
23-
return false;
23+
return true;
2424
}
2525

2626
} // namespace NEO

opencl/test/unit_test/linux/main_linux_dll.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -873,8 +873,8 @@ TEST(CommandQueueTest, whenCheckEngineRoundRobinAssignThenReturnsFalse) {
873873
EXPECT_FALSE(CommandQueue::isAssignEngineRoundRobinEnabled());
874874
}
875875

876-
TEST(CommandQueueTest, whenCheckEngineTimestampWaitEnabledThenReturnsFalse) {
877-
EXPECT_FALSE(CommandQueue::isTimestampWaitEnabled());
876+
TEST(CommandQueueTest, whenCheckEngineTimestampWaitEnabledThenReturnsTrue) {
877+
EXPECT_TRUE(CommandQueue::isTimestampWaitEnabled());
878878
}
879879

880880
TEST(CommandQueueTest, givenEnableCmdQRoundRobindEngineAssignSetWhenCheckEngineRoundRobinAssignThenReturnsTrue) {

0 commit comments

Comments
 (0)