mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-11 00:10:58 +08:00
Disable waiting on timestamps.
Not yet ready for full enabling. Signed-off-by: Michal Mrozek <michal.mrozek@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
e7f2676d5e
commit
eedc77e1ec
@@ -20,7 +20,7 @@ bool CommandQueue::isAssignEngineRoundRobinEnabled() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool CommandQueue::isTimestampWaitEnabled() {
|
bool CommandQueue::isTimestampWaitEnabled() {
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace NEO
|
} // namespace NEO
|
||||||
|
|||||||
@@ -833,8 +833,8 @@ TEST(CommandQueueTest, whenCheckEngineRoundRobinAssignThenReturnsFalse) {
|
|||||||
EXPECT_FALSE(CommandQueue::isAssignEngineRoundRobinEnabled());
|
EXPECT_FALSE(CommandQueue::isAssignEngineRoundRobinEnabled());
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(CommandQueueTest, whenCheckEngineTimestampWaitEnabledThenReturnsTrue) {
|
TEST(CommandQueueTest, whenCheckEngineTimestampWaitEnabledThenReturnsFalse) {
|
||||||
EXPECT_TRUE(CommandQueue::isTimestampWaitEnabled());
|
EXPECT_FALSE(CommandQueue::isTimestampWaitEnabled());
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(CommandQueueTest, givenEnableCmdQRoundRobindEngineAssignSetWhenCheckEngineRoundRobinAssignThenReturnsTrue) {
|
TEST(CommandQueueTest, givenEnableCmdQRoundRobindEngineAssignSetWhenCheckEngineRoundRobinAssignThenReturnsTrue) {
|
||||||
|
|||||||
Reference in New Issue
Block a user