Fixing metadata path for CTF plugin

Change-Id: I04f81c38e2f9f2da9f4ac771ae9dff04cd6a76c6


[ROCm/rocprofiler commit: 6bffcbdc69]
Cette révision appartient à :
Giovanni LB
2024-03-04 21:56:57 -03:00
Parent 10f414e9a4
révision 5966704855
2 fichiers modifiés avec 3 ajouts et 3 suppressions
+1 -1
Voir le fichier
@@ -95,7 +95,7 @@ ROCPROFILER_EXPORT int rocprofiler_plugin_initialize(const uint32_t rocprofiler_
// Get ROCM install path
retVal = getROCmInstallPath( &installPath, &installPathLen );
if(PathSuccess == retVal){
metadata_path = fs::path(installPath);
metadata_path = fs::path(installPath) / fs::path{CTF_PLUGIN_METADATA_FILE_PATH};
}else {
std::cout << "Failed to get ROCm Install Path: " << retVal << std::endl;
}