Skip to content
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

Refactor to move DAG operations to the back end Conductor #242

Merged
merged 24 commits into from
Apr 8, 2020
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
cf036bc
Removal of SimObject references.
FrankD412 Mar 21, 2020
f4c62e5
Addition of PickleInterface.
FrankD412 Mar 21, 2020
3ea589f
Derive Study and ExecutionGraph from PickleInterface.
Mar 22, 2020
f12208a
Some style clean up.
Mar 22, 2020
eae06e6
Clean up unused dill import.
FrankD412 Mar 22, 2020
bee0071
Checking in to develop on another machine.
Mar 26, 2020
0784222
Start of pre-check.
FrankD412 Mar 30, 2020
4f8c3d4
Removal of precheck.
FrankD412 Apr 4, 2020
86616ed
Tweaks to Maestro and Conductor.
FrankD412 Apr 4, 2020
2507e75
Initial interface and refactor to Conductor class.
FrankD412 Apr 6, 2020
4bacb53
Refactor of monitor_study
FrankD412 Apr 6, 2020
d2abdf4
Tweaks to backend conductor to use Conductor class.
FrankD412 Apr 7, 2020
23ad19b
Tweaks to Maestro frontend to use Conductor class.
FrankD412 Apr 7, 2020
ff2976d
Minor bug fixes in Conductor class.
FrankD412 Apr 7, 2020
e525148
Minor tweaks to user cancel in Conductor class.
FrankD412 Apr 7, 2020
4933e2a
Port status to the Conductor class.
FrankD412 Apr 7, 2020
c900c0e
Continued additions to port to Conductor class.
FrankD412 Apr 8, 2020
b0b28aa
Slight fix to fix flake8 violation.
FrankD412 Apr 8, 2020
7e579fc
Removal of named argument *, python2.7 does not support it.
FrankD412 Apr 8, 2020
73e734c
Refactor to remove parser and logging from Conductor class.
FrankD412 Apr 8, 2020
99047d0
Style clean up to fix flake8 errors.
FrankD412 Apr 8, 2020
b81b036
Updates to the docstrings for PickleInterface.
FrankD412 Apr 8, 2020
42be305
Updates to the Conductor docstrings.
FrankD412 Apr 8, 2020
fda85bb
Small flake8 error fix.
FrankD412 Apr 8, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Slight fix to fix flake8 violation.
  • Loading branch information
FrankD412 committed Apr 8, 2020
commit b0b28aa5db0e09d34967510a0c6523971cc3b695
2 changes: 1 addition & 1 deletion maestrowf/conductor.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def from_parser(cls):

conductor = cls(study)
conductor.setup_logging(
ROOTLOGGER, LOGGER, args.debug_lvl, args.logpath,
ROOTLOGGER, LOGGER, args.debug_lvl, args.logpath,
log_stdout=args.logstdout)
conductor.set_logger(LOGGER)
conductor.initialize(batch_info, args.sleeptime)
Expand Down