Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
clang/utils/creduce-clang-crash.py | ||
---|---|---|
82 | I think we should try to pick a good default here. I think we can do better than creduce's default of 4 or whatever it is. I think max(4, os.cpu_count() / 2) might be a good guess. |
Comment Actions
Address comment, using max(4, multiprocessing.cpu_count() / 2) because os.cpu_count is not available in python2.
I think we should try to pick a good default here. I think we can do better than creduce's default of 4 or whatever it is. I think max(4, os.cpu_count() / 2) might be a good guess.