Closed
Description
The PARALLEL
keyword used as vertical iteration order in the computation definition is often misunderstood by users. As decided in the syntax workshop the PARALLEL
keyword should be removed and computation()
should be defined as:
def computation(iteration_order: Optional[IterationOrder] = None):
pass
so it can be used with an empty computation()
:
with computation(): # Ok
...
During a transition period a deprecation warning should be printed.