-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve aggregation and status performance (no conditions). (#818)
* Use cached_statepoint. * Require signac 2.2.0 for cached_statepoint. * Cache the list of job ids while buffered. This allows faster `job in project` tests and iteration over jobs. Also remove some expensive open_job calls and job in project checks that are not needed while registering aggregates. * Do not iterate over all jobs for labels when there are no labels defined. This saves a small amount of absolute time in projects with no labels. It also gives the *appearance* of faster status checks as the user sees only 1 progress bar. Also, hide the "labels" section of the status output when there are no labels to show. * Run pre-commit. * Suggest cached_statepoint usage in pre conditions. * Update change log. * Fix typo. --------- Co-authored-by: Corwin Kerr <[email protected]>
- Loading branch information
Showing
6 changed files
with
69 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
signac>=2.0.0 | ||
signac>=2.2.0 | ||
jinja2>=3.0.0 | ||
cloudpickle>=1.6.0 | ||
deprecation>=2.0.0 | ||
|