From 6566eb31937224d3285e5e5177592668fbb95fac Mon Sep 17 00:00:00 2001 From: Daria Hinz Date: Thu, 22 Aug 2019 16:51:02 +0200 Subject: [PATCH] Move Linear Stream to core folder Change-Id: I962ebd6e9075fcab9d7b6211524093109e62d382 Signed-off-by: Daria Hinz --- core/command_stream/CMakeLists.txt | 2 ++ {runtime => core}/command_stream/linear_stream.cpp | 2 +- {runtime => core}/command_stream/linear_stream.h | 0 runtime/command_queue/gpgpu_walker.h | 2 +- runtime/command_stream/CMakeLists.txt | 2 -- runtime/command_stream/command_stream_receiver.h | 2 +- runtime/command_stream/command_stream_receiver_hw_base.inl | 2 +- runtime/command_stream/experimental_command_buffer.cpp | 2 +- runtime/command_stream/experimental_command_buffer.inl | 2 +- runtime/command_stream/preemption.h | 2 +- runtime/command_stream/submissions_aggregator.h | 2 +- runtime/device_queue/device_queue_hw.h | 2 +- runtime/helpers/gmm_callbacks.inl | 2 +- runtime/helpers/hw_helper.h | 2 +- runtime/helpers/per_thread_data.cpp | 2 +- runtime/helpers/preamble_base.inl | 2 +- runtime/helpers/task_information.cpp | 2 +- runtime/helpers/task_information.h | 2 +- runtime/helpers/timestamp_packet.cpp | 2 +- runtime/indirect_heap/indirect_heap.h | 2 +- runtime/os_interface/linux/drm_command_stream.inl | 2 +- runtime/os_interface/windows/wddm_device_command_stream.inl | 2 +- .../command_stream_receiver_flush_task_gmock_tests.cpp | 2 +- unit_tests/command_stream/command_stream_receiver_hw_tests.cpp | 2 +- unit_tests/command_stream/command_stream_receiver_tests.cpp | 2 +- unit_tests/command_stream/linear_stream_fixture.h | 2 +- unit_tests/command_stream/linear_stream_tests.cpp | 2 +- unit_tests/fixtures/ult_command_stream_receiver_fixture.h | 2 +- unit_tests/gen11/command_stream_receiver_hw_tests_gen11.cpp | 2 +- unit_tests/gen8/command_stream_receiver_hw_tests_gen8.cpp | 2 +- unit_tests/gen9/command_stream_receiver_hw_tests_gen9.cpp | 2 +- unit_tests/helpers/hw_parse.h | 2 +- unit_tests/helpers/per_thread_data_tests.cpp | 2 +- unit_tests/os_interface/linux/device_command_stream_tests.cpp | 2 +- unit_tests/os_interface/linux/drm_memory_manager_tests.cpp | 2 +- unit_tests/os_interface/windows/device_command_stream_tests.cpp | 2 +- 36 files changed, 35 insertions(+), 35 deletions(-) rename {runtime => core}/command_stream/linear_stream.cpp (94%) rename {runtime => core}/command_stream/linear_stream.h (100%) diff --git a/core/command_stream/CMakeLists.txt b/core/command_stream/CMakeLists.txt index 4341c3a730..b7da9e0741 100644 --- a/core/command_stream/CMakeLists.txt +++ b/core/command_stream/CMakeLists.txt @@ -6,6 +6,8 @@ set(NEO_CORE_COMMAND_STREAM ${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt + ${CMAKE_CURRENT_SOURCE_DIR}/linear_stream.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/linear_stream.h ${CMAKE_CURRENT_SOURCE_DIR}/preemption_mode.h ) diff --git a/runtime/command_stream/linear_stream.cpp b/core/command_stream/linear_stream.cpp similarity index 94% rename from runtime/command_stream/linear_stream.cpp rename to core/command_stream/linear_stream.cpp index 935dd3a0c6..b9f9c327b5 100644 --- a/runtime/command_stream/linear_stream.cpp +++ b/core/command_stream/linear_stream.cpp @@ -5,7 +5,7 @@ * */ -#include "runtime/command_stream/linear_stream.h" +#include "core/command_stream/linear_stream.h" #include "runtime/memory_manager/graphics_allocation.h" diff --git a/runtime/command_stream/linear_stream.h b/core/command_stream/linear_stream.h similarity index 100% rename from runtime/command_stream/linear_stream.h rename to core/command_stream/linear_stream.h diff --git a/runtime/command_queue/gpgpu_walker.h b/runtime/command_queue/gpgpu_walker.h index 7e1c885bf9..9ef34d6f3b 100644 --- a/runtime/command_queue/gpgpu_walker.h +++ b/runtime/command_queue/gpgpu_walker.h @@ -7,11 +7,11 @@ #pragma once +#include "core/command_stream/linear_stream.h" #include "core/helpers/register_offsets.h" #include "core/helpers/vec.h" #include "runtime/built_ins/built_ins.h" #include "runtime/command_queue/command_queue.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/command_stream/preemption.h" #include "runtime/context/context.h" #include "runtime/device_queue/device_queue_hw.h" diff --git a/runtime/command_stream/CMakeLists.txt b/runtime/command_stream/CMakeLists.txt index ee0e229d6a..685c44be00 100644 --- a/runtime/command_stream/CMakeLists.txt +++ b/runtime/command_stream/CMakeLists.txt @@ -32,8 +32,6 @@ set(RUNTIME_SRCS_COMMAND_STREAM ${CMAKE_CURRENT_SOURCE_DIR}/experimental_command_buffer.cpp ${CMAKE_CURRENT_SOURCE_DIR}/experimental_command_buffer.h ${CMAKE_CURRENT_SOURCE_DIR}/experimental_command_buffer.inl - ${CMAKE_CURRENT_SOURCE_DIR}/linear_stream.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/linear_stream.h ${CMAKE_CURRENT_SOURCE_DIR}/preemption.cpp ${CMAKE_CURRENT_SOURCE_DIR}/preemption.h ${CMAKE_CURRENT_SOURCE_DIR}/preemption.inl diff --git a/runtime/command_stream/command_stream_receiver.h b/runtime/command_stream/command_stream_receiver.h index 692ed42c7f..8b7060dfb6 100644 --- a/runtime/command_stream/command_stream_receiver.h +++ b/runtime/command_stream/command_stream_receiver.h @@ -6,10 +6,10 @@ */ #pragma once +#include "core/command_stream/linear_stream.h" #include "core/helpers/aligned_memory.h" #include "runtime/command_stream/aub_subcapture.h" #include "runtime/command_stream/csr_definitions.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/command_stream/submissions_aggregator.h" #include "runtime/command_stream/thread_arbitration_policy.h" #include "runtime/helpers/address_patch.h" diff --git a/runtime/command_stream/command_stream_receiver_hw_base.inl b/runtime/command_stream/command_stream_receiver_hw_base.inl index ea94ada8f2..211736dd60 100644 --- a/runtime/command_stream/command_stream_receiver_hw_base.inl +++ b/runtime/command_stream/command_stream_receiver_hw_base.inl @@ -5,11 +5,11 @@ * */ +#include "core/command_stream/linear_stream.h" #include "core/helpers/ptr_math.h" #include "runtime/command_queue/gpgpu_walker.h" #include "runtime/command_stream/command_stream_receiver_hw.h" #include "runtime/command_stream/experimental_command_buffer.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/command_stream/preemption.h" #include "runtime/command_stream/scratch_space_controller_base.h" #include "runtime/device/device.h" diff --git a/runtime/command_stream/experimental_command_buffer.cpp b/runtime/command_stream/experimental_command_buffer.cpp index 7a5bceb825..bf105ef0da 100644 --- a/runtime/command_stream/experimental_command_buffer.cpp +++ b/runtime/command_stream/experimental_command_buffer.cpp @@ -7,8 +7,8 @@ #include "runtime/command_stream/experimental_command_buffer.h" +#include "core/command_stream/linear_stream.h" #include "runtime/command_stream/command_stream_receiver.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/memory_manager/internal_allocation_storage.h" #include "runtime/memory_manager/memory_constants.h" #include "runtime/memory_manager/memory_manager.h" diff --git a/runtime/command_stream/experimental_command_buffer.inl b/runtime/command_stream/experimental_command_buffer.inl index 617e21e282..19939227dd 100644 --- a/runtime/command_stream/experimental_command_buffer.inl +++ b/runtime/command_stream/experimental_command_buffer.inl @@ -5,9 +5,9 @@ * */ +#include "core/command_stream/linear_stream.h" #include "runtime/command_stream/command_stream_receiver_hw.h" #include "runtime/command_stream/experimental_command_buffer.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/helpers/hw_helper.h" #include "runtime/memory_manager/graphics_allocation.h" diff --git a/runtime/command_stream/preemption.h b/runtime/command_stream/preemption.h index 0001ed90b5..397dc65baa 100644 --- a/runtime/command_stream/preemption.h +++ b/runtime/command_stream/preemption.h @@ -6,8 +6,8 @@ */ #pragma once +#include "core/command_stream/linear_stream.h" #include "core/command_stream/preemption_mode.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/helpers/hw_info.h" #include "sku_info.h" diff --git a/runtime/command_stream/submissions_aggregator.h b/runtime/command_stream/submissions_aggregator.h index 7c669bd9c3..6b82322185 100644 --- a/runtime/command_stream/submissions_aggregator.h +++ b/runtime/command_stream/submissions_aggregator.h @@ -6,7 +6,7 @@ */ #pragma once -#include "runtime/command_stream/linear_stream.h" +#include "core/command_stream/linear_stream.h" #include "runtime/helpers/properties_helper.h" #include "runtime/memory_manager/residency_container.h" #include "runtime/utilities/idlist.h" diff --git a/runtime/device_queue/device_queue_hw.h b/runtime/device_queue/device_queue_hw.h index 737772f1fc..d5eb665f1e 100644 --- a/runtime/device_queue/device_queue_hw.h +++ b/runtime/device_queue/device_queue_hw.h @@ -6,8 +6,8 @@ */ #pragma once +#include "core/command_stream/linear_stream.h" #include "core/helpers/ptr_math.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/device_queue/device_queue.h" #include "runtime/indirect_heap/indirect_heap.h" #include "runtime/kernel/kernel.h" diff --git a/runtime/helpers/gmm_callbacks.inl b/runtime/helpers/gmm_callbacks.inl index ca97a9850a..622964b7a8 100644 --- a/runtime/helpers/gmm_callbacks.inl +++ b/runtime/helpers/gmm_callbacks.inl @@ -5,7 +5,7 @@ * */ -#include "runtime/command_stream/linear_stream.h" +#include "core/command_stream/linear_stream.h" #include "runtime/helpers/gmm_callbacks.h" #include "runtime/helpers/hw_helper.h" diff --git a/runtime/helpers/hw_helper.h b/runtime/helpers/hw_helper.h index 19462d5c8d..fd8b498d6d 100644 --- a/runtime/helpers/hw_helper.h +++ b/runtime/helpers/hw_helper.h @@ -6,8 +6,8 @@ */ #pragma once +#include "core/command_stream/linear_stream.h" #include "runtime/built_ins/sip.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/gen_common/aub_mapper.h" #include "runtime/gen_common/hw_cmds.h" #include "runtime/mem_obj/buffer.h" diff --git a/runtime/helpers/per_thread_data.cpp b/runtime/helpers/per_thread_data.cpp index be74dc7af0..0b99620b4f 100644 --- a/runtime/helpers/per_thread_data.cpp +++ b/runtime/helpers/per_thread_data.cpp @@ -7,7 +7,7 @@ #include "runtime/helpers/per_thread_data.h" -#include "runtime/command_stream/linear_stream.h" +#include "core/command_stream/linear_stream.h" #include "runtime/helpers/debug_helpers.h" #include diff --git a/runtime/helpers/preamble_base.inl b/runtime/helpers/preamble_base.inl index e84ffc5ffb..71f2c77636 100644 --- a/runtime/helpers/preamble_base.inl +++ b/runtime/helpers/preamble_base.inl @@ -5,8 +5,8 @@ * */ +#include "core/command_stream/linear_stream.h" #include "core/helpers/aligned_memory.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/command_stream/preemption.h" #include "runtime/device/device.h" #include "runtime/helpers/preamble.h" diff --git a/runtime/helpers/task_information.cpp b/runtime/helpers/task_information.cpp index 8366e57ac4..fae103a09f 100644 --- a/runtime/helpers/task_information.cpp +++ b/runtime/helpers/task_information.cpp @@ -7,13 +7,13 @@ #include "runtime/helpers/task_information.h" +#include "core/command_stream/linear_stream.h" #include "core/helpers/aligned_memory.h" #include "core/helpers/string.h" #include "runtime/built_ins/builtins_dispatch_builder.h" #include "runtime/command_queue/command_queue.h" #include "runtime/command_queue/enqueue_common.h" #include "runtime/command_stream/command_stream_receiver.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/device/device.h" #include "runtime/device_queue/device_queue.h" #include "runtime/gtpin/gtpin_notify.h" diff --git a/runtime/helpers/task_information.h b/runtime/helpers/task_information.h index 57be2156ac..261137904d 100644 --- a/runtime/helpers/task_information.h +++ b/runtime/helpers/task_information.h @@ -6,7 +6,7 @@ */ #pragma once -#include "runtime/command_stream/linear_stream.h" +#include "core/command_stream/linear_stream.h" #include "runtime/helpers/completion_stamp.h" #include "runtime/helpers/hw_info.h" #include "runtime/helpers/properties_helper.h" diff --git a/runtime/helpers/timestamp_packet.cpp b/runtime/helpers/timestamp_packet.cpp index 0166de597f..12a4b8b71c 100644 --- a/runtime/helpers/timestamp_packet.cpp +++ b/runtime/helpers/timestamp_packet.cpp @@ -7,8 +7,8 @@ #include "runtime/helpers/timestamp_packet.h" +#include "core/command_stream/linear_stream.h" #include "runtime/command_stream/command_stream_receiver.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/event/event.h" #include "runtime/helpers/hardware_commands_helper.h" #include "runtime/utilities/tag_allocator.h" diff --git a/runtime/indirect_heap/indirect_heap.h b/runtime/indirect_heap/indirect_heap.h index e948fed4e3..093ca4d9df 100644 --- a/runtime/indirect_heap/indirect_heap.h +++ b/runtime/indirect_heap/indirect_heap.h @@ -6,10 +6,10 @@ */ #pragma once +#include "core/command_stream/linear_stream.h" #include "core/helpers/aligned_memory.h" #include "core/helpers/basic_math.h" #include "core/helpers/ptr_math.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/memory_manager/graphics_allocation.h" #include "runtime/memory_manager/memory_constants.h" diff --git a/runtime/os_interface/linux/drm_command_stream.inl b/runtime/os_interface/linux/drm_command_stream.inl index 976ca37982..a47820bd86 100644 --- a/runtime/os_interface/linux/drm_command_stream.inl +++ b/runtime/os_interface/linux/drm_command_stream.inl @@ -5,8 +5,8 @@ * */ +#include "core/command_stream/linear_stream.h" #include "core/helpers/aligned_memory.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/execution_environment/execution_environment.h" #include "runtime/gmm_helper/gmm_helper.h" #include "runtime/helpers/preamble.h" diff --git a/runtime/os_interface/windows/wddm_device_command_stream.inl b/runtime/os_interface/windows/wddm_device_command_stream.inl index f409b1c015..0f4af04fc8 100644 --- a/runtime/os_interface/windows/wddm_device_command_stream.inl +++ b/runtime/os_interface/windows/wddm_device_command_stream.inl @@ -9,8 +9,8 @@ // Current order must be preserved due to two versions of igfxfmid.h #pragma warning(push) #pragma warning(disable : 4005) +#include "core/command_stream/linear_stream.h" #include "core/helpers/ptr_math.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/command_stream/preemption.h" #include "runtime/device/device.h" #include "runtime/gmm_helper/page_table_mngr.h" diff --git a/unit_tests/command_stream/command_stream_receiver_flush_task_gmock_tests.cpp b/unit_tests/command_stream/command_stream_receiver_flush_task_gmock_tests.cpp index cb5f3c0bf4..eb9aff7da1 100644 --- a/unit_tests/command_stream/command_stream_receiver_flush_task_gmock_tests.cpp +++ b/unit_tests/command_stream/command_stream_receiver_flush_task_gmock_tests.cpp @@ -5,6 +5,7 @@ * */ +#include "core/command_stream/linear_stream.h" #include "core/helpers/aligned_memory.h" #include "core/helpers/ptr_math.h" #include "core/unit_tests/helpers/debug_manager_state_restore.h" @@ -12,7 +13,6 @@ #include "runtime/command_queue/command_queue_hw.h" #include "runtime/command_queue/gpgpu_walker.h" #include "runtime/command_stream/command_stream_receiver.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/command_stream/preemption.h" #include "runtime/command_stream/scratch_space_controller.h" #include "runtime/event/user_event.h" diff --git a/unit_tests/command_stream/command_stream_receiver_hw_tests.cpp b/unit_tests/command_stream/command_stream_receiver_hw_tests.cpp index 8a1f78fe99..42542d2b32 100644 --- a/unit_tests/command_stream/command_stream_receiver_hw_tests.cpp +++ b/unit_tests/command_stream/command_stream_receiver_hw_tests.cpp @@ -5,6 +5,7 @@ * */ +#include "core/command_stream/linear_stream.h" #include "core/helpers/aligned_memory.h" #include "core/helpers/ptr_math.h" #include "core/unit_tests/helpers/debug_manager_state_restore.h" @@ -12,7 +13,6 @@ #include "runtime/command_queue/command_queue_hw.h" #include "runtime/command_queue/gpgpu_walker.h" #include "runtime/command_stream/command_stream_receiver.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/command_stream/preemption.h" #include "runtime/command_stream/scratch_space_controller.h" #include "runtime/command_stream/scratch_space_controller_base.h" diff --git a/unit_tests/command_stream/command_stream_receiver_tests.cpp b/unit_tests/command_stream/command_stream_receiver_tests.cpp index 84925d46a3..3e4d91c0cf 100644 --- a/unit_tests/command_stream/command_stream_receiver_tests.cpp +++ b/unit_tests/command_stream/command_stream_receiver_tests.cpp @@ -5,10 +5,10 @@ * */ +#include "core/command_stream/linear_stream.h" #include "core/unit_tests/helpers/debug_manager_state_restore.h" #include "runtime/aub_mem_dump/aub_services.h" #include "runtime/command_stream/command_stream_receiver.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/command_stream/preemption.h" #include "runtime/helpers/cache_policy.h" #include "runtime/helpers/timestamp_packet.h" diff --git a/unit_tests/command_stream/linear_stream_fixture.h b/unit_tests/command_stream/linear_stream_fixture.h index 52d7cb05d9..bf46f59adb 100644 --- a/unit_tests/command_stream/linear_stream_fixture.h +++ b/unit_tests/command_stream/linear_stream_fixture.h @@ -6,7 +6,7 @@ */ #pragma once -#include "runtime/command_stream/linear_stream.h" +#include "core/command_stream/linear_stream.h" #include "test.h" #include "unit_tests/mocks/mock_graphics_allocation.h" diff --git a/unit_tests/command_stream/linear_stream_tests.cpp b/unit_tests/command_stream/linear_stream_tests.cpp index f3ca0806ea..4022ddf3c1 100644 --- a/unit_tests/command_stream/linear_stream_tests.cpp +++ b/unit_tests/command_stream/linear_stream_tests.cpp @@ -5,7 +5,7 @@ * */ -#include "runtime/command_stream/linear_stream.h" +#include "core/command_stream/linear_stream.h" #include "runtime/memory_manager/graphics_allocation.h" #include "unit_tests/command_stream/linear_stream_fixture.h" #include "unit_tests/mocks/mock_graphics_allocation.h" diff --git a/unit_tests/fixtures/ult_command_stream_receiver_fixture.h b/unit_tests/fixtures/ult_command_stream_receiver_fixture.h index fb3045f2e3..d4d3f117d5 100644 --- a/unit_tests/fixtures/ult_command_stream_receiver_fixture.h +++ b/unit_tests/fixtures/ult_command_stream_receiver_fixture.h @@ -6,8 +6,8 @@ */ #pragma once +#include "core/command_stream/linear_stream.h" #include "runtime/command_stream/command_stream_receiver.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/command_stream/preemption.h" #include "runtime/gmm_helper/gmm_helper.h" #include "runtime/helpers/cache_policy.h" diff --git a/unit_tests/gen11/command_stream_receiver_hw_tests_gen11.cpp b/unit_tests/gen11/command_stream_receiver_hw_tests_gen11.cpp index dd141a7c7b..ab0845708a 100644 --- a/unit_tests/gen11/command_stream_receiver_hw_tests_gen11.cpp +++ b/unit_tests/gen11/command_stream_receiver_hw_tests_gen11.cpp @@ -5,9 +5,9 @@ * */ +#include "core/command_stream/linear_stream.h" #include "runtime/command_queue/command_queue_hw.h" #include "runtime/command_stream/command_stream_receiver.h" -#include "runtime/command_stream/linear_stream.h" #include "test.h" #include "unit_tests/fixtures/device_fixture.h" #include "unit_tests/helpers/hw_parse.h" diff --git a/unit_tests/gen8/command_stream_receiver_hw_tests_gen8.cpp b/unit_tests/gen8/command_stream_receiver_hw_tests_gen8.cpp index ba64237ebb..d454035b35 100644 --- a/unit_tests/gen8/command_stream_receiver_hw_tests_gen8.cpp +++ b/unit_tests/gen8/command_stream_receiver_hw_tests_gen8.cpp @@ -5,9 +5,9 @@ * */ +#include "core/command_stream/linear_stream.h" #include "runtime/command_queue/command_queue_hw.h" #include "runtime/command_stream/command_stream_receiver.h" -#include "runtime/command_stream/linear_stream.h" #include "test.h" #include "unit_tests/fixtures/device_fixture.h" #include "unit_tests/helpers/hw_parse.h" diff --git a/unit_tests/gen9/command_stream_receiver_hw_tests_gen9.cpp b/unit_tests/gen9/command_stream_receiver_hw_tests_gen9.cpp index b9527cc219..21e3597d22 100644 --- a/unit_tests/gen9/command_stream_receiver_hw_tests_gen9.cpp +++ b/unit_tests/gen9/command_stream_receiver_hw_tests_gen9.cpp @@ -5,10 +5,10 @@ * */ +#include "core/command_stream/linear_stream.h" #include "runtime/built_ins/built_ins.h" #include "runtime/command_queue/command_queue_hw.h" #include "runtime/command_stream/command_stream_receiver.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/event/user_event.h" #include "test.h" #include "unit_tests/fixtures/device_fixture.h" diff --git a/unit_tests/helpers/hw_parse.h b/unit_tests/helpers/hw_parse.h index 2557243cc9..492cb5fac3 100644 --- a/unit_tests/helpers/hw_parse.h +++ b/unit_tests/helpers/hw_parse.h @@ -6,10 +6,10 @@ */ #pragma once +#include "core/command_stream/linear_stream.h" #include "core/helpers/ptr_math.h" #include "runtime/command_queue/command_queue.h" #include "runtime/command_stream/command_stream_receiver.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/helpers/pipeline_select_helper.h" #include "runtime/kernel/kernel.h" #include "unit_tests/gen_common/gen_cmd_parse.h" diff --git a/unit_tests/helpers/per_thread_data_tests.cpp b/unit_tests/helpers/per_thread_data_tests.cpp index 0851c82994..ef78a9bdd2 100644 --- a/unit_tests/helpers/per_thread_data_tests.cpp +++ b/unit_tests/helpers/per_thread_data_tests.cpp @@ -5,9 +5,9 @@ * */ +#include "core/command_stream/linear_stream.h" #include "core/helpers/aligned_memory.h" #include "runtime/command_queue/local_id_gen.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/helpers/per_thread_data.h" #include "runtime/program/kernel_info.h" #include "test.h" diff --git a/unit_tests/os_interface/linux/device_command_stream_tests.cpp b/unit_tests/os_interface/linux/device_command_stream_tests.cpp index ab934dd495..022e33b155 100644 --- a/unit_tests/os_interface/linux/device_command_stream_tests.cpp +++ b/unit_tests/os_interface/linux/device_command_stream_tests.cpp @@ -5,10 +5,10 @@ * */ +#include "core/command_stream/linear_stream.h" #include "runtime/command_stream/aub_command_stream_receiver.h" #include "runtime/command_stream/command_stream_receiver.h" #include "runtime/command_stream/device_command_stream.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/os_interface/linux/device_command_stream.inl" #include "runtime/os_interface/linux/drm_command_stream.h" #include "runtime/os_interface/linux/os_interface.h" diff --git a/unit_tests/os_interface/linux/drm_memory_manager_tests.cpp b/unit_tests/os_interface/linux/drm_memory_manager_tests.cpp index 4e48d2a871..c85f9d37e4 100644 --- a/unit_tests/os_interface/linux/drm_memory_manager_tests.cpp +++ b/unit_tests/os_interface/linux/drm_memory_manager_tests.cpp @@ -7,11 +7,11 @@ #include "drm_memory_manager_tests.h" +#include "core/command_stream/linear_stream.h" #include "core/helpers/aligned_memory.h" #include "core/helpers/ptr_math.h" #include "core/unit_tests/helpers/debug_manager_state_restore.h" #include "runtime/command_stream/device_command_stream.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/command_stream/preemption.h" #include "runtime/event/event.h" #include "runtime/helpers/timestamp_packet.h" diff --git a/unit_tests/os_interface/windows/device_command_stream_tests.cpp b/unit_tests/os_interface/windows/device_command_stream_tests.cpp index 4db3cef31d..fce93f1f62 100644 --- a/unit_tests/os_interface/windows/device_command_stream_tests.cpp +++ b/unit_tests/os_interface/windows/device_command_stream_tests.cpp @@ -5,12 +5,12 @@ * */ +#include "core/command_stream/linear_stream.h" #include "core/unit_tests/helpers/debug_manager_state_restore.h" #include "runtime/command_stream/aub_command_stream_receiver.h" #include "runtime/command_stream/command_stream_receiver.h" #include "runtime/command_stream/command_stream_receiver_with_aub_dump.h" #include "runtime/command_stream/device_command_stream.h" -#include "runtime/command_stream/linear_stream.h" #include "runtime/command_stream/preemption.h" #include "runtime/gen_common/hw_cmds.h" #include "runtime/helpers/built_ins_helper.h"