2024-09-11 17:31:36 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2024 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
namespace IndirectDetectionVersions {
|
2024-12-03 20:29:14 +08:00
|
|
|
constexpr uint32_t disabled = std::numeric_limits<uint32_t>::max();
|
2024-12-04 21:46:25 +08:00
|
|
|
constexpr uint32_t requiredDetectIndirectVersionPVC = 3u;
|
|
|
|
constexpr uint32_t requiredDetectIndirectVersionPVCVectorCompiler = disabled;
|
2024-10-07 20:45:00 +08:00
|
|
|
constexpr uint32_t requiredDetectIndirectVersionBindless = 4u;
|
|
|
|
constexpr uint32_t requiredDetectIndirectVersionVectorCompiler = 6u;
|
2024-09-13 21:52:55 +08:00
|
|
|
} // namespace IndirectDetectionVersions
|
2024-09-11 17:31:36 +08:00
|
|
|
} // namespace NEO
|