-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unusual definition of makespan #69
Comments
This paper (Feitelson 1997) seems to be defining makespan as |
It depends on the use case I believe, in some cases you may want to include to your makespan the platform initialization. |
We discussed about that this morning with @mpoquet .. In most cases, the origin is |
I realized that the definition of makespan chosen for batsim outputs is
max(finish_time)
(https://batsim.readthedocs.io/en/latest/output-schedule.html?highlight=makespan#schedule ).I think the most common definition is
max(finish_time) - min(submission_time)
.These definitions are the same if our time origin is 0 (first job submitted at t=0), but there is an offset otherwise.
Solutions proposed:
Personally, I don't see when the current definition can be better than the common one.
The text was updated successfully, but these errors were encountered: