refactor: remove not used code

Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
This commit is contained in:
Artur Harasimiuk
2023-06-28 09:43:39 +02:00
committed by Compute-Runtime-Automation
parent 0d7aefe66b
commit cf73ab0df3
36 changed files with 1 additions and 2516 deletions

View File

@@ -1,16 +0,0 @@
#
# Copyright (C) 2021-2023 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
if(SUPPORT_XE_HP_SDV)
target_sources(${L0_STATIC_LIB_NAME} PRIVATE
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
${CMAKE_CURRENT_SOURCE_DIR}/cmdlist_xehp.cpp
${CMAKE_CURRENT_SOURCE_DIR}/cmdqueue_xehp.cpp
${CMAKE_CURRENT_SOURCE_DIR}/kernel_xehp.cpp
${CMAKE_CURRENT_SOURCE_DIR}/image_xehp.cpp
${CMAKE_CURRENT_SOURCE_DIR}/sampler_xehp.cpp
)
endif()

View File

@@ -1,19 +0,0 @@
/*
* Copyright (C) 2021-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/xe_hp_core/hw_cmds_base.h"
#include "level_zero/core/source/xe_hp_core/cmdlist_xe_hp_core.h"
namespace L0 {
static CommandListPopulateFactory<IGFX_XE_HP_SDV, CommandListProductFamily<IGFX_XE_HP_SDV>>
populateXEHP;
static CommandListImmediatePopulateFactory<IGFX_XE_HP_SDV, CommandListImmediateProductFamily<IGFX_XE_HP_SDV>>
populateXEHPImmediate;
} // namespace L0

View File

@@ -1,19 +0,0 @@
/*
* Copyright (C) 2021-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/xe_hp_core/hw_cmds.h"
#include "level_zero/core/source/cmdqueue/cmdqueue_hw.inl"
#include "level_zero/core/source/cmdqueue/cmdqueue_xe_hp_core_and_later.inl"
#include "cmdqueue_extended.inl"
namespace L0 {
template struct CommandQueueHw<IGFX_XE_HP_CORE>;
static CommandQueuePopulateFactory<IGFX_XE_HP_SDV, CommandQueueHw<IGFX_XE_HP_CORE>>
populateXEHP;
} // namespace L0

View File

@@ -1,23 +0,0 @@
/*
* Copyright (C) 2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "level_zero/core/source/xe_hp_core/image_xe_hp_core.inl"
namespace L0 {
template <>
struct ImageProductFamily<IGFX_XE_HP_SDV> : public ImageCoreFamily<IGFX_XE_HP_CORE> {
using ImageCoreFamily::ImageCoreFamily;
ze_result_t initialize(Device *device, const ze_image_desc_t *desc) override {
return ImageCoreFamily<IGFX_XE_HP_CORE>::initialize(device, desc);
};
};
static ImagePopulateFactory<IGFX_XE_HP_SDV, ImageProductFamily<IGFX_XE_HP_SDV>> populateXEHP;
} // namespace L0

View File

@@ -1,16 +0,0 @@
/*
* Copyright (C) 2021-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/xe_hp_core/hw_cmds_base.h"
#include "level_zero/core/source/kernel/kernel_hw.h"
namespace L0 {
static KernelPopulateFactory<IGFX_XE_HP_SDV, KernelHw<IGFX_XE_HP_CORE>> populateXEHP;
} // namespace L0

View File

@@ -1,19 +0,0 @@
/*
* Copyright (C) 2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "level_zero/core/source/xe_hp_core/sampler_xe_hp_core.inl"
namespace L0 {
template <>
struct SamplerProductFamily<IGFX_XE_HP_SDV> : public SamplerCoreFamily<IGFX_XE_HP_CORE> {
using SamplerCoreFamily::SamplerCoreFamily;
};
static SamplerPopulateFactory<IGFX_XE_HP_SDV, SamplerProductFamily<IGFX_XE_HP_SDV>> populateXEHP;
} // namespace L0