Ask Your Question
2

Caching with @parallel

asked 2017-05-03 16:42:14 +0200

aram.dermenjian gravatar image

updated 2017-05-04 15:36:52 +0200

So I have a function which I want to run in a parallel manner as I'll need to run the function a few million times. The thing is, I know that quite a few times, I'll have duplicate information. So I want to speed up the process even more by skipping the ones I don't need. Here's what I have so far:

@parallel(ncpus=7)
def parallel_function(initial,allElts,e1,e2):
    untested = set([initial])
    verified = set([])
    potentials = getPotentials(e1,e2)
    while untested:
        curTest = untested.pop()
        verified.add(curTest)
        for e in allElts:
            newElt = someProp(potentials,curTest,e)
            if newElt not in verified:
                untested.add(newElt)
    return verified

def testElts(allElts, potentials):
    initial = allElts[0]
    returnInfo = {}
    for tup in list(parallel_function([(initial,allElts,e1,e2) for e1 in allElts for e2 in allElts)):
         returnInfo[tup[0][0][2]] = tup[1]

NOTE The above is an exmple. I've tried to dumb it down to try and give a better feel of the functions I'm working with. So consider the above more "pseudo" code than real code in case I missed something

We're assuming that allElts has at least 1 million elements, so this function will take a while. Notice that the parallel_function is a fairly intense function itself, but given any two element, the "getPotentials" function might return similar results. So basically I want to skip my while loop if I've already tested these "potentials" before.

I've tried looking into how caching works in parallel environments, but there doesn't seem to be too much. Would caching in this case be possible with @cache_function? If not, can I do a dictionary that stores the values and access the information that way? Since parallel processing creates forks I assume that means the dictionary information is not necessarily accessible by everyone? Or is that not accurate?

Any help on this would be beneficial. Thanks.

edit retag flag offensive close merge delete

Comments

1

The "parallel" decorator is for trivially parallel tasks: the different workers get their data at the start and report back their results, without depending on results of others. As soon as tasks interact (as in your case: some workers might discover someone else already computed what they need) you need shared memory (with locking) or inter process communication. Your description seems to fit a task queue servicing multiple workers, where workers submit additional tasks. However, the overhead and bottlenecks of that might be worse than your problem. It depends.

nbruin gravatar imagenbruin ( 2017-05-04 19:38:09 +0200 )edit

Is there somewhere that shows how to do task queueing in python/sage? It might be something that could potentially help although, as you mentioned, I'd need to look at the overhead and bottlenecks to see if there's a way around it. (Do you know anywhere that mentions the lag/timing that would be requiring for doing a more complex forking system that would use multiple cores?)

Thanks btw.

aram.dermenjian gravatar imagearam.dermenjian ( 2017-05-05 15:19:10 +0200 )edit

Ok cool. Thanks =) So then we should leave parallel processing for more trivial tasks and if it's more complex use forking (when appropriate). In both cases cacheing is a little wonky so be careful yeah? Thanks for all your help on this.

aram.dermenjian gravatar imagearam.dermenjian ( 2017-05-06 13:22:01 +0200 )edit

1 Answer

Sort by » oldest newest most voted
0

answered 2017-05-09 14:12:14 +0200

Sébastien gravatar image

updated 2017-05-09 14:14:24 +0200

If you want to enumerate recursively the elements of a given set, you may look at: sage/sets/recursively_enumerated_set.html

If the underlying graph have some structure (being graded, symmetric or a forest), then some enumeration algorithms can be more efficient (time wise or memory wise). If the graph is a forest, then enumeration and other operation like mapreduce can be done in parallel. See sage/parallel/map_reduce.html

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2017-05-03 16:02:30 +0200

Seen: 359 times

Last updated: May 09 '17