SWDEV-469422 - hipGraph move to classes from structs

Change-Id: I0f9c8ef1161c0c92ebe0cce6844b2feacfee83f5
This commit is contained in:
Anusha GodavarthySurya
2025-01-17 09:10:35 +00:00
committed by Anusha Godavarthy Surya
parent 29cc394510
commit 32e5b00c30
3 changed files with 108 additions and 99 deletions
+1 -1
View File
@@ -551,7 +551,7 @@ bool Graph::RunOneNode(Node node, bool wait) {
if (node->GetType() == hipGraphNodeTypeGraph) {
// Process child graph separately, since, there is no connection
auto child = reinterpret_cast<hip::ChildGraphNode*>(node)->GetChildGraph();
if (!reinterpret_cast<hip::ChildGraphNode*>(node)->graphCaptureStatus_) {
if (!reinterpret_cast<hip::ChildGraphNode*>(node)->GetGraphCaptureStatus()) {
child->RunNodes(node->stream_id_, &streams_, &waitList);
}
} else {