SWDEV-490860 - Include signal_is_required in dot file dumps

Change-Id: Iec4b433b11fbecb71a4ce68beb7d6f681d25b8e6
Этот коммит содержится в:
Branislav Brzak
2024-12-04 13:54:58 +01:00
коммит произвёл Branislav Brzak
родитель 231b2410a0
Коммит f2dba978f5
+2
Просмотреть файл
@@ -460,6 +460,7 @@ struct GraphNode : public hipGraphNodeDOTAttribute {
out << GetLabel(flag);
if (DEBUG_HIP_GRAPH_DOT_PRINT) {
out << "\nStreamId:" << stream_id_;
out << "\nSignalIsRequired: " << ((signal_is_required_) ? "true" : "false");
}
out << "\"";
out << "];";
@@ -956,6 +957,7 @@ class GraphKernelNode : public GraphNode {
out << GetLabel(flag);
if (DEBUG_HIP_GRAPH_DOT_PRINT) {
out << "StreamId:" << stream_id_;
out << "\nSignalIsRequired: " << ((signal_is_required_) ? "true" : "false");
}
out << "\"";
out << "];";