Schedulers and Allocators available in AccaSimΒΆ
Some scheduler and allocators are already implemented in the AccaSim library. In total there are 8 combinations of job dispatchers ready to use.
Schedulers available in accasim.base.scheduler_class
- First In First Out (
FirstInFirstOut) - Shortest Job First (
ShortestJobFirst) - Longest Job First (
LongestJobFirst) - EASY-Backfilling (
EASYBackfilling)
- First In First Out (
- Allocators available in accasim.base.allocator_class
- First Fit (
FirstFit) - Best Fit (
BestFit)
- First Fit (