You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The string describing the layout in the debug format is effectively an internal implementation detail and may change, so it's not documented. The shape and strides fully describe the layout. The layout string is generated when formatting the array, based on the shape and strides. To answer your question, though, the C, F, c, and f are flags describing the shape and strides.
A capital C means that the layout can be interpreted as being in C standard layout.
A capital F means that the layout can be interpreted as being in Fortran layout.
A lowercase c means that iteration prefers C order.
A lowercase f means that iteration prefers Fortran order.
Hi! I got the array below with a layout
CFcf
. What does that mean? Is there a place where this is documented?The text was updated successfully, but these errors were encountered: