You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Most of the higher-order iterator functions in Base (sum, prod, any, all, count, minimum, maximum, etc.) can be implemented on top of tmapreduce. The only other fundamental building block that would be useful is taccumulate for cumsum and the like - are there any plans for this?
The text was updated successfully, but these errors were encountered:
Parallelizing accumulate is typically very difficult, since the later results require the earlier results. It's possible with lots of re-associations and some clever two-pass algorithms.
If you'd like to take a shot at implementing it, I'd try and take a look and give advice.
Most of the higher-order iterator functions in Base (sum, prod, any, all, count, minimum, maximum, etc.) can be implemented on top of
tmapreduce
. The only other fundamental building block that would be useful istaccumulate
forcumsum
and the like - are there any plans for this?The text was updated successfully, but these errors were encountered: