Skip to content

Commit 7b1d19e

Browse files
committed
Moved header with engine node definitions
Change-Id: Iaa78bb0584589e354b1bb469b729844121decb8f
1 parent 7a4ecd1 commit 7b1d19e

File tree

15 files changed

+13
-13
lines changed

15 files changed

+13
-13
lines changed

runtime/command_stream/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ set(RUNTIME_SRCS_COMMAND_STREAM
2424
${CMAKE_CURRENT_SOURCE_DIR}/create_command_stream_impl.h
2525
${CMAKE_CURRENT_SOURCE_DIR}/csr_definitions.h
2626
${CMAKE_CURRENT_SOURCE_DIR}/definitions${BRANCH_DIR_SUFFIX}/command_stream_receiver_simulated_hw.h
27+
${CMAKE_CURRENT_SOURCE_DIR}/definitions${BRANCH_DIR_SUFFIX}/engine_node.h
2728
${CMAKE_CURRENT_SOURCE_DIR}/command_stream_receiver_simulated_common_hw.h
2829
${CMAKE_CURRENT_SOURCE_DIR}/device_command_stream.h
2930
${CMAKE_CURRENT_SOURCE_DIR}/experimental_command_buffer.cpp
File renamed without changes.

runtime/device/device.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
*/
77

88
#pragma once
9+
#include "engine_node.h"
910
#include "runtime/api/cl_types.h"
1011
#include "runtime/device/device_info_map.h"
1112
#include "runtime/execution_environment/execution_environment.h"
1213
#include "runtime/helpers/base_object.h"
1314
#include "runtime/helpers/hw_info.h"
14-
#include "runtime/helpers/engine_node.h"
1515
#include "runtime/memory_manager/memory_constants.h"
1616
#include "runtime/os_interface/performance_counters.h"
1717
#include <vector>

runtime/gen10/hw_info_cnl.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
*
66
*/
77

8+
#include "engine_node.h"
89
#include "hw_cmds.h"
910
#include "hw_info.h"
1011
#include "runtime/aub_mem_dump/aub_services.h"
11-
#include "runtime/helpers/engine_node.h"
1212
#include "runtime/memory_manager/memory_constants.h"
1313

1414
namespace OCLRT {

runtime/gen8/hw_info_bdw.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
*
66
*/
77

8+
#include "engine_node.h"
89
#include "hw_cmds.h"
910
#include "hw_info.h"
1011
#include "runtime/aub_mem_dump/aub_services.h"
11-
#include "runtime/helpers/engine_node.h"
1212
#include "runtime/memory_manager/memory_constants.h"
1313

1414
namespace OCLRT {

runtime/gen9/hw_info_bxt.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
*
66
*/
77

8+
#include "engine_node.h"
89
#include "hw_cmds.h"
910
#include "hw_info_bxt.h"
1011
#include "runtime/aub_mem_dump/aub_services.h"
11-
#include "runtime/helpers/engine_node.h"
1212
#include "runtime/memory_manager/memory_constants.h"
1313

1414
namespace OCLRT {

runtime/gen9/hw_info_cfl.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
*
66
*/
77

8+
#include "engine_node.h"
89
#include "hw_cmds.h"
910
#include "hw_info_cfl.h"
1011
#include "runtime/aub_mem_dump/aub_services.h"
11-
#include "runtime/helpers/engine_node.h"
1212
#include "runtime/memory_manager/memory_constants.h"
1313

1414
namespace OCLRT {

runtime/gen9/hw_info_glk.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
*
66
*/
77

8+
#include "engine_node.h"
89
#include "hw_cmds.h"
910
#include "hw_info_glk.h"
1011
#include "runtime/aub_mem_dump/aub_services.h"
11-
#include "runtime/helpers/engine_node.h"
1212
#include "runtime/memory_manager/memory_constants.h"
1313

1414
namespace OCLRT {

runtime/gen9/hw_info_kbl.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
*
66
*/
77

8+
#include "engine_node.h"
89
#include "hw_cmds.h"
910
#include "hw_info_kbl.h"
1011
#include "runtime/aub_mem_dump/aub_services.h"
11-
#include "runtime/helpers/engine_node.h"
1212
#include "runtime/memory_manager/memory_constants.h"
1313

1414
namespace OCLRT {

runtime/gen9/hw_info_skl.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
*
66
*/
77

8+
#include "engine_node.h"
89
#include "hw_cmds.h"
910
#include "hw_info_skl.h"
1011
#include "runtime/aub_mem_dump/aub_services.h"
11-
#include "runtime/helpers/engine_node.h"
1212
#include "runtime/memory_manager/memory_constants.h"
1313

1414
namespace OCLRT {

0 commit comments

Comments
 (0)