loom icon indicating copy to clipboard operation
loom copied to clipboard

Explore execution path with multi-thread

Open mox692 opened this issue 1 year ago • 0 comments

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.

mox692 avatar May 20 '24 13:05 mox692