SWDEV-422207 - Tag captured kernel names for graphs

Change-Id: I9540daa4abf9c340541a681037e2dca4eec821ed
このコミットが含まれているのは:
Saleel Kudchadker
2023-12-21 19:24:43 +00:00
コミット dfd4635f91
+2 -1
ファイルの表示
@@ -1273,7 +1273,8 @@ class AccumulateCommand : public Command {
//! Add kernel name to the list if available //! Add kernel name to the list if available
void addKernelName(const std::string& kernelName) { void addKernelName(const std::string& kernelName) {
if (activity_prof::IsEnabled(OP_ID_DISPATCH)) { if (activity_prof::IsEnabled(OP_ID_DISPATCH)) {
kernelNames_.push_back(kernelName); // "^" is to indicate kernel is captured at instantiate
kernelNames_.push_back("^ " + kernelName);
} }
} }