mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
Move common code related to writing memory to dedicated function Change-Id: I4ac8ec779cb40146bd27b8e40728d81d3b5b4276
51 lines
1.4 KiB
C++
51 lines
1.4 KiB
C++
/*
|
|
* Copyright (C) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/command_stream/aub_stream_provider.h"
|
|
#include "runtime/memory_manager/address_mapper.h"
|
|
#include "runtime/memory_manager/physical_address_allocator.h"
|
|
|
|
#include "third_party/aub_stream/headers/aub_manager.h"
|
|
|
|
namespace OCLRT {
|
|
struct HardwareInfo;
|
|
|
|
class AubCenter {
|
|
public:
|
|
AubCenter(const HardwareInfo *pHwInfo, bool localMemoryEnabled, const std::string &aubFileName);
|
|
virtual ~AubCenter() = default;
|
|
|
|
void initPhysicalAddressAllocator(PhysicalAddressAllocator *pPhysicalAddressAllocator) {
|
|
physicalAddressAllocator = std::unique_ptr<PhysicalAddressAllocator>(pPhysicalAddressAllocator);
|
|
}
|
|
|
|
PhysicalAddressAllocator *getPhysicalAddressAllocator() const {
|
|
return physicalAddressAllocator.get();
|
|
}
|
|
|
|
AddressMapper *getAddressMapper() const {
|
|
return addressMapper.get();
|
|
}
|
|
|
|
AubStreamProvider *getStreamProvider() const {
|
|
return streamProvider.get();
|
|
}
|
|
|
|
AubDump::AubManager *getAubManager() const {
|
|
return aubManager.get();
|
|
}
|
|
|
|
protected:
|
|
std::unique_ptr<PhysicalAddressAllocator> physicalAddressAllocator;
|
|
std::unique_ptr<AddressMapper> addressMapper;
|
|
std::unique_ptr<AubStreamProvider> streamProvider;
|
|
|
|
std::unique_ptr<AubDump::AubManager> aubManager;
|
|
};
|
|
} // namespace OCLRT
|