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

Change-Id: Ia0e6b77e38678b13457f86755ed8f3b852c9b7a1


[ROCm/clr commit: 191b468d89]
This commit is contained in:
Sourabh Betigeri
2023-02-07 20:06:40 +00:00
کامیت شده توسط Sourabh Betigeri
والد 1544843291
کامیت 3bc1a92b66
@@ -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; }
};