mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 00:24:58 +08:00
Observed about 50MB reduction in overall binaries size (directory build)) when building all targets with MSVC (Visual Studio 2022 17.3.0 preview 6) using Debug 64 configuration. Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
19 lines
374 B
C++
19 lines
374 B
C++
/*
|
|
* Copyright (C) 2020-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
|
|
namespace AdditionalKernelExecInfo {
|
|
inline constexpr uint32_t DisableOverdispatch = 0u;
|
|
inline constexpr uint32_t NotSet = 1u;
|
|
inline constexpr uint32_t NotApplicable = 2u;
|
|
} // namespace AdditionalKernelExecInfo
|
|
|
|
} // namespace NEO
|