From 2179e8db7a2ce2893789cabb79285589aeae38b5 Mon Sep 17 00:00:00 2001 From: Nimrod Gilboa Markevich Date: Sun, 15 May 2022 08:46:19 +0300 Subject: [PATCH] Fix rss units --- performance_analysis/plot_from_tapper_logs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/performance_analysis/plot_from_tapper_logs.py b/performance_analysis/plot_from_tapper_logs.py index 2f4d01259..8440d2e5c 100644 --- a/performance_analysis/plot_from_tapper_logs.py +++ b/performance_analysis/plot_from_tapper_logs.py @@ -66,7 +66,7 @@ if __name__ == '__main__': plt.ylabel('cpu (%)') ax = plt.subplot(3, 1, 2) - rss_samples_df.plot(cmap=COLORMAP, ax=ax) + (rss_samples_df / 1024 / 1024).plot(cmap=COLORMAP, ax=ax) plt.title('rss') plt.legend() plt.xlabel('# sample')