载入中...
搜索中...
未找到
JobSystem.cpp
浏览该文件的文档.
1#include "thread/JobSystem.h"
2
4
5namespace eve {
6namespace thread {
7
14JobSystem *createJobSystem(int workerCount) {
15 return new JobSystemThreadPool(workerCount);
16}
17
18} // namespace thread
19} // namespace eve
Default JobSystem backend: a dependency-aware scheduler over the existing ThreadPool worker pool.
Abstract job scheduler: dependencies, parallel_for, task_group, arena.
Definition JobSystem.h:153
JobSystem * createJobSystem(int workerCount)
Create a JobSystem with the configured backend.
Definition JobSystem.cpp:14
Definition Build.cpp:11