Refactor aubstream include interface
set include path to third_party/aub_stream rename third_party/aub_stream/headers -> third_party/aub_stream/aubstream Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
parent
e050d231b9
commit
bb308c04ed
|
@ -321,7 +321,7 @@ if(NOT DEFINED SOURCE_LEVEL_DEBUGGER_HEADERS_DIR)
|
|||
message(STATUS "Source Level Debugger headers dir: ${SOURCE_LEVEL_DEBUGGER_HEADERS_DIR}")
|
||||
endif()
|
||||
|
||||
get_filename_component(AUB_STREAM_HEADERS_DIR "${CMAKE_CURRENT_SOURCE_DIR}/third_party${BRANCH_DIR_SUFFIX}aub_stream/headers" ABSOLUTE)
|
||||
get_filename_component(AUB_STREAM_HEADERS_DIR "${CMAKE_CURRENT_SOURCE_DIR}/third_party${BRANCH_DIR_SUFFIX}aub_stream" ABSOLUTE)
|
||||
if(IS_DIRECTORY ${AUB_STREAM_HEADERS_DIR})
|
||||
message(STATUS "Aub Stream Headers dir: ${AUB_STREAM_HEADERS_DIR}")
|
||||
else()
|
||||
|
@ -454,11 +454,9 @@ if(DEFINED AUB_STREAM_DIR)
|
|||
set(AUB_STREAM_PROJECT_NAME "aub_stream")
|
||||
add_subdirectory_unique(${AUB_STREAM_DIR} ${CMAKE_BINARY_DIR}/aub_stream EXCLUDE_FROM_ALL)
|
||||
|
||||
if(EXISTS ${AUB_STREAM_DIR}${BRANCH_DIR_SUFFIX}headers/engine_node.h)
|
||||
set(ENGINE_NODE_DIR ${AUB_STREAM_DIR}${BRANCH_DIR_SUFFIX}headers)
|
||||
else()
|
||||
get_target_property(interface_dir ${AUB_STREAM_PROJECT_NAME} INTERFACE_INCLUDE_DIRECTORIES)
|
||||
set(ENGINE_NODE_DIR ${interface_dir}/aubstream/headers)
|
||||
get_target_property(ENGINE_NODE_DIR ${AUB_STREAM_PROJECT_NAME} INTERFACE_INCLUDE_DIRECTORIES)
|
||||
if(NOT EXISTS ${ENGINE_NODE_DIR}/aubstream/engine_node.h)
|
||||
set(ENGINE_NODE_DIR ${AUB_STREAM_HEADERS_DIR})
|
||||
endif()
|
||||
else()
|
||||
set(ENGINE_NODE_DIR ${AUB_STREAM_HEADERS_DIR})
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#include "opencl/source/cl_device/cl_device_info.h"
|
||||
#include "opencl/source/helpers/base_object.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
#include "igfxfmid.h"
|
||||
|
||||
#include <vector>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2021 Intel Corporation
|
||||
* Copyright (C) 2021-2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
|
@ -7,7 +7,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
struct CopyEngineState {
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#include "opencl/test/unit_test/mocks/mock_mdi.h"
|
||||
#include "opencl/test/unit_test/mocks/mock_platform.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
#include "opencl/test/unit_test/mocks/mock_context.h"
|
||||
#include "opencl/test/unit_test/mocks/mock_platform.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
using ClHwHelperTestsGen12Lp = Test<ClDeviceFixture>;
|
||||
|
||||
|
|
|
@ -13,9 +13,9 @@
|
|||
#include "shared/source/helpers/hw_info.h"
|
||||
#include "shared/source/os_interface/hw_info_config.h"
|
||||
|
||||
#include "third_party/aub_stream/headers/aub_manager.h"
|
||||
#include "third_party/aub_stream/headers/aubstream.h"
|
||||
#include "third_party/aub_stream/headers/product_family.h"
|
||||
#include "aubstream/aub_manager.h"
|
||||
#include "aubstream/aubstream.h"
|
||||
#include "aubstream/product_family.h"
|
||||
|
||||
namespace NEO {
|
||||
extern aub_stream::AubManager *createAubManager(const aub_stream::AubManagerOptions &options);
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2018-2021 Intel Corporation
|
||||
* Copyright (C) 2018-2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
|
@ -12,7 +12,7 @@
|
|||
#include "shared/source/memory_manager/address_mapper.h"
|
||||
#include "shared/source/memory_manager/physical_address_allocator.h"
|
||||
|
||||
#include "third_party/aub_stream/headers/aub_manager.h"
|
||||
#include "aubstream/aub_manager.h"
|
||||
|
||||
namespace NEO {
|
||||
struct HardwareInfo;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2018-2021 Intel Corporation
|
||||
* Copyright (C) 2018-2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
|
@ -15,7 +15,7 @@
|
|||
#include "shared/source/helpers/hw_helper.h"
|
||||
#include "shared/source/tbx/tbx_proto.h"
|
||||
|
||||
#include "third_party/aub_stream/headers/aubstream.h"
|
||||
#include "aubstream/aubstream.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include "shared/source/aub/aub_helper.h"
|
||||
#include "shared/source/debug_settings/debug_settings_manager.h"
|
||||
|
||||
#include "third_party/aub_stream/headers/aubstream.h"
|
||||
#include "aubstream/aubstream.h"
|
||||
|
||||
#include <sstream>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2021 Intel Corporation
|
||||
* Copyright (C) 2021-2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/aub_mem_dump/aub_mem_dump.h"
|
||||
#include "shared/source/debug_settings/debug_settings_manager.h"
|
||||
|
||||
#include "third_party/aub_stream/headers/aubstream.h"
|
||||
#include "aubstream/aubstream.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/gmm_helper/gmm.h"
|
||||
#include "shared/source/gmm_helper/gmm_helper.h"
|
||||
|
||||
#include "third_party/aub_stream/headers/aubstream.h"
|
||||
#include "aubstream/aubstream.h"
|
||||
|
||||
using namespace NEO;
|
||||
using namespace aub_stream;
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "third_party/aub_stream/headers/aubstream.h"
|
||||
#include "aubstream/aubstream.h"
|
||||
|
||||
namespace aub_stream_stubs {
|
||||
uint16_t tbxServerPort = 4321;
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
#include "shared/source/memory_manager/os_agnostic_memory_manager.h"
|
||||
#include "shared/source/os_interface/hw_info_config.h"
|
||||
|
||||
#include "third_party/aub_stream/headers/aubstream.h"
|
||||
#include "aubstream/aubstream.h"
|
||||
|
||||
#include <cstring>
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include "shared/source/memory_manager/memory_banks.h"
|
||||
|
||||
#include "aub_mapper.h"
|
||||
#include "third_party/aub_stream/headers/hardware_context.h"
|
||||
#include "aubstream/hardware_context.h"
|
||||
|
||||
namespace aub_stream {
|
||||
class AubManager;
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
#include "shared/source/memory_manager/memory_manager.h"
|
||||
#include "shared/source/os_interface/os_context.h"
|
||||
|
||||
#include "third_party/aub_stream/headers/aub_manager.h"
|
||||
#include "aubstream/aub_manager.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#include "shared/source/memory_manager/physical_address_allocator.h"
|
||||
#include "shared/source/os_interface/os_context.h"
|
||||
|
||||
#include "third_party/aub_stream/headers/allocation_params.h"
|
||||
#include "aubstream/allocation_params.h"
|
||||
|
||||
namespace NEO {
|
||||
class GraphicsAllocation;
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
/*
|
||||
* Copyright (C) 2020 Intel Corporation
|
||||
* Copyright (C) 2020-2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include "shared/source/gen11/hw_cmds.h"
|
||||
#include "shared/source/helpers/constants.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
struct Gen11Family;
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/gen11/hw_cmds_ehl.h"
|
||||
#include "shared/source/helpers/constants.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/gen11/hw_cmds_icllp.h"
|
||||
#include "shared/source/helpers/constants.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/gen11/hw_cmds_lkf.h"
|
||||
#include "shared/source/helpers/constants.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "product_family.h"
|
||||
#include "aubstream/product_family.h"
|
||||
|
||||
namespace NEO {
|
||||
template <>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "product_family.h"
|
||||
#include "aubstream/product_family.h"
|
||||
|
||||
namespace NEO {
|
||||
template <>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "product_family.h"
|
||||
#include "aubstream/product_family.h"
|
||||
|
||||
namespace NEO {
|
||||
template <>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "product_family.h"
|
||||
#include "aubstream/product_family.h"
|
||||
|
||||
namespace NEO {
|
||||
template <>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include "shared/source/gen12lp/hw_cmds.h"
|
||||
#include "shared/source/helpers/constants.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
struct Gen12LpFamily;
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "product_family.h"
|
||||
#include "aubstream/product_family.h"
|
||||
|
||||
namespace NEO {
|
||||
template <>
|
||||
|
|
|
@ -17,7 +17,7 @@ using Family = NEO::Gen12LpFamily;
|
|||
#include "shared/source/helpers/logical_state_helper.inl"
|
||||
#include "shared/source/os_interface/hw_info_config.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/gen12lp/hw_cmds_adln.h"
|
||||
#include "shared/source/helpers/constants.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/gen12lp/hw_cmds_adlp.h"
|
||||
#include "shared/source/helpers/constants.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/gen12lp/hw_cmds_adls.h"
|
||||
#include "shared/source/helpers/constants.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include "shared/source/gen12lp/hw_cmds_dg1.h"
|
||||
#include "shared/source/helpers/constants.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/gen12lp/hw_cmds_rkl.h"
|
||||
#include "shared/source/helpers/constants.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/gen12lp/hw_cmds_tgllp.h"
|
||||
#include "shared/source/helpers/constants.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "product_family.h"
|
||||
#include "aubstream/product_family.h"
|
||||
|
||||
namespace NEO {
|
||||
template <>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include "shared/source/gen8/hw_cmds.h"
|
||||
#include "shared/source/helpers/constants.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
struct Gen8Family;
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "product_family.h"
|
||||
#include "aubstream/product_family.h"
|
||||
|
||||
namespace NEO {
|
||||
template <>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/gen8/hw_cmds_bdw.h"
|
||||
#include "shared/source/helpers/constants.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include "shared/source/gen9/hw_cmds.h"
|
||||
#include "shared/source/helpers/constants.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
struct Gen9Family;
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "product_family.h"
|
||||
#include "aubstream/product_family.h"
|
||||
|
||||
namespace NEO {
|
||||
template <>
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
|
||||
#include "shared/source/gen9/cfl/device_ids_configs_cfl.h"
|
||||
|
||||
#include "aubstream/product_family.h"
|
||||
#include "platforms.h"
|
||||
#include "product_family.h"
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "product_family.h"
|
||||
#include "aubstream/product_family.h"
|
||||
|
||||
namespace NEO {
|
||||
template <>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/gen9/hw_cmds_bxt.h"
|
||||
#include "shared/source/helpers/constants.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/gen9/hw_cmds_cfl.h"
|
||||
#include "shared/source/helpers/constants.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/gen9/hw_cmds_glk.h"
|
||||
#include "shared/source/helpers/constants.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/gen9/hw_cmds_kbl.h"
|
||||
#include "shared/source/helpers/constants.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/gen9/hw_cmds_skl.h"
|
||||
#include "shared/source/helpers/constants.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
|
||||
#include "shared/source/gen9/kbl/device_ids_configs_kbl.h"
|
||||
|
||||
#include "aubstream/product_family.h"
|
||||
#include "platforms.h"
|
||||
#include "product_family.h"
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "product_family.h"
|
||||
#include "aubstream/product_family.h"
|
||||
|
||||
namespace NEO {
|
||||
template <>
|
||||
|
|
|
@ -8,8 +8,6 @@
|
|||
#pragma once
|
||||
#include "shared/source/os_interface/os_context.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
class CommandStreamReceiver;
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include "shared/source/helpers/common_types.h"
|
||||
#include "shared/source/utilities/stackvec.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
#include <atomic>
|
||||
#include <string>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
* Copyright (C) 2019-2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
|
@ -11,7 +11,7 @@
|
|||
#include "shared/source/helpers/constants.h"
|
||||
#include "shared/source/os_interface/os_context.h"
|
||||
|
||||
#include "third_party/aub_stream/headers/allocation_params.h"
|
||||
#include "aubstream/allocation_params.h"
|
||||
using namespace NEO;
|
||||
|
||||
HardwareContextController::HardwareContextController(aub_stream::AubManager &aubManager, OsContext &osContext, uint32_t flags) {
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
*/
|
||||
|
||||
#pragma once
|
||||
#include "third_party/aub_stream/headers/aub_manager.h"
|
||||
#include "third_party/aub_stream/headers/hardware_context.h"
|
||||
#include "aubstream/aub_manager.h"
|
||||
#include "aubstream/hardware_context.h"
|
||||
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
|
|
|
@ -14,9 +14,9 @@
|
|||
#include "shared/source/helpers/engine_node_helper.h"
|
||||
#include "shared/source/helpers/options.h"
|
||||
|
||||
#include "aubstream/aubstream.h"
|
||||
#include "igfxfmid.h"
|
||||
#include "sku_info.h"
|
||||
#include "third_party/aub_stream/headers/aubstream.h"
|
||||
|
||||
#include <cstdint>
|
||||
#include <memory>
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#include "shared/source/kernel/grf_config.h"
|
||||
#include "shared/source/memory_manager/memory_manager.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
#include "shared/source/direct_submission/direct_submission_properties.h"
|
||||
#include "shared/source/helpers/kmd_notify_properties.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "gtsysinfo.h"
|
||||
#include "igfxfmid.h"
|
||||
#include "sku_info.h"
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include "shared/source/gmm_helper/gmm.h"
|
||||
#include "shared/source/memory_manager/graphics_allocation.h"
|
||||
|
||||
#include "third_party/aub_stream/headers/allocation_params.h"
|
||||
#include "aubstream/allocation_params.h"
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/memory_manager/memory_operations_handler.h"
|
||||
#include "shared/source/utilities/spinlock.h"
|
||||
|
||||
#include "third_party/aub_stream/headers/aub_manager.h"
|
||||
#include "aubstream/aub_manager.h"
|
||||
|
||||
#include <mutex>
|
||||
#include <vector>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
#include "shared/source/os_interface/linux/memory_info.h"
|
||||
#include "shared/source/os_interface/os_interface.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
#include "igfxfmid.h"
|
||||
|
||||
#include <array>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/os_interface/linux/engine_info.h"
|
||||
#include "shared/source/os_interface/linux/ioctl_helper.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
#include "sku_info.h"
|
||||
|
||||
#include <cstdint>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include "shared/source/helpers/engine_node_helper.h"
|
||||
#include "shared/source/utilities/reference_tracked_object.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
#include <mutex>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#pragma once
|
||||
#include "shared/source/utilities/metrics_library.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
#include <mutex>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2019-2021 Intel Corporation
|
||||
* Copyright (C) 2019-2022 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
|
@ -9,7 +9,7 @@
|
|||
|
||||
#include "shared/source/gmm_helper/gmm_lib.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include "shared/source/helpers/constants.h"
|
||||
#include "shared/source/xe_hp_core/hw_cmds.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
struct XeHpFamily;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include "shared/source/helpers/constants.h"
|
||||
#include "shared/source/xe_hp_core/hw_cmds.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "product_family.h"
|
||||
#include "aubstream/product_family.h"
|
||||
|
||||
namespace NEO {
|
||||
template <>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include "shared/source/helpers/constants.h"
|
||||
#include "shared/source/xe_hpc_core/hw_cmds.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
struct XeHpcCoreFamily;
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include "shared/source/unified_memory/usm_memory_support.h"
|
||||
#include "shared/source/xe_hpc_core/hw_cmds_pvc.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "product_family.h"
|
||||
#include "aubstream/product_family.h"
|
||||
|
||||
namespace NEO {
|
||||
template <>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include "shared/source/helpers/constants.h"
|
||||
#include "shared/source/xe_hpg_core/hw_cmds.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
struct XeHpgCoreFamily;
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#include "shared/source/memory_manager/memory_manager.h"
|
||||
|
||||
#include "product_family.h"
|
||||
#include "aubstream/product_family.h"
|
||||
|
||||
namespace NEO {
|
||||
template <>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include "shared/source/helpers/constants.h"
|
||||
#include "shared/source/xe_hpg_core/hw_cmds_dg2.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#include "shared/test/common/helpers/default_hw_info.h"
|
||||
#include "shared/test/common/helpers/ult_hw_config.h"
|
||||
|
||||
#include "third_party/aub_stream/headers/aubstream.h"
|
||||
#include "aubstream/aubstream.h"
|
||||
|
||||
void NEO::BaseUltConfigListener::OnTestStart(const ::testing::TestInfo &) {
|
||||
debugVarSnapshot = DebugManager.flags;
|
||||
|
|
|
@ -9,10 +9,10 @@
|
|||
|
||||
#include "shared/source/helpers/debug_helpers.h"
|
||||
|
||||
#include "third_party/aub_stream/headers/allocation_params.h"
|
||||
#include "third_party/aub_stream/headers/aub_manager.h"
|
||||
#include "third_party/aub_stream/headers/aubstream.h"
|
||||
#include "third_party/aub_stream/headers/hardware_context.h"
|
||||
#include "aubstream/allocation_params.h"
|
||||
#include "aubstream/aub_manager.h"
|
||||
#include "aubstream/aubstream.h"
|
||||
#include "aubstream/hardware_context.h"
|
||||
|
||||
struct MockHardwareContext : public aub_stream::HardwareContext {
|
||||
using SurfaceInfo = aub_stream::SurfaceInfo;
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#include "shared/test/common/helpers/default_hw_info.h"
|
||||
#include "shared/test/common/mocks/linux/mock_drm_wrappers.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
#include <atomic>
|
||||
#include <cstdint>
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
#include "shared/test/common/mocks/mock_execution_environment.h"
|
||||
#include "shared/test/common/test_macros/hw_test.h"
|
||||
|
||||
#include "aubstream/aubstream.h"
|
||||
#include "gtest/gtest.h"
|
||||
#include "third_party/aub_stream/headers/aubstream.h"
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
|
|
|
@ -14,8 +14,8 @@
|
|||
#include "shared/test/common/helpers/variable_backup.h"
|
||||
#include "shared/test/common/mocks/mock_aub_center.h"
|
||||
|
||||
#include "aubstream/aubstream.h"
|
||||
#include "gtest/gtest.h"
|
||||
#include "third_party/aub_stream/headers/aubstream.h"
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
|
|
|
@ -29,8 +29,8 @@
|
|||
#include "shared/test/common/mocks/ult_device_factory.h"
|
||||
#include "shared/test/common/test_macros/hw_test.h"
|
||||
|
||||
#include "aubstream/aubstream.h"
|
||||
#include "gtest/gtest.h"
|
||||
#include "third_party/aub_stream/headers/aubstream.h"
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
#include "shared/test/common/test_macros/test.h"
|
||||
#include "shared/test/unit_test/os_interface/hw_info_config_tests.h"
|
||||
|
||||
#include "aubstream/product_family.h"
|
||||
#include "platforms.h"
|
||||
#include "product_family.h"
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
#include "shared/test/common/test_macros/test.h"
|
||||
#include "shared/test/unit_test/os_interface/hw_info_config_tests.h"
|
||||
|
||||
#include "aubstream/product_family.h"
|
||||
#include "platforms.h"
|
||||
#include "product_family.h"
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
#include "shared/test/common/test_macros/test.h"
|
||||
#include "shared/test/unit_test/os_interface/hw_info_config_tests.h"
|
||||
|
||||
#include "aubstream/product_family.h"
|
||||
#include "platforms.h"
|
||||
#include "product_family.h"
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
#include "shared/test/common/test_macros/test.h"
|
||||
#include "shared/test/unit_test/os_interface/hw_info_config_tests.h"
|
||||
|
||||
#include "aubstream/product_family.h"
|
||||
#include "platforms.h"
|
||||
#include "product_family.h"
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
|
|
|
@ -14,8 +14,8 @@
|
|||
#include "shared/test/common/test_macros/test.h"
|
||||
#include "shared/test/unit_test/os_interface/hw_info_config_tests.h"
|
||||
|
||||
#include "aubstream/product_family.h"
|
||||
#include "platforms.h"
|
||||
#include "product_family.h"
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
|
|
|
@ -18,8 +18,8 @@
|
|||
#include "shared/test/common/test_macros/test.h"
|
||||
#include "shared/test/unit_test/os_interface/hw_info_config_tests.h"
|
||||
|
||||
#include "aubstream/product_family.h"
|
||||
#include "platforms.h"
|
||||
#include "product_family.h"
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
#include "shared/test/common/test_macros/test.h"
|
||||
#include "shared/test/unit_test/os_interface/hw_info_config_tests.h"
|
||||
|
||||
#include "aubstream/product_family.h"
|
||||
#include "platforms.h"
|
||||
#include "product_family.h"
|
||||
|
||||
using namespace NEO;
|
||||
using BdwHwInfo = HwInfoConfigTest;
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
#include "shared/test/common/test_macros/test.h"
|
||||
#include "shared/test/unit_test/os_interface/hw_info_config_tests.h"
|
||||
|
||||
#include "aubstream/product_family.h"
|
||||
#include "platforms.h"
|
||||
#include "product_family.h"
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
#include "shared/test/common/test_macros/test.h"
|
||||
#include "shared/test/unit_test/os_interface/hw_info_config_tests.h"
|
||||
|
||||
#include "aubstream/product_family.h"
|
||||
#include "platforms.h"
|
||||
#include "product_family.h"
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
#include "shared/test/common/test_macros/test.h"
|
||||
#include "shared/test/unit_test/os_interface/hw_info_config_tests.h"
|
||||
|
||||
#include "aubstream/product_family.h"
|
||||
#include "platforms.h"
|
||||
#include "product_family.h"
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
#include "shared/test/common/test_macros/hw_test.h"
|
||||
#include "shared/test/unit_test/os_interface/hw_info_config_tests.h"
|
||||
|
||||
#include "aubstream/product_family.h"
|
||||
#include "platforms.h"
|
||||
#include "product_family.h"
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
#include "shared/test/common/test_macros/test.h"
|
||||
#include "shared/test/unit_test/os_interface/hw_info_config_tests.h"
|
||||
|
||||
#include "aubstream/product_family.h"
|
||||
#include "platforms.h"
|
||||
#include "product_family.h"
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "shared/source/os_interface/linux/drm_wrappers.h"
|
||||
#include "shared/test/common/test_macros/test.h"
|
||||
|
||||
#include "engine_node.h"
|
||||
#include "aubstream/engine_node.h"
|
||||
|
||||
#include <array>
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include "shared/test/common/test_macros/test.h"
|
||||
#include "shared/test/unit_test/os_interface/hw_info_config_tests.h"
|
||||
|
||||
#include "product_family.h"
|
||||
#include "aubstream/product_family.h"
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
#include "shared/test/common/xe_hpc_core/pvc/product_configs_pvc.h"
|
||||
#include "shared/test/unit_test/os_interface/hw_info_config_tests.h"
|
||||
|
||||
#include "product_family.h"
|
||||
#include "aubstream/product_family.h"
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
#include "shared/test/unit_test/fixtures/product_config_fixture.h"
|
||||
#include "shared/test/unit_test/os_interface/hw_info_config_tests.h"
|
||||
|
||||
#include "product_family.h"
|
||||
#include "aubstream/product_family.h"
|
||||
|
||||
using namespace NEO;
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue