pub unsafe extern "C" fn cusolverDnXsyevjGetSweeps(
handle: cusolverDnHandle_t,
info: syevjInfo_t,
executed_sweeps: *mut c_int,
) -> cusolverStatus_tExpand 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 ofsyevj.executed_sweeps: Number of executed sweeps.
§Return value
cusolverStatus_t::CUSOLVER_STATUS_NOT_SUPPORTED: Does not support batched version.cusolverStatus_t::CUSOLVER_STATUS_SUCCESS: The operation completed successfully.