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