views:

445

answers:

2

Hi, I'm searching for a Sequential implementation of multiprocessor scheduling algorithm, preferably implemented in c++, or c. Any suggestions are welcome.

A: 

See Multiprocessing as starter.

eed3si9n
Been there, done that...
Sorantis
+1  A: 

If it was sequential, it wouldn't BE a "multi"-processor. So I assume you want a sequential implementation of an optimization algorithm for allocation of resources, where the resources happen to be processor cores? What are you trying to optimize (throughput, latency, ?)? Do all the tasks arrive at once, if not then what is the load factor? What do you know about the tasks to be scheduled (i.e. durations are Poisson distributed, or you're given a specific finite set of tasks, or?)

Ben Voigt