diff --git a/shared/source/helpers/definitions/indirect_detection_versions.h b/shared/source/helpers/definitions/indirect_detection_versions.h index d86e889a47..732c68c2e3 100644 --- a/shared/source/helpers/definitions/indirect_detection_versions.h +++ b/shared/source/helpers/definitions/indirect_detection_versions.h @@ -12,7 +12,8 @@ namespace NEO { namespace IndirectDetectionVersions { constexpr uint32_t disabled = std::numeric_limits::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 diff --git a/shared/source/xe_hpc_core/pvc/os_agnostic_product_helper_pvc.inl b/shared/source/xe_hpc_core/pvc/os_agnostic_product_helper_pvc.inl index cdea81192a..8e447c1ffd 100644 --- a/shared/source/xe_hpc_core/pvc/os_agnostic_product_helper_pvc.inl +++ b/shared/source/xe_hpc_core/pvc/os_agnostic_product_helper_pvc.inl @@ -205,7 +205,7 @@ uint32_t ProductHelperHw::getRequiredDetectIndirectVersion() const { template <> uint32_t ProductHelperHw::getRequiredDetectIndirectVersionVC() const { - return IndirectDetectionVersions::requiredDetectIndirectVersionPVC; + return IndirectDetectionVersions::requiredDetectIndirectVersionPVCVectorCompiler; } template <>