mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
Cleanup headers in print_formatter and move to core
Change-Id: I2ef5498927b02e0371dc4e484f94b00b4f86721c Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
This commit is contained in:

committed by
sys_ocldev

parent
48f3f10396
commit
dfce56d634
13
core/program/CMakeLists.txt
Normal file
13
core/program/CMakeLists.txt
Normal file
@ -0,0 +1,13 @@
|
||||
#
|
||||
# Copyright (C) 2019 Intel Corporation
|
||||
#
|
||||
# SPDX-License-Identifier: MIT
|
||||
#
|
||||
|
||||
set(NEO_CORE_PROGRAM
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/print_formatter.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/print_formatter.h
|
||||
)
|
||||
|
||||
set_property(GLOBAL PROPERTY NEO_CORE_PROGRAM ${NEO_CORE_PROGRAM})
|
@ -8,7 +8,6 @@
|
||||
#include "print_formatter.h"
|
||||
|
||||
#include "core/helpers/string.h"
|
||||
#include "core/memory_manager/graphics_allocation.h"
|
||||
|
||||
#include <iostream>
|
||||
|
@ -9,7 +9,6 @@
|
||||
|
||||
#include "core/helpers/aligned_memory.h"
|
||||
#include "core/os_interface/print.h"
|
||||
#include "runtime/kernel/kernel.h"
|
||||
|
||||
#include <algorithm>
|
||||
#include <cctype>
|
@ -17,6 +17,7 @@ append_sources_from_properties(NEO_CORE_SOURCES
|
||||
NEO_CORE_MEMORY_MANAGER
|
||||
NEO_CORE_OS_INTERFACE
|
||||
NEO_CORE_PAGE_FAULT_MANAGER
|
||||
NEO_CORE_PROGRAM
|
||||
NEO_CORE_SKU_INFO_BASE
|
||||
NEO_CORE_UTILITIES
|
||||
NEO_UNIFIED_MEMORY
|
||||
|
@ -23,8 +23,6 @@ set(RUNTIME_SRCS_PROGRAM
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/kernel_info_from_patchtokens.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/link.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/patch_info.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/print_formatter.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/print_formatter.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/printf_handler.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/printf_handler.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/process_elf_binary.cpp
|
||||
|
@ -9,12 +9,12 @@
|
||||
|
||||
#include "core/helpers/aligned_memory.h"
|
||||
#include "core/helpers/ptr_math.h"
|
||||
#include "core/program/print_formatter.h"
|
||||
#include "runtime/device/device.h"
|
||||
#include "runtime/helpers/dispatch_info.h"
|
||||
#include "runtime/kernel/kernel.h"
|
||||
#include "runtime/mem_obj/buffer.h"
|
||||
#include "runtime/memory_manager/memory_manager.h"
|
||||
#include "runtime/program/print_formatter.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
#include "core/helpers/aligned_memory.h"
|
||||
#include "core/helpers/string.h"
|
||||
#include "runtime/program/print_formatter.h"
|
||||
#include "core/program/print_formatter.h"
|
||||
#include "unit_tests/mocks/mock_device.h"
|
||||
#include "unit_tests/mocks/mock_graphics_allocation.h"
|
||||
#include "unit_tests/mocks/mock_kernel.h"
|
||||
|
Reference in New Issue
Block a user