Skip to content

Commit 5e7b4b2

Browse files
author
Shane Snyder
committed
typo
1 parent 69dd465 commit 5e7b4b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

log-collection-analysis/case-study-1/find-interesting-jobs-mpiio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# filter out jobs doing small amounts of I/O (less than 1 GiB)
1313
mpiio_df = mpiio_df[mpiio_df['total_bytes'] > (1024**3)]
1414

15-
# re-sort data to be in ascending performance (default for job_stats is ascending total_bytes)
15+
# re-sort data to be in ascending performance (default for job_stats is descending total_bytes)
1616
mpiio_df = mpiio_df.sort_values(by='perf_by_slowest')
1717

1818
# print out 10 lowest performing jobs to inspect manually

0 commit comments

Comments
 (0)