Files
compute-runtime/shared/source/helpers/definitions/indirect_detection_versions.h
Dominik Dabek 8d4721d613 performance: update igc indirect detection version
Update required indirect detection versions to 9 for pvc vector compiler
and non-pvc non-vector compiler.

Related-To: NEO-12491

Signed-off-by: Dominik Dabek <dominik.dabek@intel.com>
2025-01-07 13:25:12 +01:00

20 lines
560 B
C++

/*
* Copyright (C) 2024-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <cstdint>
namespace NEO {
namespace IndirectDetectionVersions {
constexpr uint32_t disabled = std::numeric_limits<uint32_t>::max();
constexpr uint32_t requiredDetectIndirectVersionPVC = 3u;
constexpr uint32_t requiredDetectIndirectVersionPVCVectorCompiler = 9u;
constexpr uint32_t requiredDetectIndirectVersion = 9u;
constexpr uint32_t requiredDetectIndirectVersionVectorCompiler = 6u;
} // namespace IndirectDetectionVersions
} // namespace NEO