STL algorithms and concurrent programming

后端 未结 4 666
无人共我
无人共我 2020-12-08 06:01

Can any of STL algorithms/container operations like std::fill, std::transform be executed in parallel if I enable OpenMP for my compiler? I am working with

4条回答
  •  盖世英雄少女心
    2020-12-08 06:29

    Visual Studio 2010 provides the Parallel Patterns Library which has STL style algorithms which execute in parallel. Of course, this is Microsoft-specific to VS2010 (and up, I guess).

提交回复
热议问题