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.ForEach和ParallelLINQ中看到的那樣。
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庫,這個庫將添加到Java7的java.util.concurrent包中。
Listing 1. Merge-sort using the fork-join library
清單1.使用fork-join庫進行合并排序