mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
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>
20 lines
560 B
C++
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
|