gpt4 book ai didi

c++ - 为了执行TBB?

转载 作者:太空狗 更新时间:2023-10-29 20:15:14 25 4
gpt4 key购买 nike

我想要一个类似 tbb::task_group 的东西但有保证订单执行的区别,例如

serial_task_group tasks;

tasks.run([]{std::cout << 1;});
tasks.run([]{std::cout << 2;});
tasks.run([]{std::cout << 3;});
tasks.wait();

// guaranteed output: 123

关于如何使用 tbb 实现这一目标有什么建议吗?

目前我有一个显式线程,它使用条件变量从队列中执行。但是,使用队列的问题是我将如何保证 task_group 中只有一个任务处于事件状态。

最佳答案

(披露:我在英特尔从事英特尔线程构建模块的工作。)

正如另一个答案中所建议的那样,您可以使用流程图来做这样的事情。使用流程图的示例代码如下所示:

#include "tbb/flow_graph.h"
#include <iostream>

using namespace tbb::flow;

int main( int argc, char *argv[] ) {
graph g;
continue_node< continue_msg > n1( g, []( const continue_msg & ) { std::cout << "1"; } );
continue_node< continue_msg > n2( g, []( const continue_msg & ) { std::cout << "2"; } );
continue_node< continue_msg > n3( g, []( const continue_msg & ) { std::cout << "3"; } );
make_edge( n1, n2 );
make_edge( n2, n3 );
n1.try_put( continue_msg() );
g.wait_for_all();
return 0;
}

关于c++ - 为了执行TBB?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13901552/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com