Provide parallelized execution time on Performance markers
Today, NCrunch shows the execution time across all threads on its performance markers.
If code is run in parallel, e.g.
Parallel.For(0, 100000, DoSomething);
the execution time is somehow misleading as it is not the real execution time (eg. 5 seconds) but instead the overall time (eg. 1 minute).
It would be nice if NCrunch would show both times, the actual time needed for the loop as well as the overall time accross all threads.
2
votes
