Cleanup includes

Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
This commit is contained in:
Kamil Kopryk
2022-07-24 04:21:16 +00:00
committed by Compute-Runtime-Automation
parent d29abb7955
commit d4d54f5093
122 changed files with 266 additions and 401 deletions

View File

@@ -22,6 +22,7 @@
#include "opencl/source/command_queue/command_queue.h"
#include "opencl/source/context/context.h"
#include "opencl/source/helpers/get_info_status_mapper.h"
#include "opencl/source/helpers/mipmap.h"
#include <algorithm>
@@ -370,7 +371,7 @@ void *MemObj::getBasePtrForMap(uint32_t rootDeviceIndex) {
AllocationProperties properties{rootDeviceIndex,
false, // allocateMemory
getSize(), AllocationType::MAP_ALLOCATION,
false, //isMultiStorageAllocation
false, // isMultiStorageAllocation
context->getDeviceBitfieldForAllocation(rootDeviceIndex)};
auto allocation = memoryManager->allocateGraphicsMemoryWithProperties(properties, memory);

View File

@@ -6,22 +6,19 @@
*/
#pragma once
#include "shared/source/debug_settings/debug_settings_manager.h"
#include "shared/source/memory_manager/multi_graphics_allocation.h"
#include "opencl/extensions/public/cl_ext_private.h"
#include "opencl/source/api/cl_types.h"
#include "opencl/source/helpers/base_object.h"
#include "opencl/source/helpers/destructor_callbacks.h"
#include "opencl/source/helpers/mipmap.h"
#include "opencl/source/mem_obj/map_operations_handler.h"
#include "opencl/source/sharings/sharing.h"
#include "memory_properties_flags.h"
#include <atomic>
#include <cstdint>
#include <list>
#include <vector>
namespace NEO {