Skip to main content

copy_into_col_major

Function copy_into_col_major 

Source
pub fn copy_into_col_major<T>(
    dst: &mut StridedViewMut<'_, T>,
    src: &StridedView<'_, T>,
) -> Result<(), StridedError>
where T: Copy,
Expand description

Copy elements to a col-major destination.

This now delegates to the same HPTT-inspired blocked permutation as copy_into. The HPTT planner automatically handles the col-major destination case optimally.