pub fn bicgstab_impl<R, C>(
client: &C,
a: &CsrData<R>,
b: &Tensor<R>,
x0: Option<&Tensor<R>>,
options: BiCgStabOptions,
) -> Result<BiCgStabResult<R>>Expand description
Generic BiCGSTAB implementation
Implements right-preconditioned BiCGSTAB. Uses less memory than GMRES(m) but convergence can be less predictable.