Skip to main content

cusolverDnXsyevjGetSweeps

Function cusolverDnXsyevjGetSweeps 

Source
pub unsafe extern "C" fn cusolverDnXsyevjGetSweeps(
    handle: cusolverDnHandle_t,
    info: syevjInfo_t,
    executed_sweeps: *mut c_int,
) -> cusolverStatus_t
Expand description

This function reports number of executed sweeps of syevj or sygvj. It does not support syevjBatched. If the user calls this function after syevjBatched, the error cusolverStatus_t::CUSOLVER_STATUS_NOT_SUPPORTED is returned.

§Parameters

  • handle: Handle to the cuSolverDN library context.
  • info: The pointer to the structure of syevj.
  • executed_sweeps: Number of executed sweeps.

§Return value