Parallel operators
When running an assignment of sum, subtraction, product, division type where both branches of the operation have very long calculation times, it is possible to use the parallel operators |+|, |-|, |*|, |/|.
Let us assume we have the following calculation type
[LO].[50010](Dest1. [D13]) := [90020](Dest1. [D11])
where
When using the parallel operators, namely
[LO].[50010](Dest1. [D13]) := [90020](Dest1. [D11]) |
the system tries to run the two branches of the operation in parallel, decreasing the total run time of the assignment.
If only one of the two branches of the operation requires very long calculation time, the use of parallel operators does not make significant improvements to the runtime.