We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The Simulation class creates the skippy Scheduler through a factory method create_scheduler(env: Environment), which you can overwrite:
Simulation
Scheduler
create_scheduler(env: Environment)
scheduler_params = { 'percentage_of_nodes_to_score': 50, 'priorities': [(1.0, BalancedResourcePriority())] } sim = Simulation(topology, benchmark) sim.create_scheduler = lambda env: Scheduler(env.cluster, **scheduler_params) sim.run()