Bug 180024

Summary: WorkQueue::concurrentApply() and ParallelJobs do the same thing
Product: WebKit Reporter: Simon Fraser (smfr) <simon.fraser>
Component: Web Template FrameworkAssignee: Nobody <webkit-unassigned>
Status: NEW    
Severity: Normal CC: sam, simon.fraser, thorton
Priority: P2    
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   

Simon Fraser (smfr)
Reported 2017-11-26 17:43:48 PST
I don't know why we need both WorkQueue::concurrentApply() and ParallelJobs::execute(), which seems to do the same thing. For Cocoa at least, both do: dispatch_apply(iterations, dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ...)
Attachments
Sam Weinig
Comment 1 2017-11-26 19:49:43 PST
My preference is to remove ParallelJobs and keep WorkQueue::concurrentApply().
Simon Fraser (smfr)
Comment 2 2017-11-27 08:19:48 PST
Sam says: > > Source/WebCore/platform/graphics/filters/FEMorphology.cpp:195 > > ParallelJobs<PlatformApplyParameters> parallelJobs(&WebCore::FEMorphology::platformApplyWorker, optimalThreadNumber); > > No strictly related to this patch, but I checked what we were using for > ParallelJobs, saw that ParallelJobsLibdispatch (which I assume we are using) > uses dispatch_apply with a global queue. I believe using DISPATCH_APPLY_AUTO > for the queue will work better. so that's worth testing.
Note You need to log in before you can comment on or make changes to this bug.