Group aflags¶
-
group
aflags Defines
-
GA_C_CONTIGUOUS Array is C-contiguous.
-
GA_F_CONTIGUOUS Array is Fortran-contiguous.
-
GA_ALIGNED Buffer data is properly aligned for the type. This should always be true for arrays allocated through this library.
If this isn’t true you can’t use kernels on the data, since they require aligned access.
-
GA_WRITEABLE Can write to the data buffer. (This is always true for arrays allocated through this library).
-
GA_BEHAVED Array data is behaved (properly aligned and writable).
-
GA_CARRAY Array layout is that of a C array.
-
GA_FARRAY Array layout is that of a Fortran array.
-