Move basic_math.h and vec.h to core directory

Change-Id: I143b7af450ff48d4958b4bc7137b393a2dc0eb64
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2019-05-13 12:53:40 +02:00
committed by sys_ocldev
parent 8f17c70e9e
commit b8fb5e683b
49 changed files with 69 additions and 48 deletions

View File

@@ -5,7 +5,7 @@
*
*/
#include "runtime/helpers/basic_math.h"
#include "core/helpers/basic_math.h"
#include "runtime/helpers/hw_info.h"
#include "runtime/helpers/options.h"
#include "runtime/os_interface/debug_settings_manager.h"

View File

@@ -5,11 +5,11 @@
*
*/
#include "core/helpers/basic_math.h"
#include "runtime/aub/aub_helper.h"
#include "runtime/aub_mem_dump/aub_mem_dump.h"
#include "runtime/aub_mem_dump/page_table_entry_bits.h"
#include "runtime/command_stream/aub_command_stream_receiver_hw.h"
#include "runtime/helpers/basic_math.h"
#include "runtime/helpers/device_helpers.h"
#include "test.h"
#include "unit_tests/fixtures/device_fixture.h"

View File

@@ -5,10 +5,10 @@
*
*/
#include "core/helpers/basic_math.h"
#include "runtime/command_queue/command_queue_hw.h"
#include "runtime/command_stream/command_stream_receiver.h"
#include "runtime/event/event.h"
#include "runtime/helpers/basic_math.h"
#include "runtime/helpers/kernel_commands.h"
#include "runtime/helpers/options.h"
#include "runtime/helpers/timestamp_packet.h"

View File

@@ -5,8 +5,8 @@
*
*/
#include "core/helpers/basic_math.h"
#include "runtime/gmm_helper/gmm.h"
#include "runtime/helpers/basic_math.h"
#include "test.h"
#include "unit_tests/command_queue/enqueue_read_buffer_fixture.h"

View File

@@ -5,9 +5,9 @@
*
*/
#include "core/helpers/basic_math.h"
#include "runtime/command_stream/command_stream_receiver.h"
#include "runtime/device/driver_info.h"
#include "runtime/helpers/basic_math.h"
#include "runtime/helpers/hw_info.h"
#include "runtime/helpers/options.h"
#include "runtime/memory_manager/os_agnostic_memory_manager.h"

View File

@@ -5,7 +5,7 @@
*
*/
#include "runtime/helpers/basic_math.h"
#include "core/helpers/basic_math.h"
#include "runtime/helpers/hw_info.h"
#include "runtime/helpers/options.h"
#include "runtime/memory_manager/os_agnostic_memory_manager.h"

View File

@@ -5,6 +5,7 @@
*
*/
#include "core/helpers/basic_math.h"
#include "runtime/context/context.h"
#include "runtime/device/device.h"
#include "runtime/gtpin/gtpin_defs.h"
@@ -12,7 +13,6 @@
#include "runtime/gtpin/gtpin_hw_helper.h"
#include "runtime/gtpin/gtpin_init.h"
#include "runtime/gtpin/gtpin_notify.h"
#include "runtime/helpers/basic_math.h"
#include "runtime/helpers/file_io.h"
#include "runtime/helpers/hash.h"
#include "runtime/helpers/options.h"

View File

@@ -5,7 +5,7 @@
*
*/
#include "runtime/helpers/basic_math.h"
#include "core/helpers/basic_math.h"
#include "gtest/gtest.h"

View File

@@ -7,10 +7,10 @@
#include "unit_tests/helpers/kernel_commands_tests.h"
#include "core/helpers/basic_math.h"
#include "runtime/api/api.h"
#include "runtime/built_ins/builtins_dispatch_builder.h"
#include "runtime/command_queue/command_queue_hw.h"
#include "runtime/helpers/basic_math.h"
#include "runtime/helpers/kernel_commands.h"
#include "runtime/memory_manager/svm_memory_manager.h"
#include "unit_tests/fixtures/execution_model_kernel_fixture.h"

View File

@@ -5,7 +5,7 @@
*
*/
#include "runtime/helpers/basic_math.h"
#include "core/helpers/basic_math.h"
#include "runtime/helpers/ptr_math.h"
#include "runtime/kernel/kernel.h"
#include "test.h"

View File

@@ -5,9 +5,9 @@
*
*/
#include "core/helpers/basic_math.h"
#include "runtime/execution_environment/execution_environment.h"
#include "runtime/helpers/aligned_memory.h"
#include "runtime/helpers/basic_math.h"
#include "runtime/memory_manager/memory_manager.h"
#include "runtime/os_interface/linux/allocator_helper.h"
#include "runtime/os_interface/linux/os_interface.h"

View File

@@ -5,10 +5,10 @@
*
*/
#include "core/helpers/basic_math.h"
#include "runtime/gmm_helper/gmm.h"
#include "runtime/gmm_helper/gmm_helper.h"
#include "runtime/helpers/aligned_memory.h"
#include "runtime/helpers/basic_math.h"
#include "runtime/helpers/ptr_math.h"
#include "runtime/helpers/surface_formats.h"
#include "runtime/kernel/kernel.h"

View File

@@ -5,7 +5,7 @@
*
*/
#include "runtime/helpers/basic_math.h"
#include "core/helpers/basic_math.h"
#include "runtime/memory_manager/local_memory_usage.h"
#include "third_party/gtest/gtest/gtest.h"

View File

@@ -5,10 +5,9 @@
*
*/
#include "runtime/utilities/vec.h"
#include "test.h"
#include "core/helpers/vec.h"
using namespace NEO;
#include "gtest/gtest.h"
TEST(VecTest, operators) {
Vec3<size_t> v0(nullptr);