fix: reenable indirect detection for non-VC, PVC

Issue is limited to detection in VC, can reenable for other kernels.

Related-To: NEO-13372

Signed-off-by: Dominik Dabek <dominik.dabek@intel.com>
This commit is contained in:
Dominik Dabek 2024-12-04 13:46:25 +00:00 committed by Compute-Runtime-Automation
parent d40a804bca
commit 819ffea90f
2 changed files with 3 additions and 2 deletions

View File

@ -12,7 +12,8 @@
namespace NEO {
namespace IndirectDetectionVersions {
constexpr uint32_t disabled = std::numeric_limits<uint32_t>::max();
constexpr uint32_t requiredDetectIndirectVersionPVC = disabled;
constexpr uint32_t requiredDetectIndirectVersionPVC = 3u;
constexpr uint32_t requiredDetectIndirectVersionPVCVectorCompiler = disabled;
constexpr uint32_t requiredDetectIndirectVersionBindless = 4u;
constexpr uint32_t requiredDetectIndirectVersionVectorCompiler = 6u;
} // namespace IndirectDetectionVersions

View File

@ -205,7 +205,7 @@ uint32_t ProductHelperHw<gfxProduct>::getRequiredDetectIndirectVersion() const {
template <>
uint32_t ProductHelperHw<gfxProduct>::getRequiredDetectIndirectVersionVC() const {
return IndirectDetectionVersions::requiredDetectIndirectVersionPVC;
return IndirectDetectionVersions::requiredDetectIndirectVersionPVCVectorCompiler;
}
template <>