fn
lapack_solve_f32
void lapack_solve_f32(float * A, float * B, int n, int nrhs, int * info)Single-precision linear system solver .
Computes the LU factorization of (with partial pivoting) and solves for in place of . Used for square invertible systems.
Math
References
LAPACK sgesv_.
Parameters
Afloat*Row-major coefficient matrix; overwritten by its LU.
Bfloat*Row-major right-hand-side; overwritten by .
nintOrder of .
nrhsintNumber of right-hand-side columns.
infoint*LAPACK status (
> 0 means is singular at pivot info).