performance: enable indirect detection

Platforms other than PVC require detection version >= 4
Vector compiler kernels require >= 6

Related-To: NEO-12491

Signed-off-by: Dominik Dabek <dominik.dabek@intel.com>
This commit is contained in:
Dominik Dabek
2024-10-07 12:45:00 +00:00
committed by Compute-Runtime-Automation
parent cb3b2134ab
commit 6d6c4267b3
2 changed files with 4 additions and 2 deletions

View File

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