Checks consistency and correctness of the user defined data.
dfgmres_check(n, x, b, RCI_request, ipar, dpar, tmp)
The Fortran interface is specified in the mkl_rci.fi include file and the C interface is specified in the mkl_rci.h include file.
The routine dfgmres_check checks consistency and correctness of the parameters to be passed to the solver routine dfgmres. However, this operation does not guarantee that the method gives the correct result. It only reduces the chance of making a mistake in the parameters of the routine. Skip this operation only if you are sure that the correct data is specified in the solver parameters.
The lengths of all vectors are assumed to have been defined in a previous call to the dfgmres_init routine.
INTEGER. Sets the size of the problem.
DOUBLE PRECISION array of size n. Contains the initial approximation to the solution vector. Normally it is equal to 0 or to b.
DOUBLE PRECISION array of size n. Contains the right-hand side vector.
INTEGER. Gives information about result of the routine.
INTEGER array of size 128. Refer to the FGMRES Common Parameters.
DOUBLE PRECISION array of size 128. Refer to the FGMRES Common Parameters.
DOUBLE PRECISION array of size ((2*ipar(15)+1)*n+ipar(15)*ipar(15)+9)/2 + 1). Refer to the FGMRES Common Parameters.
Indicates that the task completed normally.
Indicates that the task is interrupted and the errors occur.
Indicates that there are some warning messages.
Indicates that the routine changed some parameters to make them consistent or correct.
Indicates that there are some warning messages and that the routine changed some parameters.
Copyright © 1994 - 2011, Intel Corporation. All rights reserved.