3f032156c8
Like yesterday's change to run CPU-parent child tasks serially in thread, this reduces peak memory usage by improving the temporaly locality of the bitmaps we create. E.g. Let's say we start with tasks A B C and D Queue: [ A B C D ] Running A creates A' and A", which depend on a bitmap created by A. Queue: [ B C D A' A" * ] That bitmap now needs sit around in RAM while B C and D run pointlessly and can only be destroyed at *. If instead we do this and push dependent child tasks to the front of the queue, the queue and bitmap lifetime looks like this: Queue: [ A' A" * B C D ] This is much, much worse in practice because the queue is often several thousand tasks long. 100s of megs of bitmaps can pile up for 10s of seconds pointlessly. To make this work we add addNext() to SkThreadPool and its cousin DMTaskRunner. I also took the opportunity to swap head and tail in the threadpool implementation so it matches the comments and intuition better: we always pop the head, add() puts it at the tail, addNext() at the head. Before Debug: 49s, 1403352k peak Release: 16s, 2064008k peak After Debug: 49s, 1234788k peak Release: 15s, 1903424k peak BUG=skia:2478 R=bsalomon@google.com, borenet@google.com, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/263803003 git-svn-id: http://skia.googlecode.com/svn/trunk@14506 2bbb7eff-a529-9590-31e7-b0007b416f81
33 lines
719 B
C++
33 lines
719 B
C++
#ifndef DMTaskRunner_DEFINED
|
|
#define DMTaskRunner_DEFINED
|
|
|
|
#include "DMGpuSupport.h"
|
|
#include "SkThreadPool.h"
|
|
#include "SkTypes.h"
|
|
|
|
// TaskRunner runs Tasks on one of two threadpools depending on the need for a GrContextFactory.
|
|
// It's typically a good idea to run fewer GPU threads than CPU threads (go nuts with those).
|
|
|
|
namespace DM {
|
|
|
|
class CpuTask;
|
|
class GpuTask;
|
|
|
|
class TaskRunner : SkNoncopyable {
|
|
public:
|
|
explicit TaskRunner(int cpuThreads, int gpuThreads);
|
|
|
|
void add(CpuTask* task);
|
|
void addNext(CpuTask* task);
|
|
void add(GpuTask* task);
|
|
void wait();
|
|
|
|
private:
|
|
SkTThreadPool<void> fCpu;
|
|
SkTThreadPool<GrContextFactory> fGpu;
|
|
};
|
|
|
|
} // namespace DM
|
|
|
|
#endif // DMTaskRunner_DEFINED
|