Skip to content

Commit 704b417

Browse files
authored
Merge pull request #973 from The-OpenROAD-Project-staging/sort-elapsed
Sort elapsed times
2 parents 378a4dc + 217c708 commit 704b417

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flow/util/genElapsedTime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
sys.exit(1)
2424

2525
# Loop on all log files in the directory
26-
for f in list(pathlib.Path(args.logDir).glob('**/[0-9]_*.log')):
26+
for f in sorted(pathlib.Path(args.logDir).glob('**/[0-9]_*.log')):
2727
# Extract Elapsed Time line from log file
2828
for line in open(str(f)):
2929
elapsedTime = 0

0 commit comments

Comments
 (0)