We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fba4c22 commit 5ebc579Copy full SHA for 5ebc579
1 file changed
MC/utils/o2dpg_sim_metrics.py
@@ -782,10 +782,13 @@ def print_statistics(resource_object):
782
.sort_values(ascending=False) # sort by memory usage
783
.head(top_n)
784
)
785
-
786
print(f"\nTop-{top_n} memory consumers (by peak PSS):")
787
for comp, mem in top_mem.items():
788
print(f" {comp:<20s} {mem:10.2f} MB")
+
789
+ #(d) max disc consumption
790
+ print ("\nMax-DISC usage (MB): ", dframe['disc'].max())
791
+ print ("Mean-DISC usage (MB): ", dframe['disc'].mean())
792
print ("---> ")
793
794
def stat(args):
0 commit comments