refactor: rename l0_gfx_core_helper files

Related-To: NEO-6853
Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
This commit is contained in:
Kamil Kopryk
2023-01-23 14:36:48 +00:00
committed by Compute-Runtime-Automation
parent 2ed168dc15
commit eb002acaa1
79 changed files with 131 additions and 131 deletions

View File

@@ -1,5 +1,5 @@
#
# Copyright (C) 2020-2022 Intel Corporation
# Copyright (C) 2020-2023 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
@@ -10,7 +10,7 @@ if(SUPPORT_GEN11)
${CMAKE_CURRENT_SOURCE_DIR}/cmdlist_gen11.cpp
${CMAKE_CURRENT_SOURCE_DIR}/cmdlist_gen11.h
${CMAKE_CURRENT_SOURCE_DIR}/enable_family_full_l0_gen11.cpp
${CMAKE_CURRENT_SOURCE_DIR}/l0_hw_helper_gen11.cpp
${CMAKE_CURRENT_SOURCE_DIR}/l0_gfx_core_helper_gen11.cpp
)
add_subdirectories()

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2020-2022 Intel Corporation
* Copyright (C) 2020-2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -8,7 +8,7 @@
#include "shared/source/gen11/hw_cmds.h"
#include "level_zero/core/source/helpers/l0_populate_factory.h"
#include "level_zero/core/source/hw_helpers/l0_hw_helper.h"
#include "level_zero/core/source/hw_helpers/l0_gfx_core_helper.h"
namespace NEO {

View File

@@ -8,16 +8,16 @@
#include "shared/source/gen11/hw_cmds.h"
#include "level_zero/core/source/helpers/l0_populate_factory.h"
#include "level_zero/core/source/hw_helpers/l0_hw_helper_base.inl"
#include "level_zero/core/source/hw_helpers/l0_hw_helper_skl_to_icllp.inl"
#include "level_zero/core/source/hw_helpers/l0_hw_helper_skl_to_tgllp.inl"
#include "level_zero/core/source/hw_helpers/l0_gfx_core_helper_base.inl"
#include "level_zero/core/source/hw_helpers/l0_gfx_core_helper_skl_to_icllp.inl"
#include "level_zero/core/source/hw_helpers/l0_gfx_core_helper_skl_to_tgllp.inl"
namespace L0 {
using Family = NEO::Gen11Family;
static auto gfxCore = IGFX_GEN11_CORE;
#include "level_zero/core/source/helpers/l0_hw_helper_factory_init.inl"
#include "level_zero/core/source/helpers/l0_gfx_core_helper_factory_init.inl"
template class L0GfxCoreHelperHw<Family>;