[PATCH] D58327: [Dominators] Simplify and optimize path compression used in link-eval forest.
Brian Rzycki via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 19 14:05:20 PST 2019
brzycki added a comment.
In D58327#1402240 <https://reviews.llvm.org/D58327#1402240>, @kuhar wrote:
> In addition, make sure that your performance governor is set to performance and that you pin the process to a single cpu core with its sibling disabled. (like in https://llvm.org/docs/Benchmarking.html#linux). Benchmarking on x86 is hard.
+1
One test I like to use is the LLVM test-suite subdirectory `CTMark` with running the top-level `lit` process through `taskset`, as in:
cmake -G Ninja -D TEST_SUITE_SUBDIRS=CTMark -D TEST_SUITE_RUN_BENCHMARKS=0 ...
ninja
taskset -c $core lit -v -j 1 . -o results.json
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D58327/new/
https://reviews.llvm.org/D58327
More information about the llvm-commits
mailing list