We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Inside ScheduleGaps.trim function:
self.gaps_list = [[max(current_time, gap[0]), gap[1], gap[2]] for gap in self.gaps_list] self.__consolidate(self.gaps_list)
[200, 1000] becomes [800, 1000] for trim(800)
trim(800)
Optimization: consolidate only the entries that have been modified
The text was updated successfully, but these errors were encountered:
multiple_one_node_jobs unit test seems to be slow for the online scheduler (the number of gaps held by the online might be correlated)
Sorry, something went wrong.
anagainaru
No branches or pull requests
Inside ScheduleGaps.trim function:
[200, 1000] becomes [800, 1000] for
trim(800)
Optimization: consolidate only the entries that have been modified
The text was updated successfully, but these errors were encountered: