Skip to content

Commit

Permalink
Removal of _stage_linear since it is now not needed. (#156)
Browse files Browse the repository at this point in the history
* Removal of _stage_linear since it is now not needed.

* Addition of linear LULESH samples.

* Update the dev to 1.1.
  • Loading branch information
FrankD412 committed May 28, 2022
1 parent cd90a8c commit dce0701
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 13 deletions.
11 changes: 0 additions & 11 deletions maestrowf/datastructures/core/study.py
Original file line number Diff line number Diff line change
Expand Up @@ -430,8 +430,6 @@ def configure_study(self, submission_attempts=1, restart_limit=1,
use_tmp, hash_ws
)

self.is_configured = True

def _stage(self, dag):
"""
Set up the ExecutionGraph of a parameterized study.
Expand Down Expand Up @@ -837,13 +835,4 @@ def stage(self):
dag.add_description(**self.description)
dag.log_description()

# Because we're working within a Study class whose steps have already
# been verified to not contain a cycle, we can override the check for
# the execution graph. Because the execution graph is constructed from
# the study steps, it won't contain a cycle.
def _pass_detect_cycle(self):
pass

dag.detect_cycle = MethodType(_pass_detect_cycle, dag)

return self._out_path, self._stage(dag)
1 change: 0 additions & 1 deletion samples/lulesh/lulesh_sample1_unix_linear.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ env:
- name: LULESH
path: $(OUTPUT_PATH)
url: https://github.com/LLNL/LULESH.git
tag: 2.0.3

study:
- name: make-lulesh
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
setup(name='maestrowf',
description='A tool and library for specifying and conducting general '
'workflows.',
version='1.1.4dev1.0',
version='1.1.4dev1.1',
author='Francesco Di Natale',
author_email='dinatale3@llnl.gov',
url='https://github.com/llnl/maestrowf',
Expand Down

0 comments on commit dce0701

Please sign in to comment.