Revert "feature: enable standalone profiling allocation for CB events"

This reverts commit f3b266f7b8.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:
Compute-Runtime-Validation
2024-09-28 06:11:49 +02:00
committed by Compute-Runtime-Automation
parent f402ce0f60
commit a58e42ef8c
2 changed files with 2 additions and 14 deletions

View File

@@ -6622,23 +6622,11 @@ HWTEST2_F(InOrderRegularCmdListTests, givenAddedCmdForPatchWhenUpdateNewInOrderI
struct StandaloneInOrderTimestampAllocationTests : public InOrderCmdListTests {
void SetUp() override {
NEO::debugManager.flags.StandaloneInOrderTimestampAllocationEnabled.set(1);
InOrderCmdListTests::SetUp();
}
};
HWTEST2_F(StandaloneInOrderTimestampAllocationTests, givenDebugFlagSetWhenCreatingEventThenDontCreateTimestampNode, MatchAny) {
NEO::debugManager.flags.StandaloneInOrderTimestampAllocationEnabled.set(0);
auto eventPool = createEvents<FamilyType>(1, true);
auto cmdList = createImmCmdList<gfxCoreFamily>();
cmdList->appendLaunchKernel(kernel->toHandle(), groupCount, events[0]->toHandle(), 0, nullptr, launchParams, false);
EXPECT_EQ(nullptr, events[0]->inOrderTimestampNode);
EXPECT_NE(nullptr, events[0]->eventPoolAllocation);
}
HWTEST2_F(StandaloneInOrderTimestampAllocationTests, givenTimestampEventWhenAskingForAllocationOrGpuAddressThenReturnNodeAllocation, MatchAny) {
auto eventPool = createEvents<FamilyType>(2, true);