refactor: Add product helper getSharedSystemPatIndex

Resolves: NEO-15930

Signed-off-by: John Falkowski <john.falkowski@intel.com>
This commit is contained in:
John Falkowski
2025-09-06 21:04:00 +00:00
committed by Compute-Runtime-Automation
parent 96a240b677
commit 1f281a01ee
11 changed files with 49 additions and 0 deletions

View File

@@ -38,5 +38,10 @@ bool ProductHelperHw<gfxProduct>::isTlbFlushRequired() const {
return false;
}
template <>
uint64_t ProductHelperHw<gfxProduct>::getSharedSystemPatIndex() const {
return 0;
}
template class ProductHelperHw<gfxProduct>;
} // namespace NEO

View File

@@ -44,5 +44,10 @@ bool ProductHelperHw<gfxProduct>::isTlbFlushRequired() const {
return false;
}
template <>
uint64_t ProductHelperHw<gfxProduct>::getSharedSystemPatIndex() const {
return 1;
}
template class ProductHelperHw<gfxProduct>;
} // namespace NEO