Fix counter collection inconsistency with rocprofv3

This commit is contained in:
Fei Zheng
2025-03-10 21:05:40 -06:00
committed by GitHub
parent 51c9c6fad3
commit 7e8d2d2c0e
2 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -224,7 +224,8 @@ def create_df_pmc(
dfs.append(tmp_df)
coll_levels.append(f[:-4])
final_df = pd.concat(dfs, keys=coll_levels, axis=1, copy=False)
# TODO: double check the case if all tmp_df.shape[0] are not on the same page
final_df = pd.concat(dfs, keys=coll_levels, axis=1, join="inner", copy=False)
if verbose >= 2:
console_debug("pmc_raw_data final_single_df %s" % final_df.info)
return final_df