user19087
user19087

Reputation: 2063

parallel computations with task manager

I need to run some parallel computations in python. The only compatible approach I can think of is the multiprocess/fork model, which is less than ideal for several reasons:

These are the task requirements:

The task manager is responsible for scheduling and limiting the number of concurrent tasks. These are the task manager requirements:

So you see, the task manager doesn't need to be a parallel/concurrent process. Each task may make synchronous calls to the task manager on starting or stopping. Tasks waiting on other tasks may also make synchronous calls.

I can't seem to think of any other approaches:

Any ideas?

P.S. My end-goal is to automatically parallelize (decorated) function calls. The task manager limits the number of tasks executing in parallel (i.e. recursive functions) to avoid thrashing (fork bombs). I need to use python, even though a though lazy (task waiting), pure (no shared state) and stackless (lightweight threads) language might be more suitable...

Upvotes: 3

Views: 458

Answers (1)

J T
J T

Reputation: 526

Wow, this question is old and I'm surprised a Stackless Python user hasn't chimed in...

Then again, Stackless Python was/is way ahead of its time and there's very few of us out there putting it into use.

Stackless Python is indeed Python. It is a little more than just Python, but it is Python none the less.

Stackless Python Wiki

I think it would suit your needs very well. It is still up-to-date and maintained with a commit as recent as this month. It's rather solid and has worked wonderfully for my needs.

Upvotes: 0

Related Questions