1 |
Syntax:
-
FORALL ( index-spec-list [, mask] )
-
END FORALL
-
forall-body can be a forall-assignment, FORALL, or WHERE
|
2 |
Semantics:
-
Multi-statement FORALL is shorthand for a series of single-statement FORALLs
-
Multi-statement FORALLs can be nested to produce more complex iteration spaces
-
Each bottom-level assignment statement is completed before the next one starts
|
3 |
Note: FORALL is not a general-purpose parallel loop!
|