You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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!
The text was updated successfully, but these errors were encountered:
When using GPU * TIME as the time unit, both queue_limit[qid] and rjob['executed_time] would be using unit GPU*TIME. So I think the original implementation makes sense.
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!The text was updated successfully, but these errors were encountered: