SWDEV-470612 - Add stream id to DOT print when DEBUG_HIP_GRAPH_DOT_PRINT is enabled

Change-Id: Iec3630ba6fb2206925653ea939770bb9820d7c52
This commit is contained in:
Anusha GodavarthySurya
2024-08-20 09:27:42 +00:00
committed by Anusha Godavarthy Surya
parent 857d0d60b9
commit 19bf971134
2 changed files with 28 additions and 20 deletions
+1 -1
View File
@@ -1319,7 +1319,7 @@ hipError_t ihipGraphInstantiate(hip::GraphExec** pGraphExec, hip::Graph* graph,
std::string filename =
"graph_" + std::to_string(amd::Os::getProcessId()) + "_dot_print_" + std::to_string(i++);
hipError_t status =
ihipGraphDebugDotPrint(reinterpret_cast<hipGraph_t>(graph), filename.c_str(), 0);
ihipGraphDebugDotPrint(reinterpret_cast<hipGraph_t>(clonedGraph), filename.c_str(), 0);
if (status == hipSuccess) {
LogPrintfInfo("[hipGraph] graph dump:%s", filename.c_str());
}