Files
compute-runtime/shared/source/program/sync_buffer_handler.h
Zbigniew Zdanowicz c5ed6bf73c refactor: split sync buffer and region allocation creation code
- split the allocation code from command list or kernel
- allow to call allocation code in all parts of the driver

Related-To: NEO-13350

Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
2024-11-29 11:41:39 +01:00

44 lines
893 B
C++

/*
* Copyright (C) 2019-2024 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/helpers/constants.h"
#include "shared/source/helpers/non_copyable_or_moveable.h"
#include <mutex>
namespace NEO {
class CommandStreamReceiver;
class Device;
class GraphicsAllocation;
class MemoryManager;
class SyncBufferHandler : NonCopyableOrMovableClass {
public:
~SyncBufferHandler();
SyncBufferHandler(Device &device);
void makeResident(CommandStreamReceiver &csr);
std::pair<GraphicsAllocation *, size_t> obtainAllocationAndOffset(size_t requiredSize);
protected:
void allocateNewBuffer();
Device &device;
MemoryManager &memoryManager;
GraphicsAllocation *graphicsAllocation;
const size_t bufferSize = 64 * MemoryConstants::kiloByte;
size_t usedBufferSize = 0;
std::mutex mutex;
};
} // namespace NEO