mirror of
https://github.com/intel/compute-runtime.git
synced 2025-11-10 05:49:51 +08:00
Enable packed format for ICL
Related-To: NEO-6227 Signed-off-by: Andrzej Koska <andrzej.koska@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
d47751d3a7
commit
10a6934119
@@ -70,3 +70,8 @@ GEN11TEST_F(MemorySynchronizatiopCommandsTestsGen11, WhenProgrammingCacheFlushTh
|
|||||||
ASSERT_NE(nullptr, pipeControl);
|
ASSERT_NE(nullptr, pipeControl);
|
||||||
EXPECT_TRUE(pipeControl->getConstantCacheInvalidationEnable());
|
EXPECT_TRUE(pipeControl->getConstantCacheInvalidationEnable());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GEN11TEST_F(MemorySynchronizatiopCommandsTestsGen11, givenGen11WhenCallIsPackedSupportedThenReturnTrue) {
|
||||||
|
auto &helper = HwHelper::get(renderCoreFamily);
|
||||||
|
EXPECT_TRUE(helper.packedFormatsSupported());
|
||||||
|
}
|
||||||
@@ -29,6 +29,11 @@ uint32_t HwHelperHw<Family>::getDefaultThreadArbitrationPolicy() const {
|
|||||||
return ThreadArbitrationPolicy::RoundRobinAfterDependency;
|
return ThreadArbitrationPolicy::RoundRobinAfterDependency;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <>
|
||||||
|
bool HwHelperHw<Family>::packedFormatsSupported() const {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
template class HwHelperHw<Family>;
|
template class HwHelperHw<Family>;
|
||||||
template class FlatBatchBufferHelperHw<Family>;
|
template class FlatBatchBufferHelperHw<Family>;
|
||||||
template struct MemorySynchronizationCommands<Family>;
|
template struct MemorySynchronizationCommands<Family>;
|
||||||
|
|||||||
Reference in New Issue
Block a user