2020-09-02 17:38:54 +08:00
|
|
|
/*
|
2023-11-30 18:36:43 +08:00
|
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
2020-09-02 17:38:54 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
namespace NEO {
|
2021-05-31 20:04:57 +08:00
|
|
|
|
2020-09-02 17:38:54 +08:00
|
|
|
namespace AdditionalKernelExecInfo {
|
2023-11-30 18:36:43 +08:00
|
|
|
inline constexpr uint32_t disableOverdispatch = 0u;
|
|
|
|
inline constexpr uint32_t notSet = 1u;
|
|
|
|
inline constexpr uint32_t notApplicable = 2u;
|
2020-09-02 17:38:54 +08:00
|
|
|
} // namespace AdditionalKernelExecInfo
|
2021-05-31 20:04:57 +08:00
|
|
|
|
2023-11-30 18:36:43 +08:00
|
|
|
} // namespace NEO
|