[Webkit-unassigned] [Bug 43903] Speeding up SVG filters with multicore (SMP) support

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


https://bugs.webkit.org/show_bug.cgi?id=43903


Gabor Loki <loki at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #83307|                            |review?
               Flag|                            |




--- Comment #4 from Gabor Loki <loki at webkit.org>  2011-02-22 07:06:48 PST ---
Created an attachment (id=83307)
 --> (https://bugs.webkit.org/attachment.cgi?id=83307&action=review)
Speeding up FETurbulence with SMP

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.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list