pub fn strided_array_to_mdarray<T>(arr: StridedArray<T>) -> Array<T, DynRank>Expand description
Convert a StridedArray result into an mdarray Array<T, DynRank>.
The result’s dims are reversed to match mdarray’s row-major convention. A copy is performed to materialize the data into dense row-major order, since mdarray only supports dense (implicit-stride) layout.