Closed
Description
Note that using row-major ordering may require more memory and time than column-major ordering, because the routine must transpose the row-major order to the column-major order required by the underlying LAPACK routine.
http://www.netlib.org/lapack/lapacke.html
I found while implementing rust-ndarray/ndarray#445 that the interface between CBLAS and LAPACKE around UPLO
and other parameter are incompatible. I will use BLAS instead of CBLAS for it since the interface of BLAS is compatible with LAPACK (use u8
always). We should use LAPACK instead of LAPACKE (´・ω・`)