Blender Git Commit Log
Git Commits -> Revision 85c2e2d
Revision 85c2e2d by Brecht Van Lommel (temp-cycles-tbb) June 6, 2020, 19:02 (GMT) |
Cycles: use TBB for task pools and task scheduler No significant performance improvement is expected, but it means we have a single thread pool throughout Blender. And it should make adding more parallellization in the future easier. After previous refactoring commits this is basically a drop-in replacement. One difference is that the task pool had a mechanism for scheduling tasks to the front of the queue to minimize memory usage. TBB has a smarter algorithm to balance depth-first and breadth-first scheduling of tasks and we assume that removes the need to manually provide hints to the scheduler. |
Commit Details:
Full Hash: 85c2e2d10e8498987f03537665c00a2baa9f87e6
Parent Commit: be3a8cc
Lines Changed: +49, -396