mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
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>
19 lines
491 B
C++
19 lines
491 B
C++
/*
|
|
* Copyright (C) 2024 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
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
|