This repository has been archived on 2024-04-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
elektron/schedulers/proactive_dynamic_capping
2016-12-22 22:58:59 -05:00
..
src Added proactive dynamic capping (FCFS and Rank based). Also added a primitive readme file. 2016-12-22 22:58:59 -05:00
main.go Added proactive dynamic capping (FCFS and Rank based). Also added a primitive readme file. 2016-12-22 22:58:59 -05:00
README.md Added proactive dynamic capping (FCFS and Rank based). Also added a primitive readme file. 2016-12-22 22:58:59 -05:00

##Proactive Dynamic Capping

Perform Cluster wide dynamic capping.

Offer 2 methods: 1. First Come First Serve -- For each task that needs to be scheduled, in the order in which it arrives, compute the cluster wide cap. 2. Rank based cluster wide capping -- Sort a given set of tasks to be scheduled, in ascending order of requested watts, and then compute the cluster wide cap for each of the tasks in the ordered set.

#Note The github.com folder contains a library that is required to compute the median of a given set of values.