Revert "Enable timestamp wait mechanism"

This reverts commit c30f65fe40.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:
Compute-Runtime-Validation 2021-12-19 03:32:39 +01:00 committed by Compute-Runtime-Automation
parent 52a60abf23
commit 05ca36e231
2 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ bool CommandQueue::isAssignEngineRoundRobinEnabled() {
}
bool CommandQueue::isTimestampWaitEnabled() {
return true;
return false;
}
} // namespace NEO

View File

@ -807,8 +807,8 @@ TEST(CommandQueueTest, whenCheckEngineRoundRobinAssignThenReturnsFalse) {
EXPECT_FALSE(CommandQueue::isAssignEngineRoundRobinEnabled());
}
TEST(CommandQueueTest, whenCheckEngineTimestampWaitEnabledThenReturnsTrue) {
EXPECT_TRUE(CommandQueue::isTimestampWaitEnabled());
TEST(CommandQueueTest, whenCheckEngineTimestampWaitEnabledThenReturnsFalse) {
EXPECT_FALSE(CommandQueue::isTimestampWaitEnabled());
}
TEST(CommandQueueTest, givenEnableCmdQRoundRobindEngineAssignSetWhenCheckEngineRoundRobinAssignThenReturnsTrue) {