Re: Pipes of computation

2013-07-19 Thread Ahmet Emre Aladağ
Thank you, it seems that can work. But it requires us to count the supersteps of two computations combined. It could have been nice if that was loosely coupled such that in the second computation I could check if that's the 0th superstep or not. On 07/17/2013 11:08 AM, Han JU wrote: I think t

Re: Pipes of computation

2013-07-17 Thread Han JU
I think that can be achieved using MasterComputation. Take a look at o.a.g.master.TestSwitchClasses Hope that helps. 2013/7/17 Ahmet Emre Aladağ > Hi, > > Is there a way to pipe the Computation classes? > > Example: Run PageRankComputation and then run NormalizationComputation on > the same gr

Pipes of computation

2013-07-16 Thread Ahmet Emre Aladağ
Hi, Is there a way to pipe the Computation classes? Example: Run PageRankComputation and then run NormalizationComputation on the same graph without activating Output/Input formats between the two. This way we can re-use some computations like log-scale CDF normalization and don't mess up th