P_RM.py 864 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
"""
Partitionned EDF using PartitionedScheduler.
"""
from simso.core.Scheduler import SchedulerInfo
from simso.utils import PartitionedScheduler


class P_RM(PartitionedScheduler):
    def init(self):
        PartitionedScheduler.init(
11
            self, SchedulerInfo("simso.schedulers.RM_mono"))
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

    def packer(self):
        # First Fit
        cpus = [[cpu, 0] for cpu in self.processors]
        for task in self.task_list:
            m = cpus[0][1]
            j = 0
            # Find the processor with the lowest load.
            for i, c in enumerate(cpus):
                if c[1] < m:
                    m = c[1]
                    j = i

            # Affect it to the task.
            self.affect_task_to_processor(task, cpus[j][0])

            # Update utilization.
            cpus[j][1] += float(task.wcet) / task.period
        return True