码迷,mamicode.com
首页 >  
搜索关键字:Parallel    ( 1085个结果
在 WF 4 中编写自定义控制流活动
在 WF 4 中编写自定义控制流活动Leon Welicki控制流是指组织和执行程序中各个指令的方法。在 Windows Workflow Foundation 4 (WF 4) 中,控制流活动掌控了一个或多个子活动的执行语义。WF 4 活动工具箱中的示例包括:Sequence、Parallel、I...
分类:其他好文   时间:2015-03-02 12:36:55    阅读次数:195
How-to go parallel in R – basics + tips(转)
Today is a good day to start parallelizing your code. I’ve been using the parallel package since its integration with R (v. 2.14.0) and its much easie...
分类:其他好文   时间:2015-02-27 10:01:15    阅读次数:276
UVa 10253 Series-Parallel Networks
《训练指南》中的第二种算法,其实本质上就是个背包。d[i][j]表示,在子树的节点数最大为i的情况下,j个节点的解。当之前的i-1,i-2,....0的结果都已知的时候,d[i][j]自然可根据下式求解: d[i][j]=sum{C(f(i)+p-1,p)*d[i-1][j-p*i] | p*i 其中f(i)表示恰好有i个节点的子树的数量。而C(f(i)+p-1,p)则表示有p棵i节点子树形成...
分类:Web程序   时间:2015-02-23 16:45:39    阅读次数:203
【knowledgebase】如何知道partition数
对于调优和排错来说,查看一个RDD有多少个partition是非常有用的。常用的查看方法有如下几种:1、通过SparkUI查看Task执行的partition数当一个stage执行时,能通过SparkUI界面查看到指定stage的partiton数目val someRDD = sc.parallel...
分类:其他好文   时间:2015-02-09 15:55:33    阅读次数:117
UVa122:Trees on the level
Trees on the levelBackgroundTrees are fundamental in many branches of computer science. Current state-of-the art parallel computers such as Thinking M...
分类:其他好文   时间:2015-02-04 23:03:13    阅读次数:227
E - Trees on the level
Trees on the levelBackgroundTrees are fundamental in many branches of computer science. Current state-of-the art parallel computers such as Thinking M...
分类:其他好文   时间:2015-02-04 20:12:29    阅读次数:159
Parallel类实现并行计算
https://msdn.microsoft.com/zh-cn/ff652648.aspx图像处理——并行计算的应用实例http://blog.csdn.net/bitfan/article/details/4713872http://www.cnblogs.com/xiangism/catego...
分类:其他好文   时间:2015-02-04 20:07:32    阅读次数:134
4.2 Reduction优化
首先添加上Heterogeneous Parallel Programming class 中 lab: Reduction的代码:myReduction.c// MP Reduction// Given a list (lst) of length n// Output its sum = lst...
分类:其他好文   时间:2015-02-04 12:43:15    阅读次数:248
Components of the Impala Server
Components of the Impala ServerThe Impala server is a distributed, massively parallel processing (MPP) database engine. It consists of different daemo...
分类:其他好文   时间:2015-02-04 10:44:55    阅读次数:372
css/js 加载顺序
Firefox and Opera are the only browsers capable of loading ?scripts in parallel while preserving execution order. In all other browsers, scripts must be loaded sequentially. //只有Firefox和opera支...
分类:Web程序   时间:2015-02-03 19:49:50    阅读次数:154
1085条   上一页 1 ... 88 89 90 91 92 ... 109 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!