mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 01:48:50 +08:00
Related-To: NEO-4875 Change-Id: I10a5e3bfc32be520c3554c992dc36591fc1ff599 Signed-off-by: Sebastian Luzynski <sebastian.jozef.luzynski@intel.com>
17 lines
302 B
C++
17 lines
302 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
namespace AdditionalKernelExecInfo {
|
|
constexpr uint32_t NotSet = 1u;
|
|
constexpr uint32_t NotApplicable = 2u;
|
|
} // namespace AdditionalKernelExecInfo
|
|
} // namespace NEO
|