Skip to content

Commit b98b51b

Browse files
author
Jaime Arteaga
committed
Move ptr.h to core folder
Change-Id: Icf0db7c767b2b1ea44fccc02b135f0f6c1f78c8f Signed-off-by: Jaime Arteaga <[email protected]>
1 parent e7573af commit b98b51b

File tree

102 files changed

+100
-100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+100
-100
lines changed

core/helpers/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ set(NEO_CORE_HELPERS
88
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
99
${CMAKE_CURRENT_SOURCE_DIR}/basic_math.h
1010
${CMAKE_CURRENT_SOURCE_DIR}/interlocked_max.h
11+
${CMAKE_CURRENT_SOURCE_DIR}/ptr_math.h
1112
${CMAKE_CURRENT_SOURCE_DIR}/vec.h
1213
)
1314

offline_compiler/decoder/binary_decoder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
#include "binary_decoder.h"
99

10+
#include "core/helpers/ptr_math.h"
1011
#include "elf/reader.h"
1112
#include "runtime/helpers/file_io.h"
12-
#include "runtime/helpers/ptr_math.h"
1313

1414
#include "helper.h"
1515

runtime/aub_mem_dump/aub_mem_dump.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
#include "aub_mem_dump.h"
99

10+
#include "core/helpers/ptr_math.h"
1011
#include "runtime/aub/aub_helper.h"
1112
#include "runtime/helpers/debug_helpers.h"
12-
#include "runtime/helpers/ptr_math.h"
1313
#include "runtime/os_interface/debug_settings_manager.h"
1414

1515
namespace AubMemDump {

runtime/aub_mem_dump/aub_mem_dump.inl

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

8+
#include "core/helpers/ptr_math.h"
89
#include "runtime/aub/aub_helper.h"
910
#include "runtime/helpers/debug_helpers.h"
10-
#include "runtime/helpers/ptr_math.h"
1111
#include "runtime/memory_manager/memory_constants.h"
1212

1313
#include "aub_mem_dump.h"

runtime/built_ins/sip.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77

88
#include "runtime/built_ins/sip.h"
99

10+
#include "core/helpers/ptr_math.h"
1011
#include "runtime/device/device.h"
1112
#include "runtime/helpers/debug_helpers.h"
1213
#include "runtime/helpers/hw_helper.h"
13-
#include "runtime/helpers/ptr_math.h"
1414
#include "runtime/helpers/string.h"
1515
#include "runtime/memory_manager/graphics_allocation.h"
1616
#include "runtime/program/program.h"

runtime/command_queue/command_queue.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
#include "runtime/command_queue/command_queue.h"
99

10+
#include "core/helpers/ptr_math.h"
1011
#include "runtime/built_ins/builtins_dispatch_builder.h"
1112
#include "runtime/command_stream/command_stream_receiver.h"
1213
#include "runtime/context/context.h"
@@ -22,7 +23,6 @@
2223
#include "runtime/helpers/kernel_commands.h"
2324
#include "runtime/helpers/mipmap.h"
2425
#include "runtime/helpers/options.h"
25-
#include "runtime/helpers/ptr_math.h"
2626
#include "runtime/helpers/queue_helpers.h"
2727
#include "runtime/helpers/string.h"
2828
#include "runtime/helpers/surface_formats.h"

runtime/command_queue/local_id_gen.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
#pragma once
99

10-
#include "runtime/helpers/ptr_math.h"
10+
#include "core/helpers/ptr_math.h"
1111

1212
#include <algorithm>
1313
#include <array>

runtime/command_stream/aub_command_stream_receiver_hw_base.inl

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

8+
#include "core/helpers/ptr_math.h"
89
#include "runtime/aub/aub_helper.h"
910
#include "runtime/aub_mem_dump/aub_alloc_dump.h"
1011
#include "runtime/aub_mem_dump/aub_alloc_dump.inl"
@@ -17,7 +18,6 @@
1718
#include "runtime/helpers/hardware_context_controller.h"
1819
#include "runtime/helpers/hash.h"
1920
#include "runtime/helpers/neo_driver_version.h"
20-
#include "runtime/helpers/ptr_math.h"
2121
#include "runtime/helpers/string.h"
2222
#include "runtime/memory_manager/graphics_allocation.h"
2323
#include "runtime/memory_manager/memory_banks.h"

runtime/command_stream/command_stream_receiver_hw_base.inl

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

8+
#include "core/helpers/ptr_math.h"
89
#include "runtime/command_queue/gpgpu_walker.h"
910
#include "runtime/command_stream/command_stream_receiver_hw.h"
1011
#include "runtime/command_stream/experimental_command_buffer.h"
@@ -21,7 +22,6 @@
2122
#include "runtime/helpers/hw_helper.h"
2223
#include "runtime/helpers/options.h"
2324
#include "runtime/helpers/preamble.h"
24-
#include "runtime/helpers/ptr_math.h"
2525
#include "runtime/helpers/state_base_address.h"
2626
#include "runtime/helpers/timestamp_packet.h"
2727
#include "runtime/indirect_heap/indirect_heap.h"

0 commit comments

Comments
 (0)