enable pipeline select tracking on systolic mode platforms

Related-To: NEO-5019

Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
Zbigniew Zdanowicz
2022-10-10 13:23:37 +00:00
committed by Compute-Runtime-Automation
parent 3f5ac0b4d0
commit d3c78a5011
8 changed files with 27 additions and 8 deletions

View File

@@ -32,6 +32,11 @@ bool L0HwHelperHw<Family>::multiTileCapablePlatform() const {
return true;
}
template <>
bool L0HwHelperHw<Family>::platformSupportsPipelineSelectTracking(const NEO::HardwareInfo &hwInfo) const {
return true;
}
// clang-format off
#include "level_zero/core/source/hw_helpers/l0_hw_helper_tgllp_plus.inl"
// clang-format on

View File

@@ -42,6 +42,11 @@ bool L0HwHelperHw<Family>::platformSupportsStateComputeModeTracking(const NEO::H
return true;
}
template <>
bool L0HwHelperHw<Family>::platformSupportsPipelineSelectTracking(const NEO::HardwareInfo &hwInfo) const {
return true;
}
template class L0HwHelperHw<Family>;
} // namespace L0

View File

@@ -27,6 +27,11 @@ bool L0HwHelperHw<Family>::isResumeWARequired() {
return true;
}
template <>
bool L0HwHelperHw<Family>::platformSupportsPipelineSelectTracking(const NEO::HardwareInfo &hwInfo) const {
return true;
}
// clang-format off
#include "level_zero/core/source/hw_helpers/l0_hw_helper_tgllp_plus.inl"
// clang-format on