1 |
Note a colon(:) in directive denotes all values of array index
|
2 |
Examples of array indices:
-
CHPF$ ALIGN A(i) WITH B(i)
-
*HPF$ ALIGN (i,j) WITH TEMPL(i,j) :: A, B
|
3 |
Use of : examples:
-
!HPF$ ALIGN A(:) WITH B(:)
-
CHPF$ align (:,:) WITH TEMPL(:,:) :: A, B
|