fork-join

fork-join

 英

  • 网络分支聚合活动;并行块;并行语句块

例句

It's easy to express such problems using fork-join, as you saw in the previous installment.

fork-join可以容易表示问题正如上一看到那样

Each of these problems can be easily parallelized using divide-and-conquer, and can be easily represented as fork-join tasks.

其中每个问题可以divide-and-conquer轻松并行轻松表示fork-join任务

The fork-join framework reduces contention for the work queue by using a technique known as work stealing.

fork-join框架通过一种称作工作窃取workstealing技术减少工作队列情况

Furthermore, computing the right multiplicities can be challenging in models with more complex fork-join structures.

而且一个使用复杂fork-join结构模型计算正确增殖次数并非

A fork-join framework like the one illustrated in Listing 3 can be implemented in many ways.

可以很多方法实现清单3演示fork-join框架

To this end, Java 7 will include a framework for representing a certain class of finer-grained parallel algorithms: the fork-join framework.

最终,Java7包含一种框架用于表示更细并行算法:fork-join框架

The principal benefit of using the fork-join technique is that it affords a portable means of coding algorithms for parallel execution.

使用fork-join技术主要好处提供一种编写并行执行算法简便方法

In this regard, JPFF can be viewed as an extended, distributed fork-join framework.

这个角度来讲我们可以JPPF看作一个扩展分布式fork-join框架

You then use the description to actually execute the array operations (which uses the fork-join framework under the hood) in parallel.

然后描述并行执行数组操作幕后使用fork-join框架)。

Listing 2 shows an example of a problem that is suitable to a fork-join solution: searching a large array for its maximal element.

清单2显示一个适合使用fork-join解决方案问题示例大型数组搜索其中最大元素

The pattern in Figure 14 presents the correct way to model parallel branching by using a matching fork-join pair.

14模式展示使用匹配fork-join建立并行分支模型正确方法

When . NET 4. 0 was released the most common scenario was fork-join style programming such as seen with Parallel. ForEach and Parallel LINQ.

NET4.0发布时候常见情形分支合并(fork-join)样式编程就像我们Parallel.ForEachParallelLINQ看到那样

In the last installment of Java theory and practice, we examined the fork-join library, which will be added to the java. util. concurrent

Java理论实践我们研究fork-join这个添加Java7java.util.concurrent

Listing 1. Merge-sort using the fork-join library

清单1.使用fork-join进行合并排序