import arraymancer
let a = ones[int](1000,2)
let b = a[0,_]
echo b.data.len
let c = a.unsafeSlice(0,_).asContiguous()
echo c.data.len
Outputs:
This is because of the deep seq copy, this is causing slowdown in axis iterators (used by reduce) and anywhere copying slices.