We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69dd465 commit 5e7b4b2Copy full SHA for 5e7b4b2
log-collection-analysis/case-study-1/find-interesting-jobs-mpiio.py
@@ -12,7 +12,7 @@
12
# filter out jobs doing small amounts of I/O (less than 1 GiB)
13
mpiio_df = mpiio_df[mpiio_df['total_bytes'] > (1024**3)]
14
15
-# re-sort data to be in ascending performance (default for job_stats is ascending total_bytes)
+# re-sort data to be in ascending performance (default for job_stats is descending total_bytes)
16
mpiio_df = mpiio_df.sort_values(by='perf_by_slowest')
17
18
# print out 10 lowest performing jobs to inspect manually
0 commit comments