[webkit-reviews] review requested: [Bug 43903] Speeding up SVG filters with multicore (SMP) support : [Attachment 83307] Speeding up FETurbulence with SMP

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Feb 22 07:06:48 PST 2011


Gabor Loki <loki at webkit.org> has asked	for review:
Bug 43903: Speeding up SVG filters with multicore (SMP) support
https://bugs.webkit.org/show_bug.cgi?id=43903

Attachment 83307: Speeding up FETurbulence with SMP
https://bugs.webkit.org/attachment.cgi?id=83307&action=review

------- Additional Comments from Gabor Loki <loki at webkit.org>
I have redesigned the previous concept of threading from Zoltan's suggestion
and introduced a framework for parallel tasks/jobs.

The ParallelJobs framework is based on WebKit's threading infrastructure and/or
OpenMP's API.

The usage of ParallelJobs is the following:
1.- Create ParallelJobs object - which allocates the worker threads and
necessary objects.
2.- Fill the parameter array - allocated by ParallelJobs, assign different
sub-tasks for the workers
3.- Execute the workers
4.- Combine the necessary information [optional]

This patch contains:
1.- ParallelJobs framework
2.- SMP version of FETurbulence

One more note:
I have measured 60%-80% performance progression on dual-core systems on ARM and
x86 as well.


More information about the webkit-reviews mailing list