Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
batsched
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
poquet
millian
batsched
Commits
9e97b1fe
Commit
9e97b1fe
authored
1 year ago
by
Maël Madon
Browse files
Options
Downloads
Patches
Plain Diff
doc: add warning on difference btw easy_bf and easy_bf_fast
parent
fb2ed03c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/algo/easy_bf_fast.cpp
+6
-0
6 additions, 0 deletions
src/algo/easy_bf_fast.cpp
with
6 additions
and
0 deletions
src/algo/easy_bf_fast.cpp
+
6
−
0
View file @
9e97b1fe
...
@@ -49,6 +49,12 @@ void EasyBackfillingFast::make_decisions(double date,
...
@@ -49,6 +49,12 @@ void EasyBackfillingFast::make_decisions(double date,
// - only handles one priority job (the first of the queue)
// - only handles one priority job (the first of the queue)
// - only handles time as floating-point (-> precision errors).
// - only handles time as floating-point (-> precision errors).
// Warning: you might obtain different outputs than with easy_bf. This is
// due to the fact that this version only keeps track of the priority job
// expected start time and the number of machines available then, while
// easy_bf keeps track of a full 2D schedule of the future. easy_bf_fast
// will sometimes be a little more greedy in backfilling.
bool
job_ended
=
false
;
bool
job_ended
=
false
;
// Handle newly finished jobs
// Handle newly finished jobs
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment