mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 21:18:24 +08:00
Decouple cl_device_id from Device class. Related-To: NEO-3938 Change-Id: I68543a753aea562f3b47ba0d23a059ff3cffa906 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
41 lines
912 B
C++
41 lines
912 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "runtime/command_stream/command_stream_receiver.h"
|
|
#include "runtime/kernel/kernel.h"
|
|
|
|
namespace NEO {
|
|
|
|
class ClDevice;
|
|
struct MultiDispatchInfo;
|
|
|
|
class PrintfHandler {
|
|
public:
|
|
static PrintfHandler *create(const MultiDispatchInfo &multiDispatchInfo, ClDevice &deviceArg);
|
|
|
|
~PrintfHandler();
|
|
|
|
void prepareDispatch(const MultiDispatchInfo &multiDispatchInfo);
|
|
void makeResident(CommandStreamReceiver &commandStreamReceiver);
|
|
void printEnqueueOutput();
|
|
|
|
GraphicsAllocation *getSurface() {
|
|
return printfSurface;
|
|
}
|
|
|
|
protected:
|
|
PrintfHandler(ClDevice &device);
|
|
|
|
static const uint32_t printfSurfaceInitialDataSize = sizeof(uint32_t);
|
|
ClDevice &device;
|
|
Kernel *kernel = nullptr;
|
|
GraphicsAllocation *printfSurface = nullptr;
|
|
};
|
|
} // namespace NEO
|