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:
parent
52a60abf23
commit
05ca36e231
|
@ -20,7 +20,7 @@ bool CommandQueue::isAssignEngineRoundRobinEnabled() {
|
|||
}
|
||||
|
||||
bool CommandQueue::isTimestampWaitEnabled() {
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
} // namespace NEO
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue