Rename plus in filenames to and_later
Related-To: NEO-5920 Signed-off-by: Szymon Morek <szymon.morek@intel.com>
This commit is contained in:
parent
d8dd93dea6
commit
aa5e1780a2
|
@ -55,7 +55,7 @@ set(L0_RUNTIME_SOURCES
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/helpers/properties_parser.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hw_helpers${BRANCH_DIR_SUFFIX}/hw_helpers.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hw_helpers/l0_hw_helper_base.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hw_helpers/l0_hw_helper_skl_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hw_helpers/l0_hw_helper_skl_and_later.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hw_helpers/l0_hw_helper.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hw_helpers/l0_hw_helper.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/kernel/kernel.cpp
|
||||
|
@ -91,8 +91,8 @@ set(L0_RUNTIME_SOURCES
|
|||
|
||||
if(SUPPORT_XEHP_AND_LATER)
|
||||
list(APPEND L0_RUNTIME_SOURCES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/cmdlist/cmdlist_hw_xehp_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/cmdqueue/cmdqueue_xe_hp_core_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/cmdlist/cmdlist_hw_xehp_and_later.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/cmdqueue/cmdqueue_xe_hp_core_and_later.inl
|
||||
)
|
||||
endif()
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#pragma once
|
||||
#include "shared/source/command_container/implicit_scaling.h"
|
||||
#include "shared/source/command_stream/preemption.h"
|
||||
#include "shared/source/helpers/cache_flush_xehp_plus.inl"
|
||||
#include "shared/source/helpers/cache_flush_xehp_and_later.inl"
|
||||
#include "shared/source/helpers/pipeline_select_helper.h"
|
||||
#include "shared/source/helpers/simd_helper.h"
|
||||
#include "shared/source/indirect_heap/indirect_heap.h"
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#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_plus.inl"
|
||||
#include "level_zero/core/source/hw_helpers/l0_hw_helper_skl_and_later.inl"
|
||||
|
||||
#include "hw_cmds.h"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#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_plus.inl"
|
||||
#include "level_zero/core/source/hw_helpers/l0_hw_helper_skl_and_later.inl"
|
||||
|
||||
#include "hw_cmds.h"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#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_plus.inl"
|
||||
#include "level_zero/core/source/hw_helpers/l0_hw_helper_skl_and_later.inl"
|
||||
|
||||
#include "hw_cmds.h"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#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_plus.inl"
|
||||
#include "level_zero/core/source/hw_helpers/l0_hw_helper_skl_and_later.inl"
|
||||
|
||||
#include "hw_cmds.h"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#include "level_zero/core/source/cmdlist/cmdlist_hw.inl"
|
||||
#include "level_zero/core/source/cmdlist/cmdlist_hw_immediate.inl"
|
||||
#include "level_zero/core/source/cmdlist/cmdlist_hw_xehp_plus.inl"
|
||||
#include "level_zero/core/source/cmdlist/cmdlist_hw_xehp_and_later.inl"
|
||||
|
||||
#include "cmdlist_extended.inl"
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/xe_hp_core/hw_info.h"
|
||||
|
||||
#include "level_zero/core/source/cmdqueue/cmdqueue_hw.inl"
|
||||
#include "level_zero/core/source/cmdqueue/cmdqueue_xe_hp_core_plus.inl"
|
||||
#include "level_zero/core/source/cmdqueue/cmdqueue_xe_hp_core_and_later.inl"
|
||||
|
||||
#include "cmdqueue_extended.inl"
|
||||
namespace L0 {
|
||||
|
|
|
@ -10,7 +10,7 @@ set(RUNTIME_SRCS_COMMAND_QUEUE
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/command_queue.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/command_queue_hw.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/command_queue_hw_base.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/command_queue_hw_bdw_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/command_queue_hw_bdw_and_later.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/cpu_data_transfer_handler.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/enqueue_barrier.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/enqueue_common.h
|
||||
|
@ -36,10 +36,10 @@ set(RUNTIME_SRCS_COMMAND_QUEUE
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/flush.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/gpgpu_walker.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/gpgpu_walker_base.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/gpgpu_walker_bdw_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/gpgpu_walker_bdw_and_later.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hardware_interface.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hardware_interface_base.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hardware_interface_bdw_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hardware_interface_bdw_and_later.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/local_work_size.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/resource_barrier.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/resource_barrier.h
|
||||
|
@ -47,9 +47,9 @@ set(RUNTIME_SRCS_COMMAND_QUEUE
|
|||
|
||||
if(SUPPORT_XEHP_AND_LATER)
|
||||
list(APPEND RUNTIME_SRCS_COMMAND_QUEUE
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/command_queue_hw_xehp_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/gpgpu_walker_xehp_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hardware_interface_xehp_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/command_queue_hw_xehp_and_later.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/gpgpu_walker_xehp_and_later.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hardware_interface_xehp_and_later.inl
|
||||
)
|
||||
endif()
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2019-2020 Intel Corporation
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "shared/source/helpers/cache_flush_xehp_plus.inl"
|
||||
#include "shared/source/helpers/cache_flush_xehp_and_later.inl"
|
||||
|
||||
#include "opencl/extensions/public/cl_ext_private.h"
|
||||
#include "opencl/source/command_queue/command_queue_hw_base.inl"
|
|
@ -10,7 +10,7 @@
|
|||
#include "shared/source/debug_settings/debug_settings_manager.h"
|
||||
#include "shared/source/execution_environment/root_device_environment.h"
|
||||
#include "shared/source/gmm_helper/gmm_helper.h"
|
||||
#include "shared/source/helpers/cache_flush_xehp_plus.inl"
|
||||
#include "shared/source/helpers/cache_flush_xehp_and_later.inl"
|
||||
#include "shared/source/helpers/hw_helper.h"
|
||||
#include "shared/source/helpers/l3_range.h"
|
||||
#include "shared/source/helpers/simd_helper.h"
|
|
@ -9,10 +9,10 @@ set(RUNTIME_SRCS_COMMAND_STREAM
|
|||
${CMAKE_CURRENT_SOURCE_DIR}${BRANCH_DIR_SUFFIX}/per_dss_backed_buffer.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/aub_command_stream_receiver_hw.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/aub_command_stream_receiver_hw_base.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/aub_command_stream_receiver_hw_bdw_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/aub_command_stream_receiver_hw_bdw_and_later.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/command_stream_receiver_simulated_common_hw.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/command_stream_receiver_simulated_common_hw_base.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/command_stream_receiver_simulated_common_hw_bdw_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/command_stream_receiver_simulated_common_hw_bdw_and_later.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/command_stream_receiver_with_aub_dump.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/command_stream_receiver_with_aub_dump.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/create_command_stream_impl.cpp
|
||||
|
@ -22,9 +22,9 @@ set(RUNTIME_SRCS_COMMAND_STREAM
|
|||
|
||||
if(SUPPORT_XEHP_AND_LATER)
|
||||
list(APPEND RUNTIME_SRCS_COMMAND_STREAM
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/aub_command_stream_receiver_hw_xehp_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/command_stream_receiver_simulated_common_hw_xehp_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/tbx_command_stream_receiver_xehp_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/aub_command_stream_receiver_hw_xehp_and_later.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/command_stream_receiver_simulated_common_hw_xehp_and_later.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/tbx_command_stream_receiver_xehp_and_later.inl
|
||||
)
|
||||
endif()
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2019-2020 Intel Corporation
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2019-2020 Intel Corporation
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
|
@ -1,5 +1,5 @@
|
|||
#
|
||||
# Copyright (C) 2018-2020 Intel Corporation
|
||||
# Copyright (C) 2018-2021 Intel Corporation
|
||||
#
|
||||
# SPDX-License-Identifier: MIT
|
||||
#
|
||||
|
@ -10,7 +10,7 @@ set(RUNTIME_SRCS_DEVICE_QUEUE
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/device_queue.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/device_queue_hw.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/device_queue_hw_base.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/device_queue_hw_bdw_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/device_queue_hw_bdw_and_later.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/device_queue_hw_profiling.inl
|
||||
)
|
||||
target_sources(${NEO_STATIC_LIB_NAME} PRIVATE ${RUNTIME_SRCS_DEVICE_QUEUE})
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/helpers/populate_factory.h"
|
||||
|
||||
#include "opencl/source/command_stream/aub_command_stream_receiver_hw.h"
|
||||
#include "opencl/source/command_stream/aub_command_stream_receiver_hw_bdw_plus.inl"
|
||||
#include "opencl/source/command_stream/aub_command_stream_receiver_hw_bdw_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "shared/source/aub/aub_helper_bdw_plus.inl"
|
||||
#include "shared/source/aub/aub_helper_bdw_and_later.inl"
|
||||
#include "shared/source/aub_mem_dump/aub_alloc_dump.inl"
|
||||
#include "shared/source/aub_mem_dump/aub_mem_dump.inl"
|
||||
#include "shared/source/gen11/aub_mapper.h"
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include "shared/source/helpers/populate_factory.h"
|
||||
|
||||
#include "opencl/source/helpers/cl_hw_helper_base.inl"
|
||||
#include "opencl/source/helpers/cl_hw_helper_bdw_plus.inl"
|
||||
#include "opencl/source/helpers/cl_hw_helper_bdw_and_later.inl"
|
||||
|
||||
#include "hw_cmds.h"
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/memory_manager/unified_memory_manager.h"
|
||||
|
||||
#include "opencl/source/command_queue/command_queue_hw.h"
|
||||
#include "opencl/source/command_queue/command_queue_hw_bdw_plus.inl"
|
||||
#include "opencl/source/command_queue/command_queue_hw_bdw_and_later.inl"
|
||||
#include "opencl/source/command_queue/enqueue_resource_barrier.h"
|
||||
|
||||
#include "enqueue_init_dispatch_globals.h"
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "opencl/source/command_stream/command_stream_receiver_simulated_common_hw_bdw_plus.inl"
|
||||
#include "opencl/source/command_stream/command_stream_receiver_simulated_common_hw_bdw_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
typedef ICLFamily Family;
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/helpers/populate_factory.h"
|
||||
|
||||
#include "opencl/source/device_queue/device_queue_hw.h"
|
||||
#include "opencl/source/device_queue/device_queue_hw_bdw_plus.inl"
|
||||
#include "opencl/source/device_queue/device_queue_hw_bdw_and_later.inl"
|
||||
#include "opencl/source/device_queue/device_queue_hw_profiling.inl"
|
||||
#include "opencl/source/gen11/device_enqueue.h"
|
||||
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
|
||||
#include "shared/source/gen11/hw_info.h"
|
||||
|
||||
#include "opencl/source/command_queue/gpgpu_walker_bdw_plus.inl"
|
||||
#include "opencl/source/command_queue/hardware_interface_bdw_plus.inl"
|
||||
#include "opencl/source/command_queue/gpgpu_walker_bdw_and_later.inl"
|
||||
#include "opencl/source/command_queue/hardware_interface_bdw_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#include "opencl/source/gtpin/gtpin_hw_helper.h"
|
||||
#include "opencl/source/gtpin/gtpin_hw_helper.inl"
|
||||
#include "opencl/source/gtpin/gtpin_hw_helper_bdw_plus.inl"
|
||||
#include "opencl/source/gtpin/gtpin_hw_helper_bdw_and_later.inl"
|
||||
|
||||
#include "ocl_igc_shared/gtpin/gtpin_ocl_interface.h"
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#include "opencl/source/helpers/hardware_commands_helper.h"
|
||||
#include "opencl/source/helpers/hardware_commands_helper_base.inl"
|
||||
#include "opencl/source/helpers/hardware_commands_helper_bdw_plus.inl"
|
||||
#include "opencl/source/helpers/hardware_commands_helper_bdw_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
using FamilyType = ICLFamily;
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include "opencl/source/command_stream/command_stream_receiver_with_aub_dump.inl"
|
||||
#include "opencl/source/os_interface/linux/device_command_stream.inl"
|
||||
#include "opencl/source/os_interface/linux/drm_command_stream.inl"
|
||||
#include "opencl/source/os_interface/linux/drm_command_stream_bdw_plus.inl"
|
||||
#include "opencl/source/os_interface/linux/drm_command_stream_bdw_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2019-2020 Intel Corporation
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
|
@ -11,7 +11,7 @@
|
|||
#include "shared/source/memory_manager/memory_pool.h"
|
||||
|
||||
#include "opencl/source/command_stream/aub_command_stream_receiver_hw.h"
|
||||
#include "opencl/source/command_stream/aub_command_stream_receiver_hw_bdw_plus.inl"
|
||||
#include "opencl/source/command_stream/aub_command_stream_receiver_hw_bdw_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
typedef TGLLPFamily Family;
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
/*
|
||||
* Copyright (C) 2019-2020 Intel Corporation
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#include "shared/source/aub/aub_helper_bdw_plus.inl"
|
||||
#include "shared/source/aub/aub_helper_bdw_and_later.inl"
|
||||
#include "shared/source/aub_mem_dump/aub_alloc_dump.inl"
|
||||
#include "shared/source/aub_mem_dump/aub_mem_dump.inl"
|
||||
#include "shared/source/gen12lp/aub_mapper.h"
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include "shared/source/helpers/populate_factory.h"
|
||||
|
||||
#include "opencl/source/helpers/cl_hw_helper_base.inl"
|
||||
#include "opencl/source/helpers/cl_hw_helper_bdw_plus.inl"
|
||||
#include "opencl/source/helpers/cl_hw_helper_bdw_and_later.inl"
|
||||
|
||||
#include "hw_cmds.h"
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2019-2020 Intel Corporation
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
|
@ -8,7 +8,7 @@
|
|||
#include "shared/source/helpers/populate_factory.h"
|
||||
|
||||
#include "opencl/source/command_queue/command_queue_hw.h"
|
||||
#include "opencl/source/command_queue/command_queue_hw_bdw_plus.inl"
|
||||
#include "opencl/source/command_queue/command_queue_hw_bdw_and_later.inl"
|
||||
|
||||
#include "command_queue_helpers_gen12lp.inl"
|
||||
#include "enqueue_init_dispatch_globals.h"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2019-2020 Intel Corporation
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
|
@ -7,7 +7,7 @@
|
|||
|
||||
#include "shared/source/gen12lp/helpers_gen12lp.h"
|
||||
|
||||
#include "opencl/source/command_stream/command_stream_receiver_simulated_common_hw_bdw_plus.inl"
|
||||
#include "opencl/source/command_stream/command_stream_receiver_simulated_common_hw_bdw_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
typedef TGLLPFamily Family;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2019-2020 Intel Corporation
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/helpers/populate_factory.h"
|
||||
|
||||
#include "opencl/source/device_queue/device_queue_hw.h"
|
||||
#include "opencl/source/device_queue/device_queue_hw_bdw_plus.inl"
|
||||
#include "opencl/source/device_queue/device_queue_hw_bdw_and_later.inl"
|
||||
#include "opencl/source/device_queue/device_queue_hw_profiling.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
#include "shared/source/gmm_helper/resource_info.h"
|
||||
#include "shared/source/memory_manager/graphics_allocation.h"
|
||||
|
||||
#include "opencl/source/command_queue/gpgpu_walker_bdw_plus.inl"
|
||||
#include "opencl/source/command_queue/hardware_interface_bdw_plus.inl"
|
||||
#include "opencl/source/command_queue/gpgpu_walker_bdw_and_later.inl"
|
||||
#include "opencl/source/command_queue/hardware_interface_bdw_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#include "opencl/source/gtpin/gtpin_hw_helper.h"
|
||||
#include "opencl/source/gtpin/gtpin_hw_helper.inl"
|
||||
#include "opencl/source/gtpin/gtpin_hw_helper_bdw_plus.inl"
|
||||
#include "opencl/source/gtpin/gtpin_hw_helper_bdw_and_later.inl"
|
||||
|
||||
#include "ocl_igc_shared/gtpin/gtpin_ocl_interface.h"
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include "opencl/source/command_queue/command_queue.h"
|
||||
#include "opencl/source/helpers/hardware_commands_helper.h"
|
||||
#include "opencl/source/helpers/hardware_commands_helper_base.inl"
|
||||
#include "opencl/source/helpers/hardware_commands_helper_bdw_plus.inl"
|
||||
#include "opencl/source/helpers/hardware_commands_helper_bdw_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
using FamilyType = TGLLPFamily;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2019-2020 Intel Corporation
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
|
@ -39,7 +39,7 @@ void ImageHw<GfxFamily>::setSurfaceMemoryObjectControlStateIndexToMocsTable(void
|
|||
}
|
||||
|
||||
// clang-format off
|
||||
#include "opencl/source/mem_obj/image_tgllp_plus.inl"
|
||||
#include "opencl/source/mem_obj/image_tgllp_and_later.inl"
|
||||
#include "opencl/source/mem_obj/image_factory_init.inl"
|
||||
// clang-format on
|
||||
} // namespace NEO
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2019-2020 Intel Corporation
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
|
@ -8,7 +8,7 @@
|
|||
#include "opencl/source/command_stream/command_stream_receiver_with_aub_dump.inl"
|
||||
#include "opencl/source/os_interface/linux/device_command_stream.inl"
|
||||
#include "opencl/source/os_interface/linux/drm_command_stream.inl"
|
||||
#include "opencl/source/os_interface/linux/drm_command_stream_bdw_plus.inl"
|
||||
#include "opencl/source/os_interface/linux/drm_command_stream_bdw_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2019-2020 Intel Corporation
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
|
@ -8,4 +8,4 @@
|
|||
#include "shared/source/gen12lp/hw_cmds_base.h"
|
||||
using Family = NEO::TGLLPFamily;
|
||||
constexpr static auto gfxCore = IGFX_GEN12LP_CORE;
|
||||
#include "opencl/source/sampler/sampler_tgllp_plus.inl"
|
||||
#include "opencl/source/sampler/sampler_tgllp_and_later.inl"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#include "shared/source/gen12lp/hw_cmds.h"
|
||||
|
||||
#include "opencl/source/helpers/windows/gmm_callbacks_tgllp_plus.inl"
|
||||
#include "opencl/source/helpers/windows/gmm_callbacks_tgllp_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
template struct DeviceCallbacks<TGLLPFamily>;
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/helpers/populate_factory.h"
|
||||
|
||||
#include "opencl/source/command_stream/aub_command_stream_receiver_hw.h"
|
||||
#include "opencl/source/command_stream/aub_command_stream_receiver_hw_bdw_plus.inl"
|
||||
#include "opencl/source/command_stream/aub_command_stream_receiver_hw_bdw_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "shared/source/aub/aub_helper_bdw_plus.inl"
|
||||
#include "shared/source/aub/aub_helper_bdw_and_later.inl"
|
||||
#include "shared/source/aub_mem_dump/aub_alloc_dump.inl"
|
||||
#include "shared/source/aub_mem_dump/aub_mem_dump.inl"
|
||||
#include "shared/source/gen8/aub_mapper.h"
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include "shared/source/helpers/populate_factory.h"
|
||||
|
||||
#include "opencl/source/helpers/cl_hw_helper_base.inl"
|
||||
#include "opencl/source/helpers/cl_hw_helper_bdw_plus.inl"
|
||||
#include "opencl/source/helpers/cl_hw_helper_bdw_and_later.inl"
|
||||
|
||||
#include "hw_cmds.h"
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/memory_manager/unified_memory_manager.h"
|
||||
|
||||
#include "opencl/source/command_queue/command_queue_hw.h"
|
||||
#include "opencl/source/command_queue/command_queue_hw_bdw_plus.inl"
|
||||
#include "opencl/source/command_queue/command_queue_hw_bdw_and_later.inl"
|
||||
#include "opencl/source/command_queue/enqueue_resource_barrier.h"
|
||||
|
||||
#include "enqueue_init_dispatch_globals.h"
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
/*
|
||||
* Copyright (C) 2018-2020 Intel Corporation
|
||||
* Copyright (C) 2018-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#include "opencl/source/command_stream/command_stream_receiver_simulated_common_hw_bdw_plus.inl"
|
||||
#include "opencl/source/command_stream/command_stream_receiver_simulated_common_hw_bdw_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
typedef BDWFamily Family;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include "shared/source/helpers/populate_factory.h"
|
||||
|
||||
#include "opencl/source/device_queue/device_queue_hw.h"
|
||||
#include "opencl/source/device_queue/device_queue_hw_bdw_plus.inl"
|
||||
#include "opencl/source/device_queue/device_queue_hw_bdw_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
typedef BDWFamily Family;
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
|
||||
#include "shared/source/gen8/hw_info.h"
|
||||
|
||||
#include "opencl/source/command_queue/gpgpu_walker_bdw_plus.inl"
|
||||
#include "opencl/source/command_queue/hardware_interface_bdw_plus.inl"
|
||||
#include "opencl/source/command_queue/gpgpu_walker_bdw_and_later.inl"
|
||||
#include "opencl/source/command_queue/hardware_interface_bdw_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#include "opencl/source/gtpin/gtpin_hw_helper.h"
|
||||
#include "opencl/source/gtpin/gtpin_hw_helper.inl"
|
||||
#include "opencl/source/gtpin/gtpin_hw_helper_bdw_plus.inl"
|
||||
#include "opencl/source/gtpin/gtpin_hw_helper_bdw_and_later.inl"
|
||||
|
||||
#include "ocl_igc_shared/gtpin/gtpin_ocl_interface.h"
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
#include "opencl/source/helpers/hardware_commands_helper.h"
|
||||
#include "opencl/source/helpers/hardware_commands_helper_base.inl"
|
||||
#include "opencl/source/helpers/hardware_commands_helper_bdw_plus.inl"
|
||||
#include "opencl/source/helpers/hardware_commands_helper_bdw_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
using FamilyType = BDWFamily;
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include "opencl/source/command_stream/command_stream_receiver_with_aub_dump.inl"
|
||||
#include "opencl/source/os_interface/linux/device_command_stream.inl"
|
||||
#include "opencl/source/os_interface/linux/drm_command_stream.inl"
|
||||
#include "opencl/source/os_interface/linux/drm_command_stream_bdw_plus.inl"
|
||||
#include "opencl/source/os_interface/linux/drm_command_stream_bdw_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/helpers/populate_factory.h"
|
||||
|
||||
#include "opencl/source/command_stream/aub_command_stream_receiver_hw.h"
|
||||
#include "opencl/source/command_stream/aub_command_stream_receiver_hw_bdw_plus.inl"
|
||||
#include "opencl/source/command_stream/aub_command_stream_receiver_hw_bdw_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "shared/source/aub/aub_helper_bdw_plus.inl"
|
||||
#include "shared/source/aub/aub_helper_bdw_and_later.inl"
|
||||
#include "shared/source/aub_mem_dump/aub_alloc_dump.inl"
|
||||
#include "shared/source/aub_mem_dump/aub_mem_dump.inl"
|
||||
#include "shared/source/gen9/aub_mapper.h"
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include "shared/source/helpers/populate_factory.h"
|
||||
|
||||
#include "opencl/source/helpers/cl_hw_helper_base.inl"
|
||||
#include "opencl/source/helpers/cl_hw_helper_bdw_plus.inl"
|
||||
#include "opencl/source/helpers/cl_hw_helper_bdw_and_later.inl"
|
||||
|
||||
#include "hw_cmds.h"
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/memory_manager/unified_memory_manager.h"
|
||||
|
||||
#include "opencl/source/command_queue/command_queue_hw.h"
|
||||
#include "opencl/source/command_queue/command_queue_hw_bdw_plus.inl"
|
||||
#include "opencl/source/command_queue/command_queue_hw_bdw_and_later.inl"
|
||||
#include "opencl/source/command_queue/enqueue_resource_barrier.h"
|
||||
|
||||
#include "enqueue_init_dispatch_globals.h"
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
/*
|
||||
* Copyright (C) 2018-2020 Intel Corporation
|
||||
* Copyright (C) 2018-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#include "opencl/source/command_stream/command_stream_receiver_simulated_common_hw_bdw_plus.inl"
|
||||
#include "opencl/source/command_stream/command_stream_receiver_simulated_common_hw_bdw_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
typedef SKLFamily Family;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include "shared/source/helpers/populate_factory.h"
|
||||
|
||||
#include "opencl/source/device_queue/device_queue_hw.h"
|
||||
#include "opencl/source/device_queue/device_queue_hw_bdw_plus.inl"
|
||||
#include "opencl/source/device_queue/device_queue_hw_bdw_and_later.inl"
|
||||
#include "opencl/source/device_queue/device_queue_hw_profiling.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
|
||||
#include "shared/source/gen9/hw_cmds_base.h"
|
||||
|
||||
#include "opencl/source/command_queue/gpgpu_walker_bdw_plus.inl"
|
||||
#include "opencl/source/command_queue/hardware_interface_bdw_plus.inl"
|
||||
#include "opencl/source/command_queue/gpgpu_walker_bdw_and_later.inl"
|
||||
#include "opencl/source/command_queue/hardware_interface_bdw_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#include "opencl/source/gtpin/gtpin_hw_helper.h"
|
||||
#include "opencl/source/gtpin/gtpin_hw_helper.inl"
|
||||
#include "opencl/source/gtpin/gtpin_hw_helper_bdw_plus.inl"
|
||||
#include "opencl/source/gtpin/gtpin_hw_helper_bdw_and_later.inl"
|
||||
|
||||
#include "ocl_igc_shared/gtpin/gtpin_ocl_interface.h"
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
#include "opencl/source/helpers/hardware_commands_helper.h"
|
||||
#include "opencl/source/helpers/hardware_commands_helper_base.inl"
|
||||
#include "opencl/source/helpers/hardware_commands_helper_bdw_plus.inl"
|
||||
#include "opencl/source/helpers/hardware_commands_helper_bdw_and_later.inl"
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include "opencl/source/command_stream/command_stream_receiver_with_aub_dump.inl"
|
||||
#include "opencl/source/os_interface/linux/device_command_stream.inl"
|
||||
#include "opencl/source/os_interface/linux/drm_command_stream.inl"
|
||||
#include "opencl/source/os_interface/linux/drm_command_stream_bdw_plus.inl"
|
||||
#include "opencl/source/os_interface/linux/drm_command_stream_bdw_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ if(NOT DISABLED_GTPIN_SUPPORT)
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/gtpin_hw_helper.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/gtpin_hw_helper.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/gtpin_hw_helper.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/gtpin_hw_helper_bdw_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/gtpin_hw_helper_bdw_and_later.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/gtpin_init.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/gtpin_init.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/gtpin_notify.h
|
||||
|
@ -22,7 +22,7 @@ if(NOT DISABLED_GTPIN_SUPPORT)
|
|||
|
||||
if(SUPPORT_XEHP_AND_LATER)
|
||||
list(APPEND RUNTIME_SRCS_GTPIN
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/gtpin_hw_helper_xehp_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/gtpin_hw_helper_xehp_and_later.inl
|
||||
)
|
||||
endif()
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ set(RUNTIME_SRCS_HELPERS_BASE
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/cl_hw_helper.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/cl_hw_helper.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/cl_hw_helper_base.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/cl_hw_helper_bdw_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/cl_hw_helper_bdw_and_later.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/convert_color.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/destructor_callbacks.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/dispatch_info.cpp
|
||||
|
@ -29,7 +29,7 @@ set(RUNTIME_SRCS_HELPERS_BASE
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/gmm_types_converter.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hardware_commands_helper.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hardware_commands_helper_base.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hardware_commands_helper_bdw_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hardware_commands_helper_bdw_and_later.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hardware_context_controller.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hardware_context_controller.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/helper_options.cpp
|
||||
|
@ -56,13 +56,13 @@ set(RUNTIME_SRCS_HELPERS_BASE
|
|||
|
||||
if(SUPPORT_XEHP_AND_LATER)
|
||||
list(APPEND RUNTIME_SRCS_HELPERS_BASE
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/cl_hw_helper_xehp_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hardware_commands_helper_xehp_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/cl_hw_helper_xehp_and_later.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/hardware_commands_helper_xehp_and_later.inl
|
||||
)
|
||||
endif()
|
||||
|
||||
set(RUNTIME_SRCS_HELPERS_WINDOWS
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/windows/gmm_callbacks_tgllp_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/windows/gmm_callbacks_tgllp_and_later.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/windows/kmd_notify_properties_windows.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/windows/gl_helper.h
|
||||
)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2019-2020 Intel Corporation
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
|
@ -13,7 +13,7 @@ set(RUNTIME_SRCS_MEM_OBJ
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/image.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/image.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/image.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/image_tgllp_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/image_tgllp_and_later.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/image_factory_init.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/map_operations_handler.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/map_operations_handler.h
|
||||
|
@ -30,7 +30,7 @@ set(RUNTIME_SRCS_MEM_OBJ
|
|||
|
||||
if(SUPPORT_XEHP_AND_LATER)
|
||||
list(APPEND RUNTIME_SRCS_MEM_OBJ
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/image_xehp_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/image_xehp_and_later.inl
|
||||
)
|
||||
endif()
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ set(RUNTIME_SRCS_OS_INTERFACE_LINUX
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/device_command_stream.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/drm_command_stream.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/drm_command_stream.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/drm_command_stream_bdw_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/drm_command_stream_bdw_and_later.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/ocl_reg_path.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/os_metrics_library.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/performance_counters_linux.cpp
|
||||
|
@ -21,7 +21,7 @@ set(RUNTIME_SRCS_OS_INTERFACE_LINUX
|
|||
|
||||
if(SUPPORT_XEHP_AND_LATER)
|
||||
list(APPEND RUNTIME_SRCS_OS_INTERFACE_LINUX
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/drm_command_stream_xehp_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/drm_command_stream_xehp_and_later.inl
|
||||
)
|
||||
endif()
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#
|
||||
# Copyright (C) 2018-2020 Intel Corporation
|
||||
# Copyright (C) 2018-2021 Intel Corporation
|
||||
#
|
||||
# SPDX-License-Identifier: MIT
|
||||
#
|
||||
|
@ -10,7 +10,7 @@ set(RUNTIME_SRCS_SAMPLER
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/sampler.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/sampler.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/sampler_factory_init.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/sampler_tgllp_plus.inl
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/sampler_tgllp_and_later.inl
|
||||
)
|
||||
add_subdirectories()
|
||||
target_sources(${NEO_STATIC_LIB_NAME} PRIVATE ${RUNTIME_SRCS_SAMPLER})
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include "shared/source/helpers/array_count.h"
|
||||
#include "shared/source/helpers/populate_factory.h"
|
||||
|
||||
#include "opencl/source/command_stream/aub_command_stream_receiver_hw_xehp_plus.inl"
|
||||
#include "opencl/source/command_stream/aub_command_stream_receiver_hw_xehp_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "shared/source/aub/aub_helper_xehp_plus.inl"
|
||||
#include "shared/source/aub/aub_helper_xehp_and_later.inl"
|
||||
|
||||
#include "aub_mem_dump.h"
|
||||
|
||||
|
@ -17,4 +17,4 @@ constexpr static auto deviceValue = AubMemDump::DeviceValues::XeHP_SDV;
|
|||
template class AubHelperHw<Family>;
|
||||
} // namespace NEO
|
||||
|
||||
#include "shared/source/aub_mem_dump/aub_mem_dump_xehp_plus.inl"
|
||||
#include "shared/source/aub_mem_dump/aub_mem_dump_xehp_and_later.inl"
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#include "opencl/source/context/context.h"
|
||||
#include "opencl/source/helpers/cl_hw_helper_base.inl"
|
||||
#include "opencl/source/helpers/cl_hw_helper_xehp_plus.inl"
|
||||
#include "opencl/source/helpers/cl_hw_helper_xehp_and_later.inl"
|
||||
|
||||
#include "hw_cmds.h"
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ using Family = XeHpFamily;
|
|||
static auto gfxCore = IGFX_XE_HP_CORE;
|
||||
} // namespace NEO
|
||||
|
||||
#include "opencl/source/command_queue/command_queue_hw_xehp_plus.inl"
|
||||
#include "opencl/source/command_queue/command_queue_hw_xehp_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
template <>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "opencl/source/command_stream/command_stream_receiver_simulated_common_hw_xehp_plus.inl"
|
||||
#include "opencl/source/command_stream/command_stream_receiver_simulated_common_hw_xehp_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
typedef XeHpFamily Family;
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "opencl/source/command_queue/gpgpu_walker_xehp_plus.inl"
|
||||
#include "opencl/source/command_queue/hardware_interface_xehp_plus.inl"
|
||||
#include "opencl/source/command_queue/gpgpu_walker_xehp_and_later.inl"
|
||||
#include "opencl/source/command_queue/hardware_interface_xehp_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#include "opencl/source/gtpin/gtpin_hw_helper.h"
|
||||
#include "opencl/source/gtpin/gtpin_hw_helper.inl"
|
||||
#include "opencl/source/gtpin/gtpin_hw_helper_xehp_plus.inl"
|
||||
#include "opencl/source/gtpin/gtpin_hw_helper_xehp_and_later.inl"
|
||||
|
||||
#include "ocl_igc_shared/gtpin/gtpin_ocl_interface.h"
|
||||
|
||||
|
|
|
@ -5,12 +5,12 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "shared/source/helpers/cache_flush_xehp_plus.inl"
|
||||
#include "shared/source/helpers/cache_flush_xehp_and_later.inl"
|
||||
#include "shared/source/xe_hp_core/hw_cmds.h"
|
||||
|
||||
#include "opencl/source/helpers/hardware_commands_helper.h"
|
||||
#include "opencl/source/helpers/hardware_commands_helper_base.inl"
|
||||
#include "opencl/source/helpers/hardware_commands_helper_xehp_plus.inl"
|
||||
#include "opencl/source/helpers/hardware_commands_helper_xehp_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
using FamilyType = XeHpFamily;
|
||||
|
|
|
@ -19,11 +19,11 @@ static auto gfxCore = IGFX_XE_HP_CORE;
|
|||
|
||||
} // namespace NEO
|
||||
|
||||
#include "opencl/source/mem_obj/image_xehp_plus.inl"
|
||||
#include "opencl/source/mem_obj/image_xehp_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
// clang-format off
|
||||
#include "opencl/source/mem_obj/image_tgllp_plus.inl"
|
||||
#include "opencl/source/mem_obj/image_tgllp_and_later.inl"
|
||||
#include "opencl/source/mem_obj/image_factory_init.inl"
|
||||
// clang-format on
|
||||
} // namespace NEO
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include "opencl/source/command_stream/command_stream_receiver_with_aub_dump.inl"
|
||||
#include "opencl/source/os_interface/linux/device_command_stream.inl"
|
||||
#include "opencl/source/os_interface/linux/drm_command_stream.inl"
|
||||
#include "opencl/source/os_interface/linux/drm_command_stream_xehp_plus.inl"
|
||||
#include "opencl/source/os_interface/linux/drm_command_stream_xehp_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ void populateFactoryTable<TbxCommandStreamReceiverHw<Family>>() {
|
|||
tbxCommandStreamReceiverFactory[gfxCore] = TbxCommandStreamReceiverHw<Family>::create;
|
||||
}
|
||||
|
||||
#include "opencl/source/command_stream/tbx_command_stream_receiver_xehp_plus.inl"
|
||||
#include "opencl/source/command_stream/tbx_command_stream_receiver_xehp_and_later.inl"
|
||||
|
||||
template class TbxCommandStreamReceiverHw<Family>;
|
||||
template class CommandStreamReceiverWithAUBDump<TbxCommandStreamReceiverHw<Family>>;
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#include "shared/source/xe_hp_core/hw_cmds.h"
|
||||
|
||||
#include "opencl/source/helpers/windows/gmm_callbacks_tgllp_plus.inl"
|
||||
#include "opencl/source/helpers/windows/gmm_callbacks_tgllp_and_later.inl"
|
||||
|
||||
namespace NEO {
|
||||
template struct DeviceCallbacks<XeHpFamily>;
|
||||
|
|
|
@ -87,17 +87,17 @@ set(IGDRCL_SRCS_tests_command_queue
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/ooq_task_tests.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/read_write_buffer_cpu_copy.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/sync_buffer_handler_tests.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/walker_partition_tests_xehp_plus.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/walker_partition_tests_xehp_and_later.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/work_group_size_tests.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/zero_size_enqueue_tests.cpp
|
||||
)
|
||||
|
||||
if(TESTS_XEHP_AND_LATER)
|
||||
list(APPEND IGDRCL_SRCS_tests_command_queue
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/dispatch_walker_tests_xehp_plus.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/enqueue_media_kernel_xehp_plus.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/enqueue_resource_barier_tests_xehp_plus.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/walker_partition_tests_xehp_plus.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/dispatch_walker_tests_xehp_and_later.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/enqueue_media_kernel_xehp_and_later.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/enqueue_resource_barier_tests_xehp_and_later.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/walker_partition_tests_xehp_and_later.cpp
|
||||
)
|
||||
endif()
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "shared/source/command_container/walker_partition_xehp_plus.h"
|
||||
#include "shared/source/command_container/walker_partition_xehp_and_later.h"
|
||||
#include "shared/source/command_stream/linear_stream.h"
|
||||
#include "shared/source/gmm_helper/gmm_helper.h"
|
||||
#include "shared/source/helpers/hw_helper.h"
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue