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
2016-12-22 22:59:00 -05:00
..
binpacksortedwatts.go changed bingcloud to sunybingcloud in the import statements. 2016-12-22 22:58:59 -05:00
firstfit.go changed bingcloud to sunybingcloud in the import statements. 2016-12-22 22:58:59 -05:00
firstfitsortedwatts.go changed bingcloud to sunybingcloud in the import statements. 2016-12-22 22:58:59 -05:00
firstfitwattsonly.go changed bingcloud to sunybingcloud in the import statements. 2016-12-22 22:58:59 -05:00
helpers.go Moved schedulers from the main programs to schedulers package. Can now choose different scheduelrs to use. Work on code sharing between schedulers remains to be done. 2016-12-22 22:58:58 -05:00
pistoncapper.go Logging of capping happens only when there is no error with rapl.Cap. 2016-12-22 22:59:00 -05:00
proactiveclusterwidecappers.go Nit: Changed variable name 'runningAverageToTotalPowerPercentage' to 'ratios' 2016-12-22 22:59:00 -05:00
proactiveclusterwidecappingfcfs.go synchronized operations on tasksRunning and hence prevented the previously occuring race condition. 2016-12-22 22:59:00 -05:00
proactiveclusterwidecappingranked.go Using ranked proactive cluster wide capper with clever recapping 2016-12-22 22:59:00 -05:00
README.md Added to TODO (generic running average computation). 2016-12-22 22:59:00 -05:00
states.go Moved schedulers from the main programs to schedulers package. Can now choose different scheduelrs to use. Work on code sharing between schedulers remains to be done. 2016-12-22 22:58:58 -05:00

Electron: Scheduling Algorithms

To Do:

  • Design changes -- Possible to have one scheduler with different scheduling schemes?
  • Make the running average calculation generic, so that schedulers in the future can use it and not implement their own.

Scheduling Algorithms:

  • Bin-packing with sorted watts
  • FCFS Proactive Cluster-wide Capping
  • Ranked Proactive Cluster-wide Capping
  • First Fit
  • First Fit with sorted watts