mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-25 13:33:02 +08:00
Organize product configuration files
Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
8f72a68440
commit
0574e65fc1
15
shared/source/gen11/enable_hw_info_config_ehl.cpp
Normal file
15
shared/source/gen11/enable_hw_info_config_ehl.cpp
Normal file
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Copyright (C) 2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#include "shared/source/gen11/hw_cmds.h"
|
||||
#include "shared/source/os_interface/hw_info_config.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
static EnableProductHwInfoConfig<IGFX_ELKHARTLAKE> enableEHL;
|
||||
|
||||
} // namespace NEO
|
||||
@@ -1,23 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#include "shared/source/gen11/hw_cmds.h"
|
||||
#include "shared/source/os_interface/hw_info_config.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
#ifdef SUPPORT_ICLLP
|
||||
static EnableProductHwInfoConfig<IGFX_ICELAKE_LP> enableICLLP;
|
||||
#endif
|
||||
#ifdef SUPPORT_LKF
|
||||
static EnableProductHwInfoConfig<IGFX_LAKEFIELD> enableLKF;
|
||||
#endif
|
||||
#ifdef SUPPORT_EHL
|
||||
static EnableProductHwInfoConfig<IGFX_ELKHARTLAKE> enableEHL;
|
||||
#endif
|
||||
|
||||
} // namespace NEO
|
||||
15
shared/source/gen11/enable_hw_info_config_icllp.cpp
Normal file
15
shared/source/gen11/enable_hw_info_config_icllp.cpp
Normal file
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Copyright (C) 2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#include "shared/source/gen11/hw_cmds.h"
|
||||
#include "shared/source/os_interface/hw_info_config.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
static EnableProductHwInfoConfig<IGFX_ICELAKE_LP> enableICLLP;
|
||||
|
||||
} // namespace NEO
|
||||
15
shared/source/gen11/enable_hw_info_config_lkf.cpp
Normal file
15
shared/source/gen11/enable_hw_info_config_lkf.cpp
Normal file
@@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Copyright (C) 2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#include "shared/source/gen11/hw_cmds.h"
|
||||
#include "shared/source/os_interface/hw_info_config.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
static EnableProductHwInfoConfig<IGFX_LAKEFIELD> enableLKF;
|
||||
|
||||
} // namespace NEO
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
* Copyright (C) 2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -7,6 +7,8 @@
|
||||
|
||||
#include "shared/source/helpers/hw_info.h"
|
||||
#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_plus.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
* Copyright (C) 2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -7,6 +7,8 @@
|
||||
|
||||
#include "shared/source/helpers/hw_info.h"
|
||||
#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_plus.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
* Copyright (C) 2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -7,6 +7,8 @@
|
||||
|
||||
#include "shared/source/helpers/hw_info.h"
|
||||
#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_plus.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
* Copyright (C) 2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -11,15 +11,6 @@
|
||||
|
||||
namespace NEO {
|
||||
|
||||
#ifdef SUPPORT_ICLLP
|
||||
template class HwInfoConfigHw<IGFX_ICELAKE_LP>;
|
||||
#endif
|
||||
|
||||
#ifdef SUPPORT_LKF
|
||||
template class HwInfoConfigHw<IGFX_LAKEFIELD>;
|
||||
#endif
|
||||
|
||||
#ifdef SUPPORT_EHL
|
||||
template class HwInfoConfigHw<IGFX_ELKHARTLAKE>;
|
||||
#endif
|
||||
|
||||
} // namespace NEO
|
||||
@@ -5,15 +5,12 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#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_plus.inl"
|
||||
|
||||
#ifdef SUPPORT_ICLLP
|
||||
#include "hw_info_config_icllp.inl"
|
||||
#endif
|
||||
#ifdef SUPPORT_LKF
|
||||
#include "hw_info_config_lkf.inl"
|
||||
#endif
|
||||
#ifdef SUPPORT_EHL
|
||||
#include "hw_info_config_ehl.inl"
|
||||
#endif
|
||||
namespace NEO {
|
||||
|
||||
template class HwInfoConfigHw<IGFX_ICELAKE_LP>;
|
||||
|
||||
} // namespace NEO
|
||||
16
shared/source/gen11/windows/hw_info_config_lkf.cpp
Normal file
16
shared/source/gen11/windows/hw_info_config_lkf.cpp
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* Copyright (C) 2021 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_plus.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
template class HwInfoConfigHw<IGFX_LAKEFIELD>;
|
||||
|
||||
} // namespace NEO
|
||||
Reference in New Issue
Block a user