Parla.py icon indicating copy to clipboard operation
Parla.py copied to clipboard

clone_here could not maintain major order

Open nicelhc13 opened this issue 3 years ago • 1 comments

Matrices could be stored in column or row major. However, clone_here() always copies array in row major order as a default. IMO, it is problematic since users could intentionally declare their arrays in column major order. (For example, cublas always requires column major order (Fortran))

I think clone_here() or copy() should maintain orders as many as they can.

nicelhc13 avatar Apr 05 '21 16:04 nicelhc13