Skip to main content

cusolverDnIRSParamsSetMaxIters

Function cusolverDnIRSParamsSetMaxIters 

Source
pub unsafe extern "C" fn cusolverDnIRSParamsSetMaxIters(
    params: cusolverDnIRSParams_t,
    maxiters: cusolver_int_t,
) -> cusolverStatus_t
Expand description

This function sets the total number of allowed refinement iterations after which the solver will stop. Total means any iteration which means the sum of the outer and the inner iterations (inner is meaningful when two-levels refinement solver is set). Default value is set to 50. Our goal is to give the user more control such a way he can investigate and control every detail of the IRS solver.

§Parameters

  • params: The cusolverDnIRSParams_t Params structure.

§Return value