|
jump_time = int(math.ceil((JOBS.queue_limit[qid] - rjob['executed_time'])/rjob['num_gpu']) + event_time) |
Hi! I am using dlas scheduler in your simulator. However, I am confused about the calculation for
jump_time. According to my knowledge, it represents the next time when a job is demoted to another queue. In this case, it should be calculated as
jump_time = int(math.ceil((JOBS.queue_limit[qid])/rjob['num_gpu'] - rjob['executed_time']) + event_time) . Could you please explain this calculation? Looking forward to your apply!
Tiresias/simulator/run_sim.py
Line 1226 in 959f9b0
Hi! I am using dlas scheduler in your simulator. However, I am confused about the calculation for
jump_time. According to my knowledge, it represents the next time when a job is demoted to another queue. In this case, it should be calculated asjump_time = int(math.ceil((JOBS.queue_limit[qid])/rjob['num_gpu'] - rjob['executed_time']) + event_time). Could you please explain this calculation? Looking forward to your apply!