pub fn ormqr<T: SolverScalar>(
handle: &DnHandle,
side: Side,
trans: Op,
m: i32,
n: i32,
k: i32,
a: &DeviceBuffer<T>,
lda: i32,
tau: &DeviceBuffer<T>,
c_mat: &mut DeviceBuffer<T>,
ldc: i32,
info: &mut DeviceBuffer<i32>,
) -> Result<()>Expand description
Apply op(Q) to C: C = op(Q) * C (Left) or C = C * op(Q) (Right),
where Q is packed in a+tau from geqrf.