mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 06:24:51 +08:00
Change modifies the encoding entry in fatbinary for platforms. If numbering in -device is used, the value PRODUCT_CONFIG will be encoded. The functionality that returns the correct product config values has also been added. Related-To: NEO-6744 Signed-off-by: Daria Hinz <daria.hinz@intel.com>
19 lines
481 B
C++
19 lines
481 B
C++
/*
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/os_interface/hw_info_config.h"
|
|
#include "shared/source/os_interface/hw_info_config.inl"
|
|
#include "shared/source/os_interface/hw_info_config_bdw_and_later.inl"
|
|
|
|
namespace NEO {
|
|
constexpr static auto gfxProduct = IGFX_ICELAKE_LP;
|
|
|
|
#include "shared/source/gen11/icllp/os_agnostic_hw_info_config_icllp.inl"
|
|
|
|
template class HwInfoConfigHw<gfxProduct>;
|
|
} // namespace NEO
|