2020-09-02 17:38:54 +08:00
|
|
|
/*
|
2022-12-08 22:23:49 +08:00
|
|
|
* Copyright (C) 2020-2022 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 {
|
2022-12-08 22:23:49 +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
|
|
|
|
|
|
|
} // namespace NEO
|