mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
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
|