Skip to content
Snippets Groups Projects
Commit ba4b1ed3 authored by Ivan Kondov's avatar Ivan Kondov
Browse files

simplified / adapted Problem 5.2

parent ecdbd8a8
No related branches found
No related tags found
No related merge requests found
......@@ -69,6 +69,14 @@ Here a firework using this firetask::
optional par: {}
**NOTE**: the python module ``custom_tasks`` must be in $PYTHONPATH in order to
be correctly registered. For this reason keep the file **custom_tasks.py** either
in **lib** or in **exercises/work/5_author_firetask** where you start the ``lpad``
and ``rlaunch`` commands. In the latter case you should add that directory to
$PYTHONPATH with::
export PYTHONPATH=`pwd`:$PYTHONPATH
Problem 5.1: Data Loader Task
-----------------------------
......@@ -91,9 +99,13 @@ script. The firetask should integrate into the workflow available in
**dataloader+repeater.json** without further adaptations.
Hint: You can use the ``load_object`` function from
``fireworks.utilities.fw_serializers`` to insert a workflow section (sub-workflow)
``fireworks.utilities.fw_serializers`` to construct a firework object and
the ``detours`` keyword argument of ``FWAction`` `to insert the firework
dynamically::
workflow_obj = load_object(workflow_dict)
actions = ['detours': workflow_obj]
return FWAction(*actions)
firework = Firework(
tasks=[load_object(task) for task in fw_spec['_tasks']],
spec=fw_spec,
name='repeat '+self['measure']
)
return FWAction(detours=firework)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment