Displaying 2 results from an estimated 2 matches for "1587532".
2018 Mar 15
0
Commit module to Git after each Pass
...it-commit-after-all print correctly after all the passes? Maybe
> I messed it up and it skip some passes, therefore having less to do?
I did verify that total amount of lines committed to git is reasonably high:
] git rev-list master | while read cmt; do git show $cmt:some-ir.ll;
done | wc -l
1587532
corresponding number for -print-after-all (w/o print-module-scope):
] time R/bin/opt -O3 some-ir.ll -disable-output -print-after-all 2>&1 |
wc -l
219328
]
Also amount of commits seems to be right as well.
>
> Either that, or piping has a higher cost than writing to file. Looks
>...
2018 Mar 15
2
Commit module to Git after each Pass
Does git-commit-after-all print correctly after all the passes? Maybe I
messed it up and it skip some passes, therefore having less to do?
Either that, or piping has a higher cost than writing to file. Looks like
it surprisingly spends much less time in system more when going through
file. Maybe that's because the file is consistently around the same size
and is mmapped into memory