Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This disables TBB by default in the bootstrap script. Using our `/test/benchmarking` benchmarks, there is no discernible difference between the end-to-end execution times or the individual execution times of the parallel functions. For example, here is are the results of the `bench_large_io` between the two: // Without TBB end-to-end: 267829 ms `parallel_for`: 271120 ms `parallel_for_2d`: 104 ms `parallel_sort`: 14447 ms // With TBB end-to-end: 269911 ms `parallel_for`: 273447 ms `parallel_for_2d`: 107 ms `parallel_sort`: 14382 ms Note that the "end-to-end" was measured with a different timing mechanism than the individual function timers. The individual function timers are also cumulative per thread.
- Loading branch information