138 lines
4.4 KiB
C++
138 lines
4.4 KiB
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/command_stream/linear_stream.h"
|
|
#include "runtime/helpers/completion_stamp.h"
|
|
#include "runtime/helpers/hw_info.h"
|
|
#include "runtime/helpers/properties_helper.h"
|
|
#include "runtime/indirect_heap/indirect_heap.h"
|
|
#include "runtime/utilities/iflist.h"
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
namespace NEO {
|
|
class CommandQueue;
|
|
class CommandStreamReceiver;
|
|
class InternalAllocationStorage;
|
|
class Kernel;
|
|
class MemObj;
|
|
class Surface;
|
|
class PrintfHandler;
|
|
struct HwTimeStamps;
|
|
class TimestampPacketContainer;
|
|
template <class T>
|
|
struct TagNode;
|
|
|
|
enum MapOperationType {
|
|
MAP,
|
|
UNMAP
|
|
};
|
|
|
|
class Command : public IFNode<Command> {
|
|
public:
|
|
// returns command's taskCount obtained from completion stamp
|
|
// as acquired from command stream receiver
|
|
virtual CompletionStamp &submit(uint32_t taskLevel, bool terminated) = 0;
|
|
|
|
virtual ~Command() = default;
|
|
virtual LinearStream *getCommandStream() {
|
|
return nullptr;
|
|
}
|
|
TagNode<HwTimeStamps> *timestamp = nullptr;
|
|
CompletionStamp completionStamp = {};
|
|
};
|
|
|
|
class CommandMapUnmap : public Command {
|
|
public:
|
|
CommandMapUnmap(MapOperationType op, MemObj &memObj, MemObjSizeArray ©Size, MemObjOffsetArray ©Offset, bool readOnly,
|
|
CommandStreamReceiver &csr, CommandQueue &cmdQ);
|
|
~CommandMapUnmap() override = default;
|
|
CompletionStamp &submit(uint32_t taskLevel, bool terminated) override;
|
|
|
|
private:
|
|
MemObj &memObj;
|
|
MemObjSizeArray copySize;
|
|
MemObjOffsetArray copyOffset;
|
|
bool readOnly;
|
|
CommandStreamReceiver &csr;
|
|
CommandQueue &cmdQ;
|
|
MapOperationType op;
|
|
};
|
|
|
|
struct KernelOperation {
|
|
KernelOperation(std::unique_ptr<LinearStream> commandStream, std::unique_ptr<IndirectHeap> dsh, std::unique_ptr<IndirectHeap> ioh, std::unique_ptr<IndirectHeap> ssh,
|
|
InternalAllocationStorage &storageForAllocations)
|
|
: commandStream(std::move(commandStream)), dsh(std::move(dsh)),
|
|
ioh(std::move(ioh)), ssh(std::move(ssh)),
|
|
surfaceStateHeapSizeEM(0), doNotFreeISH(false), storageForAllocations(storageForAllocations) {
|
|
}
|
|
|
|
~KernelOperation();
|
|
|
|
std::unique_ptr<LinearStream> commandStream;
|
|
std::unique_ptr<IndirectHeap> dsh;
|
|
std::unique_ptr<IndirectHeap> ioh;
|
|
std::unique_ptr<IndirectHeap> ssh;
|
|
|
|
size_t surfaceStateHeapSizeEM;
|
|
bool doNotFreeISH;
|
|
InternalAllocationStorage &storageForAllocations;
|
|
};
|
|
|
|
class CommandComputeKernel : public Command {
|
|
public:
|
|
CommandComputeKernel(CommandQueue &commandQueue, std::unique_ptr<KernelOperation> kernelResources, std::vector<Surface *> &surfaces,
|
|
bool flushDC, bool usesSLM, bool ndRangeKernel, std::unique_ptr<PrintfHandler> printfHandler,
|
|
PreemptionMode preemptionMode, Kernel *kernel = nullptr, uint32_t kernelCount = 0);
|
|
|
|
~CommandComputeKernel() override;
|
|
|
|
CompletionStamp &submit(uint32_t taskLevel, bool terminated) override;
|
|
|
|
LinearStream *getCommandStream() override { return kernelOperation->commandStream.get(); }
|
|
|
|
void setTimestampPacketNode(TimestampPacketContainer ¤t, TimestampPacketContainer &previous);
|
|
void setEventsRequest(EventsRequest &eventsRequest);
|
|
|
|
protected:
|
|
CommandQueue &commandQueue;
|
|
std::unique_ptr<KernelOperation> kernelOperation;
|
|
std::vector<Surface *> surfaces;
|
|
bool flushDC;
|
|
bool slmUsed;
|
|
bool NDRangeKernel;
|
|
std::unique_ptr<PrintfHandler> printfHandler;
|
|
Kernel *kernel;
|
|
uint32_t kernelCount;
|
|
PreemptionMode preemptionMode;
|
|
std::unique_ptr<TimestampPacketContainer> currentTimestampPacketNodes;
|
|
std::unique_ptr<TimestampPacketContainer> previousTimestampPacketNodes;
|
|
EventsRequest eventsRequest = {0, nullptr, nullptr};
|
|
std::vector<cl_event> eventsWaitlist;
|
|
};
|
|
|
|
class CommandMarker : public Command {
|
|
public:
|
|
CommandMarker(CommandQueue &cmdQ, CommandStreamReceiver &csr, uint32_t clCommandType, uint32_t commandSize)
|
|
: cmdQ(cmdQ), csr(csr), clCommandType(clCommandType), commandSize(commandSize) {
|
|
(void)this->cmdQ;
|
|
(void)this->clCommandType;
|
|
(void)this->commandSize;
|
|
}
|
|
|
|
CompletionStamp &submit(uint32_t taskLevel, bool terminated) override;
|
|
|
|
private:
|
|
CommandQueue &cmdQ;
|
|
CommandStreamReceiver &csr;
|
|
uint32_t clCommandType;
|
|
uint32_t commandSize;
|
|
};
|
|
} // namespace NEO
|