fn
transpose_from_col_major_f32
void transpose_from_col_major_f32(const float * src, float * dst, int rows, int cols)Single-precision column-major → row-major transpose (LAPACK egress).
Inverse of transpose_to_col_major_f32; turns a LAPACK column-major
output back into a Lucid row-major tensor.
References
Accelerate.framework vDSP_mtrans.
Parameters
srcconst float*LAPACK column-major buffer.
dstfloat*Destination row-major buffer.
rows, colsintRow-major output dimensions.