mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-23 11:03:02 +08:00
Change-Id: I3a3513250b10e899795e149bff2739193a725f84 Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
62 lines
2.0 KiB
C++
62 lines
2.0 KiB
C++
/*
|
|
* Copyright (C) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/command_stream/command_stream_receiver.h"
|
|
#include "runtime/command_stream/linear_stream.h"
|
|
#include "runtime/event/event.h"
|
|
#include "runtime/helpers/kernel_commands.h"
|
|
#include "runtime/helpers/timestamp_packet.h"
|
|
#include "runtime/memory_manager/memory_manager.h"
|
|
#include "runtime/utilities/tag_allocator.h"
|
|
|
|
using namespace OCLRT;
|
|
|
|
TimestampPacketContainer::TimestampPacketContainer(MemoryManager *memoryManager) : memoryManager(memoryManager){};
|
|
|
|
void TimestampPacketContainer::add(Node *timestampPacketNode) {
|
|
timestampPacketNodes.push_back(timestampPacketNode);
|
|
}
|
|
|
|
TimestampPacketContainer::~TimestampPacketContainer() {
|
|
for (auto &node : timestampPacketNodes) {
|
|
memoryManager->peekTimestampPacketAllocator()->returnTag(node);
|
|
}
|
|
}
|
|
|
|
void TimestampPacketContainer::swapNodes(TimestampPacketContainer ×tampPacketContainer) {
|
|
timestampPacketNodes.swap(timestampPacketContainer.timestampPacketNodes);
|
|
}
|
|
|
|
void TimestampPacketContainer::resolveDependencies(bool clearAllDependencies) {
|
|
std::vector<Node *> pendingNodes;
|
|
|
|
for (auto &node : timestampPacketNodes) {
|
|
if (node->tag->canBeReleased() || clearAllDependencies) {
|
|
memoryManager->peekTimestampPacketAllocator()->returnTag(node);
|
|
} else {
|
|
pendingNodes.push_back(node);
|
|
}
|
|
}
|
|
|
|
std::swap(timestampPacketNodes, pendingNodes);
|
|
}
|
|
|
|
void TimestampPacketContainer::assignAndIncrementNodesRefCounts(TimestampPacketContainer &inputTimestampPacketContainer) {
|
|
auto &inputNodes = inputTimestampPacketContainer.peekNodes();
|
|
std::copy(inputNodes.begin(), inputNodes.end(), std::back_inserter(timestampPacketNodes));
|
|
|
|
for (auto &node : inputNodes) {
|
|
node->incRefCount();
|
|
}
|
|
}
|
|
|
|
void TimestampPacketContainer::makeResident(CommandStreamReceiver &commandStreamReceiver) {
|
|
for (auto &node : timestampPacketNodes) {
|
|
commandStreamReceiver.makeResident(*node->getGraphicsAllocation());
|
|
}
|
|
}
|