loom
loom copied to clipboard
Explore execution path with multi-thread
For a complex program, loom often takes a long time to execute. Currently, loom explores the execution path in a single thread, but it would be cool if it had multi thread mode. Such features are also mentioned in https://github.com/tokio-rs/loom/issues/162#issuecomment-918235542.
The implementation is probably not trivial, but it would be worth considering.
EDIT: Well, since cargo's test runner already runs tests in parallel (thread per core) by default, perhaps we need to think of a clever parallelization method that would surpass this simple parallelization by cargo.