TBB之task
【TBB之task】这部分介绍Intel TBB task scheduler,task scheduler是一个loop模板的引擎,在实际应用中,你应该使用loop模板而不是task scheduler,因为模板隐藏了调度器的复杂度。然而,如果你有一个算法不能映射到高阶模板中的一个,请使用task scheduler。
#include "tbb/tbb.h"
#include
using namespace tbb;
class say_hello
{
const char * id;
public:
say_hello(const char * s) : id(s) { }void operator( ) () const{
printf("hello from task %s\n",id);
}
};
int main( )
{
task_group tg;
tg.run(say_hello("1"));
// spawn 1st task and return
tg.run(say_hello("2"));
// spawn 2nd task and return
tg.wait( );
// wait for tasks to complete
}
推荐阅读
- PMSJ寻平面设计师之现代(Hyundai)
- 太平之莲
- 闲杂“细雨”
- 七年之痒之后
- 深入理解Go之generate
- 由浅入深理解AOP
- 期刊|期刊 | 国内核心期刊之(北大核心)
- 生活随笔|好天气下的意外之喜
- 感恩之旅第75天
- python学习之|python学习之 实现QQ自动发送消息