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
Use the numpy backend to ensure all numpy arrays extracted from
pandas columns are C-contiguous before scanning. Non-contiguous arrays
can arise from DataFrames backed by views into larger 2D arrays (e.g.
pd.DataFrame(arr2d), transpose, concat, slicing). Previously the scan
used memcpy with sizeof(T) stride which reads wrong data on
non-contiguous layouts.
0 commit comments