Remove not needed isL3Configurable helper function

Related-To: NEO-6853
Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>

Remove isL3Configurable function from
- HwHelper
- PreambleHelper
This commit is contained in:
Kamil Kopryk
2022-11-08 11:49:29 +00:00
committed by Compute-Runtime-Automation
parent a12251d464
commit c027d2c494
12 changed files with 2 additions and 78 deletions

View File

@ -742,19 +742,6 @@ HWTEST_F(HwHelperTest, DISABLED_profilingCreationOfRenderSurfaceStateVsMemcpyOfC
}
}
HWTEST_F(HwHelperTest, WhenTestingIfL3ConfigProgrammableThenCorrectValueIsReturned) {
bool preambleHelperL3Config;
bool isL3Programmable;
const HardwareInfo &hwInfo = *defaultHwInfo;
preambleHelperL3Config =
PreambleHelper<FamilyType>::isL3Configurable(*defaultHwInfo);
isL3Programmable =
HwHelperHw<FamilyType>::get().isL3Configurable(hwInfo);
EXPECT_EQ(preambleHelperL3Config, isL3Programmable);
}
TEST(HwHelperCacheFlushTest, givenEnableCacheFlushFlagIsEnableWhenPlatformDoesNotSupportThenOverrideAndReturnSupportTrue) {
DebugManagerStateRestore restore;
DebugManager.flags.EnableCacheFlushAfterWalker.set(1);