How to control the order in which steps get executed
step_3
depends on the outputs of step_1
and step_2
. This means that ZenML can execute both step_1
and step_2
in parallel but needs to wait until both are finished before step_3
can be started.
step.after(some_other_step)
:
step_1
after step_2
has finished.