SWDEV-407568 - Move graph implementation to hip namespace

Change-Id: I7023f202a7e3eb25b17db6d3e361205594ae81a5
This commit is contained in:
Anusha GodavarthySurya
2023-07-25 12:54:23 +00:00
parent 0711320cb4
commit fd97dde1e6
6 changed files with 653 additions and 514 deletions
+1 -1
View File
@@ -399,7 +399,7 @@ hipError_t hipEventRecord_common(hipEvent_t event, hipStream_t stream) {
e->SetCaptureStream(stream);
if ((s != nullptr) && (s->GetCaptureStatus() == hipStreamCaptureStatusActive)) {
s->SetCaptureEvent(event);
std::vector<hipGraphNode_t> lastCapturedNodes = s->GetLastCapturedNodes();
std::vector<hip::GraphNode*> lastCapturedNodes = s->GetLastCapturedNodes();
if (!lastCapturedNodes.empty()) {
e->SetNodesPrevToRecorded(lastCapturedNodes);
}