Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 C 并行 for 循环,其中包括一条线
b[i] = b[0];
所以我需要在开始任何其他迭代之前完成第一次迭代。是否有强制执行此类行为的条款?
只需将第一次迭代拉出循环并在索引 1 处开始循环。这是迄今为止最简单和最便宜的方法。其他方式涉及等待,这是低效的。