Function lu_factor_device

Source
pub fn lu_factor_device(
    a: impl AsRef<Array>,
    stream: impl AsRef<Stream>,
) -> Result<(Array, Array)>
Expand description

Computes a compact representation of the LU factorization.

§Params

  • a: input array
  • stream: stream to execute the operation

§Returns

The LU matrix and pivots array.