mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
Allow for different required version for VC compiled kernels. Define constant for detection disabled. Related-To: NEO-12491 Signed-off-by: Dominik Dabek <dominik.dabek@intel.com>
17 lines
359 B
C++
17 lines
359 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 disabled = std::numeric_limits<uint32_t>::max();
|
|
} // namespace IndirectDetectionVersions
|
|
} // namespace NEO
|