SWDEV-375194 - Fixes graph dot file descriptions to include labelId matching CUDA

Change-Id: Ia0e6b77e38678b13457f86755ed8f3b852c9b7a1
此提交包含在:
Sourabh Betigeri
2023-02-07 20:06:40 +00:00
提交者 Sourabh Betigeri
父節點 4cbf9a4a16
當前提交 191b468d89
+1 -1
查看文件
@@ -383,7 +383,7 @@ struct hipGraphNode : public hipGraphNodeDOTAttribute {
fout << "\"" << fromNodeName << "\" -> \"" << toNodeName << "\"" << std::endl;
}
}
virtual std::string GetLabel() { return (std::to_string(id_) + "\n" + label_); }
virtual std::string GetLabel(hipGraphDebugDotFlags flag) { return (std::to_string(id_) + "\n" + label_); }
unsigned int GetEnabled() const { return isEnabled_; }
void SetEnabled(unsigned int isEnabled) { isEnabled_ = isEnabled; }
};