Files
compute-runtime/opencl/source/program/printf_handler.h
Mateusz Jablonski 72182c28e9 refactor: add NonCopyableOrMovableClass to classes that don't need copy ctors
Related-To: NEO-9038
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2023-10-05 13:11:01 +02:00

46 lines
1.0 KiB
C++

/*
* Copyright (C) 2018-2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/helpers/non_copyable_or_moveable.h"
#include <cstdint>
#include <memory>
namespace NEO {
class CommandStreamReceiver;
class Kernel;
class GraphicsAllocation;
class Device;
struct MultiDispatchInfo;
class PrintfHandler : NonCopyableOrMovableClass {
public:
static PrintfHandler *create(const MultiDispatchInfo &multiDispatchInfo, Device &deviceArg);
MOCKABLE_VIRTUAL ~PrintfHandler();
void prepareDispatch(const MultiDispatchInfo &multiDispatchInfo);
void makeResident(CommandStreamReceiver &commandStreamReceiver);
MOCKABLE_VIRTUAL bool printEnqueueOutput();
GraphicsAllocation *getSurface() {
return printfSurface;
}
protected:
PrintfHandler(Device &device);
std::unique_ptr<uint32_t> printfSurfaceInitialDataSizePtr;
Device &device;
Kernel *kernel = nullptr;
GraphicsAllocation *printfSurface = nullptr;
};
} // namespace NEO