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進行合并排序