================================= array construct ================================= The array construct is for work mapping of array assignment statements. * XMP/C program .. code-block:: C #pragma xmp align a[i] with t[i] : #pragma xmp array on t[0:N] a[0:N] = 1.0; * XMP/Fortran program .. code-block:: Fortran !$xmp align a(i) with t(i) : !$xmp array on t(1:N) a(1:N) = 1.0 The above is equivalent to the below. * XMP/C program .. code-block:: C #pragma xmp align a[i] with t[i] : #pragma xmp loop on t[i] for(int i=0;i