Skip to content

Commit c30f65f

Browse files
Enable timestamp wait mechanism
Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
1 parent 0a139ca commit c30f65f

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
@@ -807,8 +807,8 @@ TEST(CommandQueueTest, whenCheckEngineRoundRobinAssignThenReturnsFalse) {
807807
EXPECT_FALSE(CommandQueue::isAssignEngineRoundRobinEnabled());
808808
}
809809

810-
TEST(CommandQueueTest, whenCheckEngineTimestampWaitEnabledThenReturnsFalse) {
811-
EXPECT_FALSE(CommandQueue::isTimestampWaitEnabled());
810+
TEST(CommandQueueTest, whenCheckEngineTimestampWaitEnabledThenReturnsTrue) {
811+
EXPECT_TRUE(CommandQueue::isTimestampWaitEnabled());
812812
}
813813

814814
TEST(CommandQueueTest, givenEnableCmdQRoundRobindEngineAssignSetWhenCheckEngineRoundRobinAssignThenReturnsTrue) {

0 commit comments

Comments
 (0)